svn commit: r426589 - head/security/gnupg

Roman Bogorodskiy novel at FreeBSD.org
Sun Nov 20 13:40:24 UTC 2016


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.


More information about the svn-ports-all mailing list