From: Paul Brossier Date: Thu, 15 May 2008 21:18:31 +0000 (+0200) Subject: configure.ac: simplify flags for darwin and co (looks like -lmx is not needed anymore... X-Git-Tag: bzr2git~389 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=cf2f1b84fa847dc80ecac111730e0aef480dae74;p=aubio.git configure.ac: simplify flags for darwin and co (looks like -lmx is not needed anymore, at least os of macosx 10.4) --- diff --git a/configure.ac b/configure.ac index 3fcdf0ed..05b6a3ec 100644 --- a/configure.ac +++ b/configure.ac @@ -97,16 +97,7 @@ case "${host}" in AM_CONDITIONAL(MINGW, true) LDFLAGS="$LDFLAGS -no-undefined" ;; -arm-apple-darwin) - dnl nothing to do here - ;; *darwin* | *rhapsody* | *macosx*) - dnl on macosx, cosf went to -lmx - LDFLAGS="$LDFLAGS -lmx" - dnl as long double doesn't sit well with -Wall -Werror - AUBIO_CFLAGS="$AUBIO_CFLAGS -Wno-long-double" - dnl Workaround darwin autoconf bug - CPPFLAGS="$CPPFLAGS -I${prefix}/include" AC_ISC_POSIX AM_CONDITIONAL(DARWIN, true) ;;