From a8e49e41f4a31f37fcdc94f3d3320daf2cbd7c34 Mon Sep 17 00:00:00 2001 From: Ron Pedde Date: Sun, 23 Sep 2007 21:14:09 +0000 Subject: [PATCH] Disable iconv on mac build, as the fink iconv doesn't produce a static lib --- mkmac.sh.templ | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mkmac.sh.templ b/mkmac.sh.templ index ce1259c2..e4a4566b 100755 --- a/mkmac.sh.templ +++ b/mkmac.sh.templ @@ -36,7 +36,7 @@ mkdir -p .build/intel tar -xvzf mt-daapd-svn-${SVNVERSION}.tar.gz pushd mt-daapd-svn-${SVNVERSION} -./configure --enable-static --with-static-libs=/sw/lib --enable-sqlite --with-id3tag=/sw +./configure --enable-static --disable-iconv --with-static-libs=/sw/lib --enable-sqlite --with-id3tag=/sw check_error $? "Configure error" make @@ -51,7 +51,7 @@ cp $BUILDDIR/plugins/.libs/*so .build/ppc # now make the intel version pushd mt-daapd-svn-${SVNVERSION} make clean -CFLAGS="-O -g -isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch i386" LDFLAGS="-arch i386" ac_cv_func_setpgrp_void=no ./configure --disable-dependency-tracking --enable-static --with-static-libs=/sw-x86/lib --enable-sqlite --with-id3tag=/sw-x86 --host=i686-apple-darwin8.8.0 +CFLAGS="-O -g -isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch i386" LDFLAGS="-arch i386" ac_cv_func_setpgrp_void=no ./configure --disable-dependency-tracking --enable-static --disable-iconv --with-static-libs=/sw-x86/lib --enable-sqlite --with-id3tag=/sw-x86 --host=i686-apple-darwin8.8.0 check_error $? "Configure error"