diff options
author | jschauma <jschauma@pkgsrc.org> | 2003-03-15 00:00:42 +0000 |
---|---|---|
committer | jschauma <jschauma@pkgsrc.org> | 2003-03-15 00:00:42 +0000 |
commit | 9f39809852d609fde946c49f3a4b9faaf4114702 (patch) | |
tree | 564ad5c4541b39d9524e0d2fadc909789ea3b7c5 /news/slrn | |
parent | 2bbe0caaa346712b46fe28b0fba45e00c9ba242b (diff) | |
download | pkgsrc-9f39809852d609fde946c49f3a4b9faaf4114702.tar.gz |
It appears that on Linux the dlopen and friends functions require -ldl.
Diffstat (limited to 'news/slrn')
-rw-r--r-- | news/slrn/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/news/slrn/Makefile b/news/slrn/Makefile index 18ca9c779d0..78c5f88c3c1 100644 --- a/news/slrn/Makefile +++ b/news/slrn/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 2003/03/13 03:02:24 jschauma Exp $ +# $NetBSD: Makefile,v 1.24 2003/03/15 00:00:42 jschauma Exp $ # DISTNAME= slrn-0.9.7.4 @@ -25,6 +25,10 @@ CONFIGURE_ARGS+=--without-X --disable-inews --with-slrnpull \ CONFIGURE_ENV+= INSTALL=/usr/bin/install .endif +.if ${OPSYS} == "Linux" +LDFLAGS+= -ldl +.endif + .include "../../devel/libslang/buildlink2.mk" .include "../../devel/gettext-lib/buildlink2.mk" .include "../../mk/bsd.pkg.mk" |