- Timestamp:
- May 14, 2008, 6:06:46 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r1281 r1303 5 5 Copyright (C) 2005, 2006 Jari Häkkinen 6 6 Copyright (C) 2007 Jari Häkkinen, Peter Johansson 7 Copyright (C) 2008 Jari Häkkinen, Peter Johansson 7 8 8 9 This file is part of yat library, http://trac.thep.lu.se/yat … … 28 29 - http://trac.thep.lu.se/yat/query?milestone=0.5&order=id 29 30 31 version 0.4.1: 32 - http://trac.thep.lu.se/yat/log/branches/0.4-stable?rev=1300&stop_rev=1280 33 - http://trac.thep.lu.se/yat/query?milestone=yat+0.4.1&order=id 34 30 35 version 0.4: 31 36 - http://trac.thep.lu.se/yat/log/trunk?rev=1276&stop_rev=835 32 - http://trac.thep.lu.se/yat/query?milestone= 0.4&order=id37 - http://trac.thep.lu.se/yat/query?milestone=yat+0.4&order=id -
trunk/NEWS
r1287 r1303 6 6 7 7 - yat now requires GSL 1.8 or later 8 9 Version 0.4.1 (released 14 May 2008) 10 11 - Files needed for build of documentation is included in distribution (#365) 12 13 A complete list of closed tickets can be found here [[br]] 14 http://trac.thep.lu.se/yat/query?status=closed&milestone=yat+0.4.1 8 15 9 16 Version 0.4 (released 11 April 2008) … … 24 31 25 32 A complete list of closed tickets can be found here [[br]] 26 http://trac.thep.lu.se/yat/query?status=closed&milestone= 0.433 http://trac.thep.lu.se/yat/query?status=closed&milestone=yat+0.4 27 34 28 35 Version 0.3.1 (released 28 April 2007) … … 31 38 32 39 A complete list of closed tickets can be found here [[br]] 33 http://trac.thep.lu.se/yat/query?status=closed&milestone= 0.3.140 http://trac.thep.lu.se/yat/query?status=closed&milestone=yat+0.3.1 34 41 35 42 Version 0.3 (released 9 April 2007) … … 38 45 39 46 A complete list of closed tickets can be found here [[br]] 40 http://trac.thep.lu.se/yat/query?status=closed&milestone=0.3 47 http://trac.thep.lu.se/yat/query?status=closed&milestone=0.3+%28Public+release%29 41 48 42 49 … … 46 53 Copyright (C) 2003, 2006 Jari Häkkinen 47 54 Copyright (C) 2007 Jari Häkkinen, Peter Johansson 48 Copyright (C) 2008 Peter Johansson55 Copyright (C) 2008 Jari Häkkinen, Peter Johansson 49 56 50 57 This file is part of yat library, http://trac.thep.lu.se/yat -
trunk/README
r1287 r1303 10 10 options. 11 11 3. Compile with '`make`'. 12 1. Optionally do '`make check`' to run test programs. 13 1. '`make doc`' will generate documentation. 14 1. Issue '`make install`' to install the package on your 15 system. Default installation location is `/usr/local`, this can be 16 changed with '`./configure --prefix=/dir/to/install/to`'. 12 4. Optionally do '`make check`' to run test programs. 13 5. '`make doc`' will generate documentation. 14 6. Issue '`make install`' to install the package on your system, 15 documentation will not be installed if documentation was not 16 generated above. Default installation location is `/usr/local`, 17 this can be changed with 18 '`./configure --prefix=/dir/to/install/to`'. 17 19 18 20 If you keep your working copy up to date with the repository you must -
trunk/build_support/version.m4
r1281 r1303 1 1 ## $Id$ 2 2 # 3 # Copyright (C) 2008 Peter Johansson3 # Copyright (C) 2008 Jari Häkkinen, Peter Johansson 4 4 # 5 5 # This file is part of the yat library, http://trac.thep.lu.se/yat … … 29 29 m4_define([MINOR_VERSION], [5]) 30 30 # PATCH - Modify for every released patch 31 m4_define([PATCH_VERSION], [ 0])31 m4_define([PATCH_VERSION], [1]) 32 32 33 33 # DEV_BUILD - When rolling a tarball we set this to `false'. In … … 52 52 # yat-0.3 undefined 53 53 # yat-0.4 1:0:0 54 # yat-0.4.1 1:0:0 54 55 # 55 56 m4_define([LT_VERSION], [1:0:0]) -
trunk/configure.ac
r1287 r1303 183 183 yat/utility/Makefile]) 184 184 185 # Only warning about missing programs (needed for docs generation) 186 # when in debug mode 187 if (test "$enable_debug" == "yes"); then 185 # warning about missing doxygen 188 186 if (test "$HAVE_DOXYGEN" != "true") ; then 189 187 AC_MSG_WARN([ … … 192 190 install Doxygen available at http://www.doxygen.org/ 193 191 ]) 194 fi195 192 fi 196 193 -
trunk/doc/Makefile.am
r1275 r1303 24 24 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 25 25 # 02111-1307, USA. 26 27 EXTRA_DIST = concepts.doxygen first_page.doxygen namespaces.doxygen \ 28 Statistics.doxygen 26 29 27 30
Note: See TracChangeset
for help on using the changeset viewer.