Changeset 779 for branches/0.6-stable
- Timestamp:
- Feb 17, 2009, 1:08:49 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/0.6-stable/configure.ac
r766 r779 54 54 CXXFLAGS="-Wall -pedantic -Wno-long-long" 55 55 56 AC_ARG_ENABLE(debug, 57 [AS_HELP_STRING([--enable-debug],[turn on debug options and code])], 58 [CXXFLAGS="$CXXFLAGS -g -O"], 59 [CPPFLAGS="$CPPFLAGS -DNDEBUG" CXXFLAGS="$CXXFLAGS -O3"]) 60 61 AC_ARG_ENABLE(wctests, 56 AC_ARG_ENABLE([debug], 57 [AS_HELP_STRING([--enable-debug], 58 [turn on debug options and code])]) 59 60 AS_IF([test x$enable_debug = xyes], [CXXFLAGS="$CXXFLAGS -g -O"], 61 [CPPFLAGS="$CPPFLAGS -DNDEBUG" CXXFLAGS="$CXXFLAGS -O3"]) 62 63 AC_ARG_ENABLE([wctests], 62 64 [AS_HELP_STRING([--enable-wctests],[turn on all tests, tests 63 requiring a subversion WC are disabled by default])] , [wctests=true])64 AM_CONDITIONAL(WCTESTS, test x$ wctests = xtrue)65 requiring a subversion WC are disabled by default])]) 66 AM_CONDITIONAL(WCTESTS, test x$enable_wctests = xyes) 65 67 66 68 # optionally prepare for building static libraries. … … 176 178 AC_MSG_NOTICE([]) 177 179 178 if (test "$wctests") ; then180 if (test x$enable_wctests = xyes) ; then 179 181 AC_MSG_NOTICE([WC dependent tests are enabled]) 180 182 else
Note: See TracChangeset
for help on using the changeset viewer.