Changes from tags/0.6.8 at r1608 to tags/0.6.7 at r1608
- Location:
- tags/0.6.7
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
tags/0.6.7/ChangeLog
r1608 r1608 27 27 Changes are tracked with subversion log messages, tracs presentation 28 28 of the logs, and the tickets assigned to the different versions. 29 30 version 0.6.8:31 - http://dev.thep.lu.se/svndigest/log/branches/0.6-stable?rev=HEAD&stop_rev=76532 - http://dev.thep.lu.se/svndigest/query?milestone=svndigest+0.6.8&order=id33 29 34 30 version 0.6.7: -
tags/0.6.7/NEWS
r1608 r1608 2 2 3 3 See the end of this file for copyrights and conditions. 4 5 version 0.6.8 (released 12 November 2009)6 - configure now handles --disable correctly (issue #383)7 8 A complete list of closed tickets can be found here [[br]]9 http://dev.thep.lu.se/svndigest/query?status=closed&milestone=svndigest+0.6.810 4 11 5 version 0.6.7 (released 1 February 2009) -
tags/0.6.7/configure.ac
r1608 r1608 30 30 31 31 AC_PREREQ(2.57) 32 AC_INIT([svndigest],[0.6. 8],[jari@thep.lu.se])32 AC_INIT([svndigest],[0.6.7],[jari@thep.lu.se]) 33 33 AC_CONFIG_SRCDIR([lib/File.h]) 34 34 AC_CONFIG_AUX_DIR([autotools]) … … 54 54 CXXFLAGS="-Wall -pedantic -Wno-long-long" 55 55 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], 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, 64 62 [AS_HELP_STRING([--enable-wctests],[turn on all tests, tests 65 requiring a subversion WC are disabled by default])] )66 AM_CONDITIONAL(WCTESTS, test x$ enable_wctests = xyes)63 requiring a subversion WC are disabled by default])], [wctests=true]) 64 AM_CONDITIONAL(WCTESTS, test x$wctests = xtrue) 67 65 68 66 # optionally prepare for building static libraries. … … 178 176 AC_MSG_NOTICE([]) 179 177 180 if (test x$enable_wctests = xyes) ; then178 if (test "$wctests") ; then 181 179 AC_MSG_NOTICE([WC dependent tests are enabled]) 182 180 else
Note: See TracChangeset
for help on using the changeset viewer.