diff options
author | Bruno Haible <bruno@clisp.org> | 2000-06-16 21:47:59 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2000-06-16 21:47:59 +0000 |
commit | 3d3a2235ae7c65dc1ec291cba06ae7c37d581a43 (patch) | |
tree | cbda2cb7cbf47312f9edec2e20a479a92c0dda61 /m4 | |
parent | 83c5932bfd7983889512a1cc79b32fc0f5c4135f (diff) | |
download | external_gettext-3d3a2235ae7c65dc1ec291cba06ae7c37d581a43.zip external_gettext-3d3a2235ae7c65dc1ec291cba06ae7c37d581a43.tar.gz external_gettext-3d3a2235ae7c65dc1ec291cba06ae7c37d581a43.tar.bz2 |
Make it possible to use the AC_ISC_POSIX replacement with autoconf-2.13.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/ChangeLog | 6 | ||||
-rw-r--r-- | m4/isc-posix.m4 | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/m4/ChangeLog b/m4/ChangeLog index 9c61fb3..a36f933 100644 --- a/m4/ChangeLog +++ b/m4/ChangeLog @@ -1,3 +1,9 @@ +2000-06-16 Bruno Haible <haible@clisp.cons.org> + + * isc-posix.m4: Undefine the macro before calling AC_DEFUN, otherwise + with autoconf-2.13 we get lots of ***BUG in Autoconf--please report*** + errors. + 2000-05-06 Ulrich Drepper <drepper@redhat.com> * gettext.m4: Add tests for tsearch, iconv, and mempcpy. diff --git a/m4/isc-posix.m4 b/m4/isc-posix.m4 index 4dd2afa..f228ea8 100644 --- a/m4/isc-posix.m4 +++ b/m4/isc-posix.m4 @@ -7,6 +7,8 @@ # configure.in:556: AC_TRY_COMPILE was called before AC_ISC_POSIX # configure.in:556: AC_TRY_RUN was called before AC_ISC_POSIX +undefine([AC_ISC_POSIX]) + AC_DEFUN(AC_ISC_POSIX, [ dnl This test replaces the obsolescent AC_ISC_POSIX kludge. |