Changeset 368
- Timestamp:
- Jun 12, 2007, 9:05:14 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r358 r368 50 50 51 51 AC_ARG_ENABLE(debug, 52 [AS_HELP_STRING([--enable-debug],[turn on debug options and code])]) 53 if test "${enable_debug}" = "yes" ; then 54 CXXFLAGS="$CXXFLAGS -g -O" 55 else 56 CPPFLAGS="$CPPFLAGS -DNDEBUG" 57 CXXFLAGS="$CXXFLAGS -O3" 58 fi 52 [AS_HELP_STRING([--enable-debug],[turn on debug options and code])], 53 [CXXFLAGS="$CXXFLAGS -g -O"], 54 [CPPFLAGS="$CPPFLAGS -DNDEBUG" CXXFLAGS="$CXXFLAGS -O3"]) 59 55 60 56 AC_ARG_ENABLE(wctests, 61 57 [AS_HELP_STRING([--enable-wctests],[turn on all tests, tests 62 requiring a subversion WC are disabled by default])], 63 if test "${enable_wctests}" = "yes" ; then 64 wctests=true 65 fi) 58 requiring a subversion WC are disabled by default])], [wctests=true]) 66 59 AM_CONDITIONAL(WCTESTS, test x$wctests = xtrue) 67 60 … … 162 155 AC_MSG_NOTICE([]) 163 156 AC_MSG_NOTICE([ Ready to compile the executables of svndiget]) 164 AC_MSG_NOTICE([ The following compilers and flags will be used:])157 AC_MSG_NOTICE([ The following flags and libs will be used:]) 165 158 AC_MSG_NOTICE([ +++++++++++++++++++++++++++++++++++++++++++++++]) 166 159 AC_MSG_NOTICE([ Preprocessor flags: CPPFLAGS=\"$CPPFLAGS\"])
Note: See TracChangeset
for help on using the changeset viewer.