Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 20 Nov 2016 13:40:22 +0000 (UTC)
From:      Roman Bogorodskiy <novel@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r426589 - head/security/gnupg
Message-ID:  <201611201340.uAKDeMkg085011@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: novel
Date: Sun Nov 20 13:40:22 2016
New Revision: 426589
URL: https://svnweb.freebsd.org/changeset/ports/426589

Log:
  security/gnupg: fix build on 9.x
  
  gnupg fails to build on 9.x with:
  
    mime-parser.h:53: error: redefinition of typedef 'rfc822parse_t'
    rfc822parse.h:23: error: previous declaration of 'rfc822parse_t' was here
  
  Add compiler:c11 to USES to fix that.
  
  Reported by:	antoine

Modified:
  head/security/gnupg/Makefile

Modified: head/security/gnupg/Makefile
==============================================================================
--- head/security/gnupg/Makefile	Sun Nov 20 13:36:50 2016	(r426588)
+++ head/security/gnupg/Makefile	Sun Nov 20 13:40:22 2016	(r426589)
@@ -26,7 +26,7 @@ BUILD_DEPENDS=	libassuan>=2.4.3:security
 RUN_DEPENDS=	pinentry>0:security/pinentry
 
 GNU_CONFIGURE=	YES
-USES=		cpe gmake iconv pkgconfig sqlite tar:bzip2
+USES=		compiler:c11 cpe gmake iconv pkgconfig sqlite tar:bzip2
 USE_LDCONFIG=	YES
 # libreadline.so.8 is placed in /lib, but --with-readline argument
 # will be treated as $value/lib, so try using /usr instead.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201611201340.uAKDeMkg085011>