configure.ac: switch on host rather than host_os, do nothing on arm-apple-darwin
authorPaul Brossier <piem@piem.org>
Mon, 28 Apr 2008 18:27:39 +0000 (20:27 +0200)
committerPaul Brossier <piem@piem.org>
Mon, 28 Apr 2008 18:27:39 +0000 (20:27 +0200)
configure.ac

index aa3546b3931a701fa906c94ee1687f9c780737ea..2e2a8e4383fd1272b9b6bc309f3f3f24e07f8ff1 100644 (file)
@@ -90,13 +90,16 @@ AC_CONFIG_FILES(aubio.pc)
 
 AM_CONDITIONAL(MINGW, false)
 AM_CONDITIONAL(DARWIN, false)
-case "${host_os}" in
+case "${host}" in
 *mingw* | *cygwin*)
   mingw32_support="yes"
   AC_CHECK_HEADER(windows.h)
   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"