diff options
author | richard <richard@pkgsrc.org> | 2013-08-24 16:45:08 +0000 |
---|---|---|
committer | richard <richard@pkgsrc.org> | 2013-08-24 16:45:08 +0000 |
commit | 0d558c28c2b893d94d2218f48b5a81eb11155abf (patch) | |
tree | b29e95a14077fe6b74c32c2a6ee527a8717f1756 | |
parent | a935ba55a33195dba53e24f8a4deda7b5ca49d67 (diff) | |
download | pkgsrc-0d558c28c2b893d94d2218f48b5a81eb11155abf.tar.gz |
fix PLIST options for solaris, including builtin openssl support
-rw-r--r-- | security/heimdal/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/security/heimdal/Makefile b/security/heimdal/Makefile index b16a0a42c3b..118cc76f3e8 100644 --- a/security/heimdal/Makefile +++ b/security/heimdal/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.102 2013/08/22 21:17:00 joerg Exp $ +# $NetBSD: Makefile,v 1.103 2013/08/24 16:45:08 richard Exp $ DISTNAME= heimdal-1.5.3 PKGREVISION= 1 @@ -65,6 +65,10 @@ CONFIGURE_ARGS+= --with-libedit=${BUILDLINK_PREFIX.editlinereadline} .endif PLIST_VARS+= glob vis +.if ${OPSYS} == "SunOS" +PLIST.vis= yes +PLIST.glob= yes +.endif PLIST_VARS+= afskauth hcrypto .if ${OPSYS} == "IRIX" @@ -74,7 +78,8 @@ PLIST.afskauth= yes .include "../../security/openssl/builtin.mk" .if ${MACHINE_PLATFORM:MNetBSD-[1-3]*} != "" || \ - (${OPSYS} == "SunOS" && !empty(USE_BUILTIN.openssl:Myes)) + (${OPSYS} == "SunOS" && !empty(USE_BUILTIN.openssl:Myes) && \ + !empty(BUILTIN_LIB_FOUND.crypto:M[Nn][Oo])) PLIST.hcrypto= yes .endif |