diff options
author | grant <grant@pkgsrc.org> | 2003-07-24 13:35:28 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-07-24 13:35:28 +0000 |
commit | e3e13fc5f36bda753101d6978c7a4a352b82091f (patch) | |
tree | 935793b081585ddde11b55235803ef5f7fbc2b19 | |
parent | 08c25fadbf664828323da964c3247cd5c2fa824e (diff) | |
download | pkgsrc-e3e13fc5f36bda753101d6978c7a4a352b82091f.tar.gz |
fix previous: pass _BLNK_ICONV_LDFLAGS instead of -liconv so libsablot
can once again find the iconv functions on systems without iconv
in libc.
-rw-r--r-- | textproc/sablotron/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/textproc/sablotron/Makefile b/textproc/sablotron/Makefile index fd37a065d58..cab29d39dbc 100644 --- a/textproc/sablotron/Makefile +++ b/textproc/sablotron/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2003/07/22 14:05:48 jwise Exp $ +# $NetBSD: Makefile,v 1.16 2003/07/24 13:35:28 grant Exp $ DISTNAME= Sablot-0.96 PKGNAME= sablotron-0.96 @@ -18,6 +18,10 @@ USE_LIBTOOL= YES LIBTOOL_OVERRIDE= ${WRKSRC}/libtool +# sablotron needs iconv but assumes it is in libc, so add what +# buildlink2 finds. +LIBS+= ${_BLNK_ICONV_LDFLAGS} + .include "../../mk/bsd.prefs.mk" # both libstdc++ and libm are required for gcc 2.95.x, as libstdc++ |