Changeset 160
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r153 r160 24 24 25 25 version pre0.5: 26 - Added a --enable-debug option to autoconf. The project is 27 compiled without debug code by default. Use './configure 28 --enable-debug' to turn on debug options and code. 26 29 - Improved permission checks on directories. 27 30 -
trunk/INSTALL
r149 r160 17 17 svndigest is distributed in the hope that it will be useful, but 18 18 WITHOUT ANY WARRANTY; without even the implied warranty of 19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 20 20 General Public License for more details. 21 21 … … 39 39 # make check 40 40 41 The ' configure' script accepts twooptions of interest for42 svndigest. You can provide ' configure' with APR and subversion API41 The './configure' script accepts a few options of interest for 42 svndigest. You can provide './configure' with APR and subversion API 43 43 location information with --with-apr=DIR and --with-svn=DIR, 44 respectively. 44 respectively. --enable-debug turns on debug options and code, which 45 may be useful for developers. 45 46 46 47 If you grabbed the source from the subversion repository you need to 47 run ' bootstrap' to setup autoconf files.48 run './bootstrap' to setup autoconf files. 48 49 49 50 -
trunk/configure.ac
r157 r160 46 46 # using extension beyond the C++ standard (usage of non C++ standard 47 47 # 'long long' types). 48 CXXFLAGS="-g -O -Wall -pedantic -Wno-long-long" 48 CXXFLAGS="-Wall -pedantic -Wno-long-long" 49 # The have HAVE_INLINE should probably be checked for. 49 50 CPPFLAGS="-DHAVE_INLINE=1" 50 # Use these flags when compiling a production library 51 #CXXFLAGS="-O3 -Wall -pedantic -Wno-long-long" 52 #CPPFLAGS="-DNDEBUG -DGSL_RANGE_CHECK_OFF -DHAVE_INLINE=1" 51 52 AC_ARG_ENABLE(debug,[ --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 53 59 54 60 AC_ARG_WITH(apr, … … 72 78 AC_OUTPUT 73 79 80 echo "" 81 echo " Ready to compile the executables of svndiget" 82 echo " The following compilers and flags will be used:" 83 echo " +++++++++++++++++++++++++++++++++++++++++++++++" 84 echo " Preprocessor flags: CPPFLAGS=\"$CPPFLAGS\"" 85 echo " C++ flags: CXXFLAGS=\"$CXXFLAGS\"" 86 echo " Linker flags: LDFLAGS=\"$LDFLAGS\"" 87 echo " +++++++++++++++++++++++++++++++++++++++++++++++" 88 echo "" 89 74 90 test "$GNUPLOT" = "ok" || \ 75 91 AC_MSG_WARN([Gnuplot was not found. svndigest will compile … … 77 93 install gnuplot (available for a wide range of operating systems 78 94 at http://www.gnuplot.info).]) 95 96 echo "" 97 echo " Now type 'make ; make check'." 98 echo ""
Note: See TracChangeset
for help on using the changeset viewer.