2006-12-12 20:02:04 -06:00
|
|
|
# _MOO_AC_CHECK_COMPILER_OPTIONS(var,options)
|
|
|
|
AC_DEFUN([_MOO_AC_CHECK_COMPILER_OPTIONS],[
|
|
|
|
AC_LANG_SAVE
|
|
|
|
AC_LANG_C
|
|
|
|
for opt in $2; do
|
|
|
|
AC_MSG_CHECKING(whether C compiler accepts $opt)
|
|
|
|
save_CFLAGS="$CFLAGS"
|
|
|
|
CFLAGS="$CFLAGS $opt"
|
|
|
|
AC_TRY_COMPILE([],[],[$1="$[]$1 $opt"; AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no)])
|
|
|
|
CFLAGS="$save_CFLAGS"
|
|
|
|
done
|
|
|
|
AC_LANG_RESTORE
|
|
|
|
])
|
|
|
|
|
2005-10-30 21:16:22 +00:00
|
|
|
##############################################################################
|
2005-11-05 13:12:50 +00:00
|
|
|
# MOO_AC_DEBUG()
|
2005-10-30 21:16:22 +00:00
|
|
|
#
|
2007-01-02 05:07:30 -06:00
|
|
|
AC_DEFUN_ONCE([MOO_AC_DEBUG],[
|
2005-10-30 21:16:22 +00:00
|
|
|
|
2007-08-20 22:15:58 -05:00
|
|
|
MOO_DEBUG_ENABLED="no"
|
2006-11-26 01:08:56 -06:00
|
|
|
MOO_DEBUG_CFLAGS=
|
|
|
|
|
|
|
|
AC_ARG_ENABLE(tests,
|
|
|
|
AC_HELP_STRING([--enable-tests],[build test programs (default = NO)]),[
|
|
|
|
if test "x$enable_tests" = "xno"; then
|
|
|
|
MOO_ENABLE_TESTS="no"
|
|
|
|
else
|
|
|
|
MOO_ENABLE_TESTS="yes"
|
|
|
|
fi
|
|
|
|
],[
|
|
|
|
MOO_ENABLE_TESTS="no"
|
|
|
|
])
|
|
|
|
AM_CONDITIONAL(MOO_ENABLE_TESTS, test x$MOO_ENABLE_TESTS = "xyes")
|
2006-08-22 23:14:21 -05:00
|
|
|
|
2006-11-26 01:08:56 -06:00
|
|
|
AC_ARG_ENABLE(debug,
|
|
|
|
AC_HELP_STRING([--enable-debug],[enable debug options (default = NO)]),[
|
|
|
|
if test "x$enable_debug" = "xno"; then
|
2007-08-20 22:15:58 -05:00
|
|
|
MOO_DEBUG_ENABLED="no"
|
2006-11-26 01:08:56 -06:00
|
|
|
else
|
2007-08-20 22:15:58 -05:00
|
|
|
MOO_DEBUG_ENABLED="yes"
|
2006-11-26 01:08:56 -06:00
|
|
|
fi
|
|
|
|
],[
|
2007-08-20 22:15:58 -05:00
|
|
|
MOO_DEBUG_ENABLED="no"
|
2006-11-26 01:08:56 -06:00
|
|
|
])
|
2007-08-20 22:15:58 -05:00
|
|
|
AM_CONDITIONAL(MOO_DEBUG_ENABLED, test x$MOO_DEBUG_ENABLED = "xyes")
|
2005-10-30 21:16:22 +00:00
|
|
|
|
2006-12-12 20:02:04 -06:00
|
|
|
_moo_all_warnings="no"
|
|
|
|
AC_ARG_ENABLE(all-warnings,
|
|
|
|
AC_HELP_STRING([--enable-all-warnings],[enable lot of compiler warnings (default = NO)]),[
|
2007-07-07 07:34:21 -05:00
|
|
|
_moo_all_warnings="$enableval"
|
2006-11-26 01:08:56 -06:00
|
|
|
])
|
2007-04-10 00:46:15 -05:00
|
|
|
AM_CONDITIONAL(MOO_ALL_WARNINGS, test x$_moo_all_warnings = "xyes")
|
2005-10-30 21:16:22 +00:00
|
|
|
|
2007-02-27 21:49:56 -06:00
|
|
|
# icc pretends to be gcc or configure thinks it's gcc, but icc doesn't
|
|
|
|
# error on unknown options, so just don't try gcc options with icc
|
|
|
|
_MOO_ICC=false
|
|
|
|
_MOO_GCC=false
|
|
|
|
if test "$CC" = "icc"; then
|
|
|
|
_MOO_ICC=true
|
|
|
|
elif test "x$GCC" = "xyes"; then
|
|
|
|
_MOO_GCC=true
|
|
|
|
fi
|
|
|
|
|
2006-12-12 20:02:04 -06:00
|
|
|
MOO_DEBUG_CFLAGS=
|
|
|
|
if test "x$_moo_all_warnings" = "xyes"; then
|
2007-02-27 21:49:56 -06:00
|
|
|
if $_MOO_ICC; then
|
|
|
|
_MOO_AC_CHECK_COMPILER_OPTIONS(MOO_DEBUG_CFLAGS, [-Wall -Wcheck -w2 -wd981 -wd188 -wd869 -wd556 -wd810])
|
|
|
|
elif $_MOO_GCC; then
|
2006-12-12 20:02:04 -06:00
|
|
|
_MOO_AC_CHECK_COMPILER_OPTIONS(MOO_DEBUG_CFLAGS,
|
|
|
|
[-W -Wall -Wpointer-arith -Wcast-align -Wsign-compare -Winline -Wreturn-type dnl
|
2005-10-30 21:16:22 +00:00
|
|
|
-Wwrite-strings -Wmissing-prototypes -Wmissing-declarations dnl
|
|
|
|
-Wmissing-noreturn -Wmissing-format-attribute -Wnested-externs dnl
|
2007-03-13 01:27:08 -05:00
|
|
|
-Wdisabled-optimization -Wendif-labels -Wstrict-prototypes])
|
2006-12-12 20:02:04 -06:00
|
|
|
fi
|
|
|
|
else
|
2007-02-27 21:49:56 -06:00
|
|
|
if $_MOO_GCC; then
|
2006-12-12 20:02:04 -06:00
|
|
|
_MOO_AC_CHECK_COMPILER_OPTIONS(MOO_DEBUG_CFLAGS, [-Wall -W])
|
|
|
|
fi
|
2006-11-26 01:08:56 -06:00
|
|
|
fi
|
2005-10-30 21:16:22 +00:00
|
|
|
|
2007-05-30 21:56:58 -05:00
|
|
|
m4_foreach([wname],[missing-field-initializers, unused, sign-compare, write-strings],[dnl
|
2007-02-27 21:49:56 -06:00
|
|
|
m4_define([_moo_WNAME],[MOO_W_NO_[]m4_bpatsubst(m4_toupper(wname),-,_)])
|
|
|
|
_moo_WNAME=
|
|
|
|
if $_MOO_GCC; then
|
|
|
|
_MOO_AC_CHECK_COMPILER_OPTIONS(_moo_WNAME,[-Wno-wname])
|
2007-01-22 08:10:07 -06:00
|
|
|
fi
|
2007-02-27 21:49:56 -06:00
|
|
|
AC_SUBST(_moo_WNAME)
|
|
|
|
m4_undefine([_moo_WNAME])
|
|
|
|
])
|
2007-01-22 08:10:07 -06:00
|
|
|
|
2007-03-06 16:03:26 -06:00
|
|
|
if $_MOO_GCC; then
|
2007-04-03 12:30:53 -05:00
|
|
|
if test "x$_moo_all_warnings" = "xyes"; then
|
2007-05-08 09:01:44 -05:00
|
|
|
_MOO_AC_CHECK_COMPILER_OPTIONS(MOO_DEBUG_CFLAGS,[-fstrict-aliasing])
|
2007-04-03 12:30:53 -05:00
|
|
|
else
|
2007-05-08 09:01:44 -05:00
|
|
|
_MOO_AC_CHECK_COMPILER_OPTIONS(MOO_DEBUG_CFLAGS,[-fno-strict-aliasing])
|
2007-04-03 12:30:53 -05:00
|
|
|
fi
|
2007-03-06 16:03:26 -06:00
|
|
|
fi
|
|
|
|
|
2007-08-20 22:15:58 -05:00
|
|
|
if test "x$MOO_DEBUG_ENABLED" = "xyes"; then
|
2006-12-10 16:45:52 -06:00
|
|
|
_moo_debug_flags="-DG_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED dnl
|
2006-11-26 01:08:56 -06:00
|
|
|
-DGDK_DISABLE_DEPRECATED -DENABLE_DEBUG -DENABLE_PROFILE dnl
|
2007-08-20 22:15:58 -05:00
|
|
|
-DG_ENABLE_DEBUG -DG_ENABLE_PROFILE -DMOO_DEBUG_ENABLED=1"
|
2006-11-26 01:08:56 -06:00
|
|
|
else
|
2006-12-10 16:45:52 -06:00
|
|
|
_moo_debug_flags="-DNDEBUG=1 -DG_DISABLE_CAST_CHECKS -DG_DISABLE_ASSERT"
|
2006-11-26 01:08:56 -06:00
|
|
|
fi
|
2005-10-30 21:16:22 +00:00
|
|
|
|
2006-12-10 16:45:52 -06:00
|
|
|
MOO_DEBUG_CFLAGS="$MOO_DEBUG_CFLAGS $_moo_debug_flags"
|
2005-10-30 21:16:22 +00:00
|
|
|
|
2006-12-10 16:45:52 -06:00
|
|
|
if test "x$MOO_ENABLE_TESTS" = "xyes"; then
|
2006-11-26 01:08:56 -06:00
|
|
|
MOO_DEBUG_CFLAGS="$MOO_DEBUG_CFLAGS -DMOO_ENABLE_TESTS"
|
|
|
|
fi
|
2006-08-22 23:14:21 -05:00
|
|
|
|
2006-11-26 01:08:56 -06:00
|
|
|
AC_SUBST(MOO_DEBUG_CFLAGS)
|
2005-10-30 21:16:22 +00:00
|
|
|
|
2006-11-26 01:08:56 -06:00
|
|
|
AC_MSG_CHECKING(for C compiler debug options)
|
|
|
|
if test "x$MOO_DEBUG_CFLAGS" = "x"; then
|
|
|
|
AC_MSG_RESULT(None)
|
|
|
|
else
|
|
|
|
AC_MSG_RESULT($MOO_DEBUG_CFLAGS)
|
|
|
|
fi
|
2005-10-30 21:16:22 +00:00
|
|
|
])
|