diff options
author | tron <tron@pkgsrc.org> | 2002-01-02 13:24:54 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2002-01-02 13:24:54 +0000 |
commit | 0a57ab50f02d7e2e87522019cdae992b2276204b (patch) | |
tree | 292fee25586c94ba6ccb4496934502ee289ee949 /mail/pine | |
parent | e41475f25ffa2373b04deb299f456721c071876f (diff) | |
download | pkgsrc-0a57ab50f02d7e2e87522019cdae992b2276204b.tar.gz |
Use "openssl" buildlink glue code instead of "USE_SSL" to avoid hidden
dependences on a NetBSD 1.5 release system with "openssl" package
installed.
Diffstat (limited to 'mail/pine')
-rw-r--r-- | mail/pine/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/mail/pine/Makefile b/mail/pine/Makefile index 4b2347978bd..b817b797cf7 100644 --- a/mail/pine/Makefile +++ b/mail/pine/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.56 2002/01/02 00:46:55 hubertf Exp $ +# $NetBSD: Makefile,v 1.57 2002/01/02 13:24:54 tron Exp $ # FreeBSD Id: Makefile,v 1.21 1997/03/26 02:12:07 ache Exp # @@ -29,8 +29,6 @@ LDAPCFLAGS= LDAPCFLAGS="-DENABLE_LDAP" LDAPLIBS= LDAPLIBS="-lldap -llber" .endif -USE_SSL= yes - pre-patch: # Make sure the imap lib that comes with pine isn't # used (see http://www.securityfocus.com/advisories/2646) @@ -47,7 +45,7 @@ do-configure: do-build: cd ${WRKSRC} && ./build ${BUILDNAME} ${LDAPCFLAGS} ${LDAPLIBS} PREFIX=${PREFIX} \ - CC="${CC} ${CFLAGS}" + CC="${CC} ${CFLAGS} ${LDFLAGS}" do-install: ${INSTALL_PROGRAM} ${WRKSRC}/bin/pine ${PREFIX}/bin/ @@ -76,6 +74,7 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/contrib/utils/* ${PREFIX}/share/pine/contrib/utils ${CHMOD} +x ${PREFIX}/share/pine/contrib/utils/*.sh +.include "../../security/openssl/buildlink.mk" .include "../../mk/bsd.pkg.mk" .if ${OPSYS} == "SunOS" BUILDNAME= gs5 |