diff options
author | gdt <gdt> | 2004-03-30 13:45:58 +0000 |
---|---|---|
committer | gdt <gdt> | 2004-03-30 13:45:58 +0000 |
commit | 80d001a6a9c10fd8bfe93b78c1f233623c7260fd (patch) | |
tree | d8ea710b6455be3ca27025b0b4b35a963c56ea6f /configure.ac | |
parent | 938196eedc0883040efe960bc7f2d999860bc75d (diff) | |
download | quagga-80d001a6a9c10fd8bfe93b78c1f233623c7260fd.tar.bz2 quagga-80d001a6a9c10fd8bfe93b78c1f233623c7260fd.tar.xz |
Require automake 1.7 or higher. Fixes problem reported by Gilad
Arnold where Gentoo Linux tries to be too smart and chooses automake
1.5, which doesn't set @PACKAGE@, leading to include files being in
$(prefix)/include rther then $(prefix)/include/quagga.
(Since our makefiles rely on @PACKAGE@, they should have required an
automake new enough to set it.)
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 1139645d..5f304db6 100755 --- a/configure.ac +++ b/configure.ac @@ -9,7 +9,7 @@ AC_PREREQ(2.53) AC_INIT(quagga, 0.96.4, [http://bugzilla.quagga.net]) AC_CONFIG_SRCDIR(lib/zebra.h) -AM_INIT_AUTOMAKE() +AM_INIT_AUTOMAKE(1.7) AM_CONFIG_HEADER(config.h) dnl default is to match previous behavior |