diff options
author | grant <grant> | 2003-06-23 07:57:05 +0000 |
---|---|---|
committer | grant <grant> | 2003-06-23 07:57:05 +0000 |
commit | 55a48baec26d41600eab25047d85363c7fb5b29a (patch) | |
tree | 4e646037fc598d33ff3624dc5cbb47e8ba1ceb48 /audio | |
parent | 1f422119bfda61e5c3b77bf9ca0b72ddbbe25925 (diff) | |
download | pkgsrc-55a48baec26d41600eab25047d85363c7fb5b29a.tar.gz |
use ${BUILDLINK_LIBICONV_LDADD} instead of blindly adding -liconv to
LIBS, allowing buildlink2 to do its magic. tested on Slackware 8.1.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/xmms/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/xmms/Makefile b/audio/xmms/Makefile index 53b98acb9f5..fadc9cf9fa8 100644 --- a/audio/xmms/Makefile +++ b/audio/xmms/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.47 2003/06/06 19:29:03 drochner Exp $ +# $NetBSD: Makefile,v 1.48 2003/06/23 07:57:05 grant Exp $ # DISTNAME= xmms-1.2.7 @@ -24,7 +24,7 @@ LIBTOOL_OVERRIDE= ${WRKSRC}/libtool ${WRKSRC}/libxmms/libtool # Broken configure script assumes that iconv_open lives in libc; work around. CPPFLAGS+= -DHAVE_ICONV_OPEN=1 CONFIGURE_ENV+= ac_cv_func_iconv_open=yes -LIBS+= -liconv +LIBS+= ${BUILDLINK_LIBICONV_LDADD} .include "../../mk/bsd.prefs.mk" |