Date: Sat, 13 Jul 2019 08:59:25 +0000 (UTC) From: Matthias Andree <mandree@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r506524 - head/security/openvpn-auth-ldap Message-ID: <201907130859.x6D8xPJ1014501@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907130859.x6D8xPJ1014501>