]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Released as 1.0.0, but marked it as a BETA version.
authorMartin Mares <mj@ucw.cz>
Fri, 9 Jun 2000 06:45:48 +0000 (06:45 +0000)
committerMartin Mares <mj@ucw.cz>
Fri, 9 Jun 2000 06:45:48 +0000 (06:45 +0000)
README
sysdep/config.h
tools/gendist

diff --git a/README b/README
index 1232e876e5905dc94377e6c19d0964fd042d8098..d2cb785b577b94be69d852013f2cc3804ae5bc04 100644 (file)
--- a/README
+++ b/README
@@ -11,6 +11,11 @@ systems (but not necessarily limited to them) with full support of all modern
 routing protocols, easy to use configuration interface and powerful route
 filtering language.
 
+This software should be considered a beta version. It has undergone extensive
+testing by the authors, but since it's the first public release, only a limited
+amount of "real life" experience is known and there still might be problems
+with operation in unusual environments.
+
 If you want to help us debugging, enhancing and porting BIRD or just lurk
 around to see what's going to develop from this strange creature, feel free
 to subscribe to the BIRD users mailing list (bird-users@bird.network.cz),
@@ -46,9 +51,11 @@ How to install BIRD:
        make install
        vi /usr/local/etc/bird.conf
 
-Online documentation is available as HTML files in the doc directory.
-You can also download a neatly formatted PostScript version as a separate
-archive (bird-doc-*.tar.gz).
+Online documentation is available as HTML files in the doc directory,
+you can install it by `make install-docs' and rebuild it by `make docs',
+but for the latter you need SGMLtools and LaTeX to be installed on your
+machine. You can also download a neatly formatted PostScript version
+as a separate archive (bird-doc-*.tar.gz).
 
 What do we support:
 
index cee980c4ead432e7f1f1cec85403a6962f8974ae..42ec4088f7e6befcf1133ab12358824953557b54 100644 (file)
@@ -7,7 +7,7 @@
 #define _BIRD_CONFIG_H_
 
 /* BIRD version */
-#define BIRD_VERSION "0.0.0"
+#define BIRD_VERSION "1.0.0"
 
 /* Include parameters determined by configure script */
 #include "sysdep/autoconf.h"
index ee0a624150cccd5b0bb4c8ccb644e37a4d5a9dce..ce7dbe445871ab3696a8a4e0b40906216677bfe2 100755 (executable)
@@ -4,15 +4,21 @@
 #  (c) 2000 Martin Mares <mj@ucw.cz>
 #
 
+set -e
 [ -f Makefile ] && make distclean
 autoconf
+( cd doc ; make docs ; make clean )
 VERSION=`sed <sysdep/config.h '/BIRD_VERSION/!d;s/^.*"\(.*\)"$/\1/'`
 REL=bird-$VERSION
+DREL=bird-doc-$VERSION
 echo Building $REL
 rm -rf dist
-mkdir -p dist/$REL
+mkdir -p dist/$REL dist/$DREL/doc
 cp -a . dist/$REL
+mv dist/$REL/doc/*.ps dist/$DREL/doc
+rm -f dist/$REL/bird.conf
 rm -rf `find dist/$REL -name CVS -o -name tmp` dist/$REL/{dist,misc,rfc}
-cd dist ; tar czvvf /tmp/$REL.tar.gz $REL
+( cd dist ; tar czvvf /tmp/$REL.tar.gz $REL )
+( cd dist ; tar czvvf /tmp/$DREL.tar.gz $DREL )
 rm -rf dist
 echo Done.