mirror of
https://github.com/FRRouting/frr.git
synced 2025-04-30 21:47:15 +02:00
2005-04-16 Paul Jakma <paul.jakma@sun.com>
* configure.ac: check for gawk, needed to build memtypes.h
This commit is contained in:
parent
d45f1f1c3f
commit
03ecfb6789
|
@ -1,3 +1,7 @@
|
||||||
|
2005-04-16 Paul Jakma <paul.jakma@sun.com>
|
||||||
|
|
||||||
|
* configure.ac: check for gawk, needed to build memtypes.h
|
||||||
|
|
||||||
2005-04-11 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
|
2005-04-11 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
|
||||||
|
|
||||||
* configure.ac: Move AC_CANONICAL_* stuff before AM_INIT_AUTOMAKE to
|
* configure.ac: Move AC_CANONICAL_* stuff before AM_INIT_AUTOMAKE to
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
## Copyright (c) 1996, 97, 98, 99, 2000 Kunihiro Ishiguro <kunihiro@zebra.org>
|
## Copyright (c) 1996, 97, 98, 99, 2000 Kunihiro Ishiguro <kunihiro@zebra.org>
|
||||||
## Portions Copyright (c) 2003 Paul Jakma <paul@dishone.st>
|
## Portions Copyright (c) 2003 Paul Jakma <paul@dishone.st>
|
||||||
##
|
##
|
||||||
## $Id: configure.ac,v 1.102 2005/04/11 14:55:55 ajs Exp $
|
## $Id: configure.ac,v 1.103 2005/04/16 15:38:23 paul Exp $
|
||||||
AC_PREREQ(2.53)
|
AC_PREREQ(2.53)
|
||||||
|
|
||||||
AC_INIT(Quagga, 0.99.0, [http://bugzilla.quagga.net])
|
AC_INIT(Quagga, 0.99.0, [http://bugzilla.quagga.net])
|
||||||
|
@ -21,6 +21,10 @@ AC_CANONICAL_TARGET()
|
||||||
AM_INIT_AUTOMAKE(1.6)
|
AM_INIT_AUTOMAKE(1.6)
|
||||||
AM_CONFIG_HEADER(config.h)
|
AM_CONFIG_HEADER(config.h)
|
||||||
|
|
||||||
|
dnl we need gawk for memtypes.awk
|
||||||
|
AC_CHECK_PROG([GAWK],[gawk],[gawk],[/bin/false])
|
||||||
|
AC_ARG_VAR([GAWK],[GNU AWK])
|
||||||
|
|
||||||
dnl default is to match previous behavior
|
dnl default is to match previous behavior
|
||||||
exampledir=${sysconfdir}
|
exampledir=${sysconfdir}
|
||||||
AC_ARG_ENABLE([exampledir],
|
AC_ARG_ENABLE([exampledir],
|
||||||
|
|
Loading…
Reference in a new issue