diff options
author | Paul Jakma <paul@quagga.net> | 2009-07-19 18:33:21 +0200 |
---|---|---|
committer | Paul Jakma <paul@quagga.net> | 2009-07-19 18:33:21 +0200 |
commit | 62c9f504bdd4b09df6cf677e96367f3b31ef9dea (patch) | |
tree | 25804d84010397a352b384d10d5cfab1d41ff42e /configure.ac | |
parent | [bgpd] Bug #533: Fix crash with copy/pasted commands, inc 'no bgp ...' (diff) | |
download | frr-62c9f504bdd4b09df6cf677e96367f3b31ef9dea.tar.xz frr-62c9f504bdd4b09df6cf677e96367f3b31ef9dea.zip |
[build] fix default CFLAGS and squish warning
* configure.ac: Move down the AC_SYS_LARGEFILE test - it was setting CFLAGS
and so disabling the default CFLAGS setting section.
Squish warning by adding AC_CONFIG_MACRO_DIR on the reccommendation of
autoreconf.
Diffstat (limited to '')
-rwxr-xr-x | configure.ac | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index d7d8a2f3e..487aa4320 100755 --- a/configure.ac +++ b/configure.ac @@ -10,6 +10,7 @@ AC_PREREQ(2.53) AC_INIT(Quagga, 0.99.13, [http://bugzilla.quagga.net]) AC_CONFIG_SRCDIR(lib/zebra.h) +AC_CONFIG_MACRO_DIR([m4]) dnl ----------------------------------- dnl Get hostname and other information. @@ -28,8 +29,6 @@ BSD awk complains: awk: gensub doesn't support backreferences (subst "\1") ]) fi AC_ARG_VAR([GAWK],[GNU AWK]) -AC_SYS_LARGEFILE - dnl default is to match previous behavior exampledir=${sysconfdir} AC_ARG_ENABLE([exampledir], @@ -554,6 +553,8 @@ case "$host" in ;; esac +AC_SYS_LARGEFILE + dnl --------------------- dnl Integrated VTY option dnl --------------------- |