Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 1 Mar 2014 22:41:57 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r346723 - head/security/netpgp
Message-ID:  <201403012241.s21Mfv8Z007430@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



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