diff options
author | Paul Jakma <paul.jakma@hpe.com> | 2016-02-16 12:30:33 +0100 |
---|---|---|
committer | Daniel Walton <dwalton@cumulusnetworks.com> | 2016-05-26 17:33:34 +0200 |
commit | 9bc6875ad65c22b4008dca0b572ae5b192f2bf91 (patch) | |
tree | dea49f00427939507fa72cfd3eb5de27cad3a142 /configure.ac | |
parent | doc: older versions of texinfo seem to be sensitive to location of unmacro (diff) | |
download | frr-9bc6875ad65c22b4008dca0b572ae5b192f2bf91.tar.xz frr-9bc6875ad65c22b4008dca0b572ae5b192f2bf91.zip |
configure: Fix warnings on CentOS and bump the minimum autoconf version
* configure.ac: Bump the minimum version to 2.60 as needed by
AC_USE_SYSTEM_EXTENSIONS. AC 2.60 is nearly 10 years old, note. Add
AC_PROG_RANLIB, for when --disable-shared is used.
There are other warnings on, e.g., CentOS 6.7 with 2.63, but they
don't go away if the suggestion to add AC_SYSTEM_EXTENSIONS is
followed. This warning doesn't occur on Fedora with AC 2.69.
Note: autoconf (and other auto*) should only be needed on developer
machines building direct from git. Other systems should be using the
'make dist' tarballs, with a ready-made build system, that does not
need auto* intalled.
(cherry picked from commit f9f4731245eb9f83d0795acac24183c6cf709288)
Diffstat (limited to '')
-rwxr-xr-x | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index ff340f097..fa519a59a 100755 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ ## Copyright (c) 1996, 97, 98, 99, 2000 Kunihiro Ishiguro <kunihiro@zebra.org> ## Portions Copyright (c) 2003 Paul Jakma <paul@dishone.st> ## -AC_PREREQ(2.53) +AC_PREREQ(2.60) AC_INIT(Quagga, 0.99.23.1+cl3u2, [https://bugzilla.quagga.net]) AC_CONFIG_SRCDIR(lib/zebra.h) @@ -81,6 +81,7 @@ AC_LANG([C]) AC_PROG_CC AC_PROG_CPP AM_PROG_CC_C_O +AC_PROG_RANLIB AC_PROG_EGREP dnl autoconf 2.59 appears not to support AC_PROG_SED |