mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-17 08:38:42 +00:00
Released as 1.0.0, but marked it as a BETA version.
This commit is contained in:
parent
99955b54be
commit
2d176ac5d2
13
README
13
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:
|
||||
|
||||
|
@ -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"
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user