diff options
author | paul <paul> | 2003-09-24 05:09:26 +0000 |
---|---|---|
committer | paul <paul> | 2003-09-24 05:09:26 +0000 |
commit | fa1253d0c95416ab0361e6945275ef8194fd7ddd (patch) | |
tree | c0e9455701831fcc436f3b579eca956e07c6686a /lib | |
parent | 3e95a0741feb6f8b103577d0019a5db562d8315d (diff) |
2003-09-24 Paul Jakma <paul@dishone.st>
* lib/version.h: moved to version.h.in
* lib/version.h.in: New file, from version.h. Change hardcoded
package name and version to use the autoconf defined substition
variables.
* configure.ac: Fix up AC/AM_INIT* to new style. Remove the sed'ing
through lib/version.h for VERSION. Add lib/version.h to the
AC_OUTPUT list. Update the text output of quagga version at end
of configure run to use PACKAGE_VERSION.
* doc/.cvsignore: ignore quagga.pdf
* doc/.cvsignore: ignore version.h, its now autogenerated.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/.cvsignore | 1 | ||||
-rw-r--r-- | lib/version.h.in (renamed from lib/version.h) | 8 |
2 files changed, 5 insertions, 4 deletions
diff --git a/lib/.cvsignore b/lib/.cvsignore index b8e258be..d95f62f7 100644 --- a/lib/.cvsignore +++ b/lib/.cvsignore @@ -2,4 +2,5 @@ Makefile Makefile.in *.o version.c +version.h .deps diff --git a/lib/version.h b/lib/version.h.in index 9280613d..8b8b9f6e 100644 --- a/lib/version.h +++ b/lib/version.h.in @@ -22,13 +22,13 @@ #ifndef _ZEBRA_VERSION_H #define _ZEBRA_VERSION_H -#define QUAGGA_PROGNAME "quagga" +#define QUAGGA_PROGNAME "@PACKAGE_NAME@" -#define QUAGGA_VERSION "0.96.2" +#define QUAGGA_VERSION "@PACKAGE_VERSION@" -#define ZEBRA_BUG_ADDRESS "bug-zebra@gnu.org" +#define ZEBRA_BUG_ADDRESS "@PACKAGE_BUGREPORT@" -#define ZEBRA_URL "http://www.quagga.net" +#define QUAGGA_URL "http://www.quagga.net" extern char *host_name; |