From: Paul Brossier Date: Mon, 28 Apr 2008 18:27:39 +0000 (+0200) Subject: configure.ac: switch on host rather than host_os, do nothing on arm-apple-darwin X-Git-Tag: bzr2git~400 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=651cac88d6cebcebc86b18cbec1efeb397190ade;p=aubio.git configure.ac: switch on host rather than host_os, do nothing on arm-apple-darwin --- diff --git a/configure.ac b/configure.ac index aa3546b3..2e2a8e43 100644 --- a/configure.ac +++ b/configure.ac @@ -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"