diff options
author | oliver <oliver@FreeBSD.org> | 2008-09-07 10:20:16 +0000 |
---|---|---|
committer | oliver <oliver@FreeBSD.org> | 2008-09-07 10:20:16 +0000 |
commit | 8e39b143e1a74e57a118d59e0f73617eb7974300 (patch) | |
tree | 841012f32048ddda38be898e7094654bbf2b43c9 | |
parent | 88a1dc5a41c58b549f6b137077a0d52c14675c5c (diff) | |
download | FreeBSD-ports-8e39b143e1a74e57a118d59e0f73617eb7974300.zip FreeBSD-ports-8e39b143e1a74e57a118d59e0f73617eb7974300.tar.gz |
fix build when openssl is not in base but in $LOCALBASE
Approved by: maintainer
-rw-r--r-- | security/nmap/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/security/nmap/Makefile b/security/nmap/Makefile index 58e5020..53eb1b4 100644 --- a/security/nmap/Makefile +++ b/security/nmap/Makefile @@ -36,6 +36,7 @@ MAN1= nmap.1 .ifndef WITHOUT_SSL USE_OPENSSL= yes CONFIGURE_ARGS+= --with-openssl=${OPENSSLBASE} +CONFIGURE_ENV+= CFLAGS="${CFLAGS} -I${OPENSSLINC}" .else CONFIGURE_ARGS+= --without-openssl .endif |