From 7585af0f3bc81282fab95f86d0f7167e97a0723d Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Mon, 16 Feb 2015 15:53:55 -0600 Subject: [PATCH] configure: move some OS X toolchain checks around (closes #40) --- configure.ac | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/configure.ac b/configure.ac index 3b4ad9cb..8095848c 100644 --- a/configure.ac +++ b/configure.ac @@ -82,7 +82,7 @@ esac fi -AC_MSG_CHECKING([uname -s for Solaris, AIX or HPUX]) +AC_MSG_CHECKING([uname -s for Solaris, AIX, HPUX or Darwin]) OSNAME=`uname -s` case "$OSNAME" in HP-UX*) @@ -106,25 +106,16 @@ case "$OSNAME" in AC_MSG_RESULT(AIX - Sorry you poor bastard..really we are) IRC_CFLAGS="$IRC_CFLAGS -Wl,-brtl -Wl,-G" ;; + Darwin*) + AC_MSG_RESULT(Darwin) + AppleGCC=yes + ;; *) AC_MSG_RESULT(no) ;; esac if test "$ac_cv_c_compiler_gnu" = yes; then - AC_MSG_CHECKING(if $CC is Apple GCC) - - case `$CC -v 2>&1 | tail -n 1` in - *Apple*) - AC_MSG_RESULT(yes) - AppleGCC=yes - ;; - *) - AC_MSG_RESULT(no) - AppleGCC=no - ;; - esac - IRC_CFLAGS="$IRC_CFLAGS -O0 -Wall -std=gnu99" fi