0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-17 17:38:22 +02:00

configure: move some OS X toolchain checks around (closes #40)

This commit is contained in:
William Pitcock 2015-02-16 15:53:55 -06:00
parent 93eb76cc32
commit 7585af0f3b

View file

@ -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