diff options
author | jlam <jlam@pkgsrc.org> | 2006-04-07 18:59:30 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2006-04-07 18:59:30 +0000 |
commit | c70f1891ea80b3d762beac3d81d4045e31befc2b (patch) | |
tree | 40db29320e48f8f94d00ac2a071cfc7f5ef6d954 | |
parent | 9efb905554fc82fe9ac1de1204ab476ad8bd99d8 (diff) | |
download | pkgsrc-c70f1891ea80b3d762beac3d81d4045e31befc2b.tar.gz |
Link against -liconv when using the pkgsrc iconv implementation. We
need to force this to happen since the configure script inexplicably
just assumes that iconv() is available without needing to check for
any libraries or anything silly like that.
-rw-r--r-- | textproc/eblook/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/textproc/eblook/Makefile b/textproc/eblook/Makefile index ea2f17c5c80..c66fbfb946d 100644 --- a/textproc/eblook/Makefile +++ b/textproc/eblook/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2006/02/05 23:11:01 joerg Exp $ +# $NetBSD: Makefile,v 1.16 2006/04/07 18:59:30 jlam Exp $ # DISTNAME= eblook-1.6.1 @@ -15,6 +15,7 @@ PKG_INSTALLATION_TYPES= overwrite pkgviews GNU_CONFIGURE= YES INFO_FILES= eblook.info CONFIGURE_ARGS+=--with-eb-conf=${PKG_SYSCONFDIR.eb}/eb.conf +LIBS+= ${BUILDLINK_LDADD.iconv} .include "../../converters/libiconv/buildlink3.mk" .include "../../devel/gettext-lib/buildlink3.mk" |