mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-10-29 17:33:09 +00:00
Accommodate developers using autoconf-2.59.
* configure.in (m4_foreach_w): Define if not defined. Author: Jim Meyering <meyering@redhat.com>
This commit is contained in:
parent
87396257fc
commit
d51e7c9ff0
@ -1,3 +1,8 @@
|
|||||||
|
Wed Dec 5 23:57:53 CET 2007 Jim Meyering <meyering@redhat.com>
|
||||||
|
|
||||||
|
Accommodate developers using autoconf-2.59.
|
||||||
|
* configure.in (m4_foreach_w): Define if not defined.
|
||||||
|
|
||||||
Wed Dec 5 22:38:18 CET 2007 Jim Meyering <meyering@redhat.com>
|
Wed Dec 5 22:38:18 CET 2007 Jim Meyering <meyering@redhat.com>
|
||||||
|
|
||||||
Include "config.h".
|
Include "config.h".
|
||||||
|
@ -33,6 +33,13 @@ AC_PROG_CC
|
|||||||
AC_PROG_INSTALL
|
AC_PROG_INSTALL
|
||||||
AC_PROG_CPP
|
AC_PROG_CPP
|
||||||
|
|
||||||
|
dnl gl_INIT uses m4_foreach_w, yet that is not defined in autoconf-2.59.
|
||||||
|
dnl In order to accommodate developers with such old tools, here's a
|
||||||
|
dnl replacement definition.
|
||||||
|
m4_ifndef([m4_foreach_w],
|
||||||
|
[m4_define([m4_foreach_w],
|
||||||
|
[m4_foreach([$1], m4_split(m4_normalize([$2]), [ ]), [$3])])])
|
||||||
|
|
||||||
gl_EARLY
|
gl_EARLY
|
||||||
gl_INIT
|
gl_INIT
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user