svn commit: r346723 - head/security/netpgp

John Marino marino at FreeBSD.org
Sat Mar 1 22:41:58 UTC 2014


Author: marino
Date: Sat Mar  1 22:41:57 2014
New Revision: 346723
URL: http://svnweb.freebsd.org/changeset/ports/346723
QAT: https://qat.redports.org/buildarchive/r346723/

Log:
  security/netpgp: Fix typo that broke DragonFly (GCC 4.7)
  
  There was an errant "-" in a CFLAGS definition that got interpreted as
  in input from stdin during one of the conftests.  This caused netpgp to
  fail configuration for months on DragonFly and presumably any modern
  GCC.  I'm surprised clang tolerated it.
  
  pointyhat to:	bapt@

Modified:
  head/security/netpgp/Makefile

Modified: head/security/netpgp/Makefile
==============================================================================
--- head/security/netpgp/Makefile	Sat Mar  1 22:39:06 2014	(r346722)
+++ head/security/netpgp/Makefile	Sat Mar  1 22:41:57 2014	(r346723)
@@ -16,7 +16,7 @@ GNU_CONFIGURE=	yes
 
 CFLAGS+=	-Wno-error
 .if !exists(/usr/include/openssl/idea.h)
-CFLAGS+=-	-DOPENSSL_NO_IDEA
+CFLAGS+=	-DOPENSSL_NO_IDEA
 .endif
 
 .include <bsd.port.mk>


More information about the svn-ports-head mailing list