diff options
author | Gerald Pfeifer <gerald@FreeBSD.org> | 2014-03-03 00:38:36 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@FreeBSD.org> | 2014-03-03 00:38:36 +0000 |
commit | ff3f93364e318b1f79de11adf6f4d90611317f88 (patch) | |
tree | 697148a1486a738092695a157ae3aefa064e29c9 /security/openvpn-auth-ldap | |
parent | 7f268d38adff995640d37476d77a8ab7cd4fe23b (diff) |
This port really requires not just GCC, but also no version newer than
GCC 4.6 -- so, set USE_GCC=4.6.
Approved by: snb (maintainer)
Notes
Notes:
svn path=/head/; revision=346847
Diffstat (limited to 'security/openvpn-auth-ldap')
-rw-r--r-- | security/openvpn-auth-ldap/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/security/openvpn-auth-ldap/Makefile b/security/openvpn-auth-ldap/Makefile index ca4fdf2c9747..eb99298f682e 100644 --- a/security/openvpn-auth-ldap/Makefile +++ b/security/openvpn-auth-ldap/Makefile @@ -29,10 +29,10 @@ OPTIONS_DEFINE= DOCS EXAMPLES .include <bsd.port.options.mk> .if ${OSVERSION} >= 900000 -# Use gcc from ports because Objective C support no longer included in base -# and the GNU Objective-C runtime is required, lang/libobjc2 + clang -# does not work currently. -USE_GCC= yes +# Use GCC from ports because Objective-C support is no longer included +# in base. lang/libobjc2 + clang currently do not work, nor do newer +# versions of GCC. +USE_GCC= 4.6 CONFIGURE_ENV+= OBJC="${CC}" .endif |