diff options
author | grant <grant@pkgsrc.org> | 2005-07-21 03:04:21 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2005-07-21 03:04:21 +0000 |
commit | 3256bf0d66badeeb2ca78fb248297a57a2235165 (patch) | |
tree | b0d117eb31cec71fdd331ad5134bacde27e43692 /mail/exim3 | |
parent | 7e764a0416049019ffa171652902be9a167f0140 (diff) | |
download | pkgsrc-3256bf0d66badeeb2ca78fb248297a57a2235165.tar.gz |
include ${LDFLAGS} in DBMLIB passed in MAKE_ENV, so the correct
library path is passed for linking against the BerkeleyDB library.
Diffstat (limited to 'mail/exim3')
-rw-r--r-- | mail/exim3/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/exim3/Makefile b/mail/exim3/Makefile index 6b3c5b6d05d..fb7bf05bd41 100644 --- a/mail/exim3/Makefile +++ b/mail/exim3/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2005/07/16 01:19:12 jlam Exp $ +# $NetBSD: Makefile,v 1.22 2005/07/21 03:04:21 grant Exp $ DISTNAME= exim-3.36 PKGREVISION= 4 @@ -58,7 +58,7 @@ MAKE_ENV+= LOOKUP_PGSQL=YES BDB_ACCEPTED= db1 db3 db2 # does not compile with db4 .include "../../mk/bdb.buildlink3.mk" -DBMLIB+= ${BDB_LIBS} +DBMLIB+= ${LDFLAGS} ${BDB_LIBS} MAKE_ENV+= DBMLIB=${DBMLIB:Q} MAKE_ENV+= LOOKUP_INCLUDE="${LOOKUP_INCLUDE}" |