summaryrefslogtreecommitdiff
path: root/news/slrn
diff options
context:
space:
mode:
authorjschauma <jschauma>2003-03-15 00:00:42 +0000
committerjschauma <jschauma>2003-03-15 00:00:42 +0000
commit7ef7070b0afea58140c2de7faff3ef6c1e9ffb02 (patch)
tree564ad5c4541b39d9524e0d2fadc909789ea3b7c5 /news/slrn
parentb8969b53f0f28af65b3a7016f8fe4a051a8c3afd (diff)
downloadpkgsrc-7ef7070b0afea58140c2de7faff3ef6c1e9ffb02.tar.gz
It appears that on Linux the dlopen and friends functions require -ldl.
Diffstat (limited to 'news/slrn')
-rw-r--r--news/slrn/Makefile6
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"