diff options
author | danw <danw@pkgsrc.org> | 2004-05-20 16:13:05 +0000 |
---|---|---|
committer | danw <danw@pkgsrc.org> | 2004-05-20 16:13:05 +0000 |
commit | 298cf197258e90c8fb5aad3486305fe4429d8e11 (patch) | |
tree | 05629c8037432704f7f337f1f1213d4f378509e1 /audio | |
parent | 0b38d8a366e20fbaa6e30cd55825d8f013f002cf (diff) | |
download | pkgsrc-298cf197258e90c8fb5aad3486305fe4429d8e11.tar.gz |
Revert the change to put -liconv into BUILDLINK_LDFLAGS.iconv (which
breaks some things on Darwin) and fix audio/musicpd so it doesn't need
it (by faking out a configure check that gets confused by the
iconv_open -> libiconv_open renaming)
Diffstat (limited to 'audio')
-rw-r--r-- | audio/musicpd/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/audio/musicpd/Makefile b/audio/musicpd/Makefile index f6ef5910108..d0cb907bcda 100644 --- a/audio/musicpd/Makefile +++ b/audio/musicpd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2004/04/30 10:48:21 grant Exp $ +# $NetBSD: Makefile,v 1.2 2004/05/20 16:13:05 danw Exp $ DISTNAME= mpd-${PKGVERSION} PKGNAME= musicpd-0.10.3 @@ -53,6 +53,7 @@ CONFIGURE_ARGS+= --disable-aac .if ${MUSICPD_WITH_AUDIOFILE} == "YES" . include "../../audio/libaudiofile/buildlink3.mk" CONFIGURE_ARGS+= --with-audiofile=${BUILDLINK_PREFIX.audiofile} +CONFIGURE_ENV+= ac_cv_lib_iconv_iconv_open=yes .else CONFIGURE_ARGS+= --disable-audiofile .endif |