From 651cac88d6cebcebc86b18cbec1efeb397190ade Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Mon, 28 Apr 2008 20:27:39 +0200 Subject: [PATCH] configure.ac: switch on host rather than host_os, do nothing on arm-apple-darwin --- configure.ac | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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" -- 2.26.2