Changeset 874
- Timestamp:
- Nov 22, 2009, 11:53:21 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 1 deleted
- 5 edited
- 4 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.am
r853 r874 32 32 rm -rf svndigest *~ 33 33 34 if ENABLE_SVN_SUPPORT35 include build_support/svn_support.am36 else37 release:38 @echo "ERROR: target 'release' not activated."39 @echo " You need to run configure with '--enable-svn-support'."40 @exit 141 endif42 43 44 34 # This is a workaround to avoid a broken make when .m4 files are 45 35 # renamed or deleted. Something similar will be provided by Automake 1.11 46 36 $(am__aclocal_m4_deps): 47 37 48 ## FIXME remove this (when 0.7 has been merged into trunk) 49 # avoid broken Makefile at future removal of am file 50 $(srcdir)/build_support/svn_support.am: 38 ############################################################## 39 ## 40 ## Some rules useful for maintainer 41 ## 42 43 include $(srcdir)/maintainer.am 44 45 # called within maintainer-check 46 ## We do wanna run all tests here since test repository is not 47 ## included in tarball, and thus some tests are skiped in distcheck. 48 MAINTAINER_CHECK_LOCAL = all check 49 # extra check in release rule 50 #RELEASE_LOCAL = -
trunk/NEWS
r849 r874 11 11 http://dev.thep.lu.se/svndigest/svn/branches/0.7-stable 12 12 13 Version 0.7 (released DATE)13 Version 0.7 (released 22 November 2009) 14 14 - Upgraded to GLPv3 (ticket:339) 15 15 - configure option --enable-staticbin is removed (ticket:340) 16 16 - configure option --enable-wctests is removed (ticket:295) 17 - configure option --enable-svn-support is removed 17 18 - parsing rules can be set in config file (ticket:283) 19 - Statistics is now cached (ticket:5) 20 - More statistics: StatsType Blame (ticket:24) and StatsType Add (ticket:82) 18 21 19 22 A complete list of closed tickets can be found here [[br]] … … 28 31 version 0.6.7 (released 1 February 2009) 29 32 - Improved TracLinks (issue #353) 30 - Daylight saving time is now handled correctly (issue #35 3)33 - Daylight saving time is now handled correctly (issue #356) 31 34 32 35 A complete list of closed tickets can be found here [[br]] -
trunk/README.developer
r847 r874 116 116 shared between authors. 117 117 118 == Design and Motivation == 119 120 Please refer to source:trunk/doc/HACKING for a list of design 121 decisions we try to follow. 118 122 119 123 == Releasing == -
trunk/configure.ac
r858 r874 54 54 55 55 AC_CONFIG_HEADER([config.h]) 56 AM_INIT_AUTOMAKE([1.10 std-options check-news])56 AM_INIT_AUTOMAKE([1.10 std-options]) 57 57 58 58 # Set default programming language … … 106 106 [YAT_CPP_ADD_FLAG([SD_CPPFLAGS],[-DNDEBUG]) 107 107 YAT_CXX_ADD_FLAG([SD_CXXFLAGS],[-O3])]) 108 109 # enable svn-support110 AC_ARG_ENABLE([svn-support],111 [AS_HELP_STRING([--enable-svn-support],112 [enable svn support - used by maintainer])])113 114 AS_IF([test "x$enable_svn_support" = xyes],115 [AS_IF([test -d $srcdir/.svn], [],116 [AC_MSG_ERROR([svn support cannot be enabled: `$srcdir' is not an svn wc.])])])117 AM_CONDITIONAL([ENABLE_SVN_SUPPORT], [test "x$enable_svn_support" = "xyes"])118 108 119 109 # Apache Portable Runtime (APR) API checks … … 210 200 [chmod +x test/check_repo_status.sh]) 211 201 202 # maintainer make rukes from yat project 203 YAT_SVN_RELEASE 212 204 213 205 AC_CONFIG_FILES([Makefile -
trunk/lib/Makefile.am
r858 r874 36 36 Graph.h \ 37 37 HtmlBuf.h HtmlStream.h html_utility.h LineTypeParser.h \ 38 Node.h 38 Node.h \ 39 39 OptionVersion.h rmdirhier.h \ 40 40 Stats.h StatsCollection.h subversion_info.h SVN.h SVNblame.h \
Note: See TracChangeset
for help on using the changeset viewer.