Changeset 368


Ignore:
Timestamp:
Jun 12, 2007, 9:05:14 PM (16 years ago)
Author:
Peter Johansson
Message:

some lipstick for configure

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.ac

    r358 r368  
    5050
    5151AC_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"])
    5955
    6056AC_ARG_ENABLE(wctests,
    6157  [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])
    6659AM_CONDITIONAL(WCTESTS, test x$wctests = xtrue)
    6760
     
    162155AC_MSG_NOTICE([])
    163156AC_MSG_NOTICE([   Ready to compile the executables of svndiget])
    164 AC_MSG_NOTICE([   The following compilers and flags will be used:])
     157AC_MSG_NOTICE([   The following flags and libs will be used:])
    165158AC_MSG_NOTICE([   +++++++++++++++++++++++++++++++++++++++++++++++])
    166159AC_MSG_NOTICE([    Preprocessor flags: CPPFLAGS=\"$CPPFLAGS\"])
Note: See TracChangeset for help on using the changeset viewer.