Changes from tags/0.6.7 at r1608 to tags/0.6.8 at r1608
- Location:
- tags/0.6.8
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
tags/0.6.8/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=765 32 - http://dev.thep.lu.se/svndigest/query?milestone=svndigest+0.6.8&order=id 29 33 30 34 version 0.6.7: -
tags/0.6.8/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.8 4 10 5 11 version 0.6.7 (released 1 February 2009) -
tags/0.6.8/configure.ac
r1608 r1608 30 30 31 31 AC_PREREQ(2.57) 32 AC_INIT([svndigest],[0.6. 7],[jari@thep.lu.se])32 AC_INIT([svndigest],[0.6.8],[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],[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.