diff options
author | jlam <jlam@pkgsrc.org> | 2001-06-12 20:33:00 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-06-12 20:33:00 +0000 |
commit | 328a35f96fe7ec11093e3847c0943eb3a41f2b51 (patch) | |
tree | 154e7feac1d9bd8853bbdc9b7ffa45c13b83f32f /databases | |
parent | 8848ee6991e29c3c0d97e1c89906ee2b34645484 (diff) | |
download | pkgsrc-328a35f96fe7ec11093e3847c0943eb3a41f2b51.tar.gz |
LIBS is automatically added to CONFIGURE_ENV by bsd.pkg.mk if
GNU_CONFIGURE is defined, so simply set LIBS to the appropriate value.
Diffstat (limited to 'databases')
-rw-r--r-- | databases/openldap/Makefile | 4 | ||||
-rw-r--r-- | databases/postgresql/Makefile.common | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/databases/openldap/Makefile b/databases/openldap/Makefile index 8d6f5fab6ec..033b786a67a 100644 --- a/databases/openldap/Makefile +++ b/databases/openldap/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 2001/06/11 06:34:24 jlam Exp $ +# $NetBSD: Makefile,v 1.24 2001/06/12 20:33:02 jlam Exp $ # DISTNAME= openldap-1.2.12 @@ -30,7 +30,7 @@ CONFIGURE_ARGS+= --enable-wrappers .if ${OPSYS} == "SunOS" DEPENDS+= db-2.7.7:../../databases/db CPPFLAGS+= -I${LOCALBASE}/include/db2 -CONFIGURE_ENV+= LIBS="-ldb2 -lpthread -lrt" +LIBS= -ldb2 -lpthread -lrt .endif PLIST_SRC= ${WRKDIR}/.PLIST_SRC diff --git a/databases/postgresql/Makefile.common b/databases/postgresql/Makefile.common index 4ff1c136145..9b2395f8000 100644 --- a/databases/postgresql/Makefile.common +++ b/databases/postgresql/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.20 2001/06/11 06:34:24 jlam Exp $ +# $NetBSD: Makefile.common,v 1.21 2001/06/12 20:33:02 jlam Exp $ # # This Makefile fragment is included by all PostgreSQL packages built from # the main sources of the PostgreSQL distribution. @@ -75,7 +75,6 @@ CONFIGURE_ARGS+= --enable-syslog CONFIGURE_ARGS+= --with-CXX CONFIGURE_ARGS+= --with-template="${LOWER_OPSYS}" -CONFIGURE_ENV+= LIBS="${LIBS}" MAKE_ENV+= CUSTOM_COPT="${CFLAGS}" post-extract: |