diff options
author | snj <snj@pkgsrc.org> | 2004-03-09 19:34:14 +0000 |
---|---|---|
committer | snj <snj@pkgsrc.org> | 2004-03-09 19:34:14 +0000 |
commit | ca9a13416106a4504a32667b37a881a611e089a5 (patch) | |
tree | 054f5d33576fde398abd8116777206ed47029332 /devel | |
parent | 573233217cf10779f184c8cc48eae226dd9f39a1 (diff) | |
download | pkgsrc-ca9a13416106a4504a32667b37a881a611e089a5.tar.gz |
Add LDFLAGS.SunOS+=-lnsl. From gavan@ on tech-pkg. Closes PR pkg/24720.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/apr/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/devel/apr/Makefile b/devel/apr/Makefile index faf95a75977..3f33cedc38d 100644 --- a/devel/apr/Makefile +++ b/devel/apr/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2004/03/07 22:32:05 minskim Exp $ +# $NetBSD: Makefile,v 1.16 2004/03/09 19:34:14 snj Exp $ PKGNAME= apr-${APR_VERSION}.${APACHE_VERSION} PKGREVISION= 1 @@ -19,6 +19,8 @@ BUILD_DIRS= ${WRKSRC}/apr ${WRKSRC}/apr-util CONFIGURE_ENV+= CFLAGS="${CFLAGS}" LIBS="${LDFLAGS}" +LDFLAGS.SunOS+= -lnsl + pre-configure: .for f in apr/config.layout apr-util/config.layout ${SED} -e 's|@PREFIX@|${PREFIX}|g' < ${WRKSRC}/$f > ${WRKSRC}/$f.new |