diff options
author | jlam <jlam@pkgsrc.org> | 2004-11-22 23:10:55 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-11-22 23:10:55 +0000 |
commit | 4d8e71ecb185325942274f8ebe3d9d5bcabd4937 (patch) | |
tree | c39e26583e7f26f2a93afba8b10cb39ff1b69194 | |
parent | 7ff0293d82b253aac638dc13a2c65d9f76cef7d3 (diff) | |
download | pkgsrc-4d8e71ecb185325942274f8ebe3d9d5bcabd4937.tar.gz |
Pass extra libraries to configure scripts in LIBS, and remove redundant
environment passing that's already done in bsd.pkg.mk.
-rw-r--r-- | devel/apr/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/devel/apr/Makefile b/devel/apr/Makefile index 66b3035e682..c344ae8a78a 100644 --- a/devel/apr/Makefile +++ b/devel/apr/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.28 2004/11/17 19:30:12 xtraeme Exp $ +# $NetBSD: Makefile,v 1.29 2004/11/22 23:10:55 jlam Exp $ PKGNAME= apr-${APR_VERSION}.${APACHE_VERSION} PKGREVISION= 1 @@ -19,9 +19,9 @@ USE_LIBTOOL= YES WRKSRC= ${WRKDIR}/${DISTNAME}/srclib BUILD_DIRS= ${WRKSRC}/apr ${WRKSRC}/apr-util -CONFIGURE_ENV+= CFLAGS="${CFLAGS}" LIBS="${LDFLAGS}" - -LDFLAGS.SunOS+= -lnsl +GNU_CONFIGURE= YES +CONFIGURE_ENV+= LIBS="${LIBS}" +LIBS.SunOS+= -lnsl APR_CONFIGURE_ARGS= \ --prefix=${PREFIX} \ |