shithub: aubio

Download patch

ref: cf2f1b84fa847dc80ecac111730e0aef480dae74
parent: 92c70f602c2fcbcffc26b52d2fe4b6bbb8a162e5
author: Paul Brossier <piem@piem.org>
date: Thu May 15 19:18:31 EDT 2008

configure.ac: simplify flags for darwin and co (looks like -lmx is not needed anymore, at least os of macosx 10.4)

--- a/configure.ac
+++ b/configure.ac
@@ -97,16 +97,7 @@
   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)
   ;;