From: Michael Jeanson Date: Sat, 23 Apr 2016 13:59:14 +0000 (-0400) Subject: Disable debuginfo by default on Solaris and OSX X-Git-Tag: v2.0.0-pre1~1000 X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=commitdiff_plain;h=a3d283803b3c03f12b9b3a99d341488bf44a5c3d Disable debuginfo by default on Solaris and OSX Signed-off-by: Michael Jeanson Signed-off-by: Jérémie Galarneau --- diff --git a/configure.ac b/configure.ac index 55a438b2..2160ffe9 100644 --- a/configure.ac +++ b/configure.ac @@ -139,12 +139,18 @@ AC_CHECK_FUNCS([ \ uname \ ]) -# Check for MinGW32. MINGW32=no -case $host in - *-*-mingw*) - MINGW32=yes;; -esac +DEFAULT_ENABLE_DEBUGINFO=yes +AS_CASE([$host_os], + [solaris*|darwin*], + [ + DEFAULT_ENABLE_DEBUGINFO=no + ], + [mingw*], + [ + MINGW32=yes + ] +) AM_CONDITIONAL([BABELTRACE_BUILD_WITH_MINGW], [test "x$MINGW32" = "xyes"]) @@ -271,7 +277,10 @@ if test "x${enable_python_bindings_doc:-yes}" = xyes; then fi # Optional debuginfo feature (enabled by default) -AC_ARG_ENABLE([debuginfo], [AC_HELP_STRING([--disable-debuginfo], [disable the debuginfo feature])], [], [enable_debuginfo=yes]) +AS_IF([test "x$DEFAULT_ENABLE_DEBUGINFO" = xyes], + [AC_ARG_ENABLE([debuginfo], [AC_HELP_STRING([--disable-debuginfo], [disable the debuginfo feature])], [], [enable_debuginfo=yes])], + [AC_ARG_ENABLE([debuginfo], [AC_HELP_STRING([--enable-debuginfo], [enable the debuginfo feature])], [], [enable_debuginfo=no])] +) AM_CONDITIONAL([ENABLE_DEBUGINFO], [test "x$enable_debuginfo" = xyes]) AS_IF([test "x$enable_debuginfo" = xyes], [