]> git.puffer.fish Git - matthieu/frr.git/commitdiff
Require automake 1.7 or higher. Fixes problem reported by Gilad
authorgdt <gdt>
Tue, 30 Mar 2004 13:45:58 +0000 (13:45 +0000)
committergdt <gdt>
Tue, 30 Mar 2004 13:45:58 +0000 (13:45 +0000)
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.)

configure.ac

index 1139645d0fc64aa3d80daf92760a3fa013f2a5e9..5f304db666aaf8c43ab00c286111c2eeaf8398d1 100755 (executable)
@@ -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