svn commit: r506524 - head/security/openvpn-auth-ldap

Matthias Andree mandree at FreeBSD.org
Sat Jul 13 08:59:26 UTC 2019


Author: mandree
Date: Sat Jul 13 08:59:25 2019
New Revision: 506524
URL: https://svnweb.freebsd.org/changeset/ports/506524

Log:
  Add OpenSSL base dir to CONFIGURE_ARGS.
  
  WHile I cannot reproduce the issue, it seems harmless and may help
  certain system configurations.
  
  PR:		235776
  Submitted by:	dewayne at heuristicsystems.com.au

Modified:
  head/security/openvpn-auth-ldap/Makefile

Modified: head/security/openvpn-auth-ldap/Makefile
==============================================================================
--- head/security/openvpn-auth-ldap/Makefile	Sat Jul 13 08:59:00 2019	(r506523)
+++ head/security/openvpn-auth-ldap/Makefile	Sat Jul 13 08:59:25 2019	(r506524)
@@ -18,13 +18,18 @@ BUILD_DEPENDS=	re2c:devel/re2c \
 		check>=0:devel/check \
 		${LOCALBASE}/include/openvpn-plugin.h:security/openvpn
 
-USES=		autoreconf objc tar:xz
+# this port doesn't require ssl itself, but OpenLDAP needs it
+# and https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=235776
+# appears to document issues on some systems when --with-openssl
+# is missing.
+USES=		autoreconf objc ssl tar:xz
 
 GNU_CONFIGURE=	yes
 USE_OPENLDAP=	yes
 CONFIGURE_ARGS+=	--with-openldap=${LOCALBASE} \
 			--with-openvpn=${LOCALBASE}/include \
-			--with-objc-runtime=GNU
+			--with-objc-runtime=GNU \
+			--with-openssl=${OPENSSLBASE}
 
 PORTDOCS=	README
 PORTEXAMPLES=	auth-ldap.conf


More information about the svn-ports-head mailing list