summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README13
-rw-r--r--sysdep/config.h2
-rwxr-xr-xtools/gendist10
3 files changed, 19 insertions, 6 deletions
diff --git a/README b/README
index 1232e87..d2cb785 100644
--- 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:
diff --git a/sysdep/config.h b/sysdep/config.h
index cee980c..42ec408 100644
--- a/sysdep/config.h
+++ b/sysdep/config.h
@@ -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"
diff --git a/tools/gendist b/tools/gendist
index ee0a624..ce7dbe4 100755
--- a/tools/gendist
+++ b/tools/gendist
@@ -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.