diff options
author | Marcus Alves Grando <mnag@FreeBSD.org> | 2006-01-24 20:11:07 +0000 |
---|---|---|
committer | Marcus Alves Grando <mnag@FreeBSD.org> | 2006-01-24 20:11:07 +0000 |
commit | 35bf8b1ccbbc7b664d0e05cbd1f67a1bd74c7939 (patch) | |
tree | b1d55b3eec60ed5b4f9b2877ae31311c91ab2366 /mail/postfix1/scripts/configure.postfix | |
parent | Finally Google Maps got more detailed images from Vienna. (diff) |
- Linker fix when use OPENSSL from ports
- portlint(1)
PR: 92282
Reported by: dinoex
Submitted by: Vivek Khera <vivek@khera.org> (maintainer)
Diffstat (limited to 'mail/postfix1/scripts/configure.postfix')
-rw-r--r-- | mail/postfix1/scripts/configure.postfix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/postfix1/scripts/configure.postfix b/mail/postfix1/scripts/configure.postfix index 2acf13289114..dd6434ce5f26 100644 --- a/mail/postfix1/scripts/configure.postfix +++ b/mail/postfix1/scripts/configure.postfix @@ -1,5 +1,5 @@ #!/bin/sh -# $FreeBSD: /tmp/pcvs/ports/mail/postfix1/scripts/Attic/configure.postfix,v 1.43 2006-01-12 16:23:08 mnag Exp $ +# $FreeBSD: /tmp/pcvs/ports/mail/postfix1/scripts/Attic/configure.postfix,v 1.44 2006-01-24 20:11:07 mnag Exp $ if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then exit @@ -89,7 +89,7 @@ for i; do TLS) echo "MAN8+= tlsmgr.8" echo "POSTFIX_CCARGS+= -DHAS_SSL -I/usr/include/openssl" - echo "POSTFIX_AUXLIBS+= -lssl -lcrypto" + echo "POSTFIX_AUXLIBS+= -L\${OPENSSLLIB} \${LDFLAGS} -lssl -lcrypto" echo "DISTFILES+= \${DISTNAME}.tar.gz pfixtls-0.8.11a-1.1.11-0.9.6g.tar.gz" echo "EXTRA_PATCHES+= \${WRKDIR}/pfixtls-0.8.11a-1.1.11-0.9.6g/pfixtls.diff" echo "TLS_SUFFIX= +tls" |