diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-06-09 10:39:48 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-06-09 11:06:17 +0200 |
commit | 7932e475a5a587054089cb1dc60c7a920cdef630 (patch) | |
tree | de48ade7fb7bf09bc62de50f47ebfb7d5e72fd45 | |
parent | e2a393701ce25a0cd4ce572e1787e5ab8c290add (diff) | |
download | samba-7932e475a5a587054089cb1dc60c7a920cdef630.tar.gz samba-7932e475a5a587054089cb1dc60c7a920cdef630.tar.bz2 samba-7932e475a5a587054089cb1dc60c7a920cdef630.zip |
libreplace: only include AC_USE_SYSTEM_EXTENSIONS fallback if required
This fixes ./autogen.sh with autoconf-2.62
metze
(cherry picked from commit 72bb01dda4d425528e28cd96e249595dc6c1952f)
(This used to be commit 85111dc2b60ca38027adf129a074641c752cb104)
-rw-r--r-- | source3/lib/replace/libreplace.m4 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/lib/replace/libreplace.m4 b/source3/lib/replace/libreplace.m4 index 6a85ff5a82..71fa041672 100644 --- a/source3/lib/replace/libreplace.m4 +++ b/source3/lib/replace/libreplace.m4 @@ -299,4 +299,5 @@ m4_include(libreplace_cc.m4) m4_include(libreplace_ld.m4) m4_include(libreplace_network.m4) m4_include(libreplace_macros.m4) -m4_include(autoconf-2.60.m4) + +m4_ifndef([AC_USE_SYSTEM_EXTENSIONS],[m4_include(autoconf-2.60.m4)]) |