1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-29 01:13:08 +00:00
freebsd-ports/security/netpgp/Makefile
John Marino 6e64c34694 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@
2014-03-01 22:41:57 +00:00

23 lines
397 B
Makefile

# $FreeBSD$
PORTNAME= netpgp
PORTVERSION= 20101107
CATEGORIES= security
MASTER_SITES= NETBSD/LOCAL_PORTS
MAINTAINER= ports@FreeBSD.org
COMMENT= PGP signing, verification, encryption, and decryption program
LICENSE= BSD
USE_OPENSSL= yes
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
CFLAGS+= -Wno-error
.if !exists(/usr/include/openssl/idea.h)
CFLAGS+= -DOPENSSL_NO_IDEA
.endif
.include <bsd.port.mk>