diff options
author | Bruno Haible <bruno@clisp.org> | 2003-07-01 11:15:19 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:10:46 +0200 |
commit | f2427b0fe0e8e9d6068dd8dc2d5e9894f21dbe62 (patch) | |
tree | 6ec08849326f2295a00f3f21b293b32abe63a8c0 /autoconf-lib-link | |
parent | 4dfb858b9ed4bb4724e79da4ed852ee0291efa53 (diff) | |
download | external_gettext-f2427b0fe0e8e9d6068dd8dc2d5e9894f21dbe62.zip external_gettext-f2427b0fe0e8e9d6068dd8dc2d5e9894f21dbe62.tar.gz external_gettext-f2427b0fe0e8e9d6068dd8dc2d5e9894f21dbe62.tar.bz2 |
Avoid an error with an outdated version of automake.
Diffstat (limited to 'autoconf-lib-link')
-rw-r--r-- | autoconf-lib-link/m4/ChangeLog | 7 | ||||
-rw-r--r-- | autoconf-lib-link/m4/lib-prefix.m4 | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/autoconf-lib-link/m4/ChangeLog b/autoconf-lib-link/m4/ChangeLog index 8e1bc8e..80db548 100644 --- a/autoconf-lib-link/m4/ChangeLog +++ b/autoconf-lib-link/m4/ChangeLog @@ -1,3 +1,10 @@ +2003-07-01 Bruno Haible <bruno@clisp.org> + + * lib-prefix.m4 (AC_LIB_ARG_WITH): Avoid "duplicated macro" error from + aclocal-1.4-p4. + Reported by Luke Schierer <lschiere@rackspace.com> and + Michael C. Toren <mct@toren.net>. + 2003-06-17 Paul Eggert <eggert@twinsun.com> * lib-ld.m4 (AC_LIB_PROG_LD_GNU, AC_LIB_PROG_LD): Don't use egrep, for diff --git a/autoconf-lib-link/m4/lib-prefix.m4 b/autoconf-lib-link/m4/lib-prefix.m4 index c719bc8..26874b2 100644 --- a/autoconf-lib-link/m4/lib-prefix.m4 +++ b/autoconf-lib-link/m4/lib-prefix.m4 @@ -1,4 +1,4 @@ -# lib-prefix.m4 serial 2 (gettext-0.12) +# lib-prefix.m4 serial 3 (gettext-0.12.2) dnl Copyright (C) 2001-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General @@ -13,7 +13,7 @@ dnl similar to AC_ARG_WITH in autoconf 2.52...2.57 except that is doesn't dnl require excessive bracketing. ifdef([AC_HELP_STRING], [AC_DEFUN([AC_LIB_ARG_WITH], [AC_ARG_WITH([$1],[[$2]],[$3],[$4])])], -[AC_DEFUN([AC_LIB_ARG_WITH], [AC_ARG_WITH([$1],[$2],[$3],[$4])])]) +[AC_DEFUN([AC_][LIB_ARG_WITH], [AC_ARG_WITH([$1],[$2],[$3],[$4])])]) dnl AC_LIB_PREFIX adds to the CPPFLAGS and LDFLAGS the flags that are needed dnl to access previously installed libraries. The basic assumption is that |