diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2004-01-14 13:41:37 +0000 |
---|---|---|
committer | Maciej W. Rozycki <macro@linux-mips.org> | 2004-01-14 13:41:37 +0000 |
commit | f8b73030645dd99aaf83b856c7f8e7969889de3e (patch) | |
tree | cfe368ff27ca7408786d20ad0bbd6db6592521e4 /gas | |
parent | cb10e79a50a08ffb6d8345159d4ccd864458c105 (diff) | |
download | gdb-f8b73030645dd99aaf83b856c7f8e7969889de3e.zip gdb-f8b73030645dd99aaf83b856c7f8e7969889de3e.tar.gz gdb-f8b73030645dd99aaf83b856c7f8e7969889de3e.tar.bz2 |
* gettext.m4: Quote names of macros to be defined by AC_DEFUN
throughout.
* acinclude.m4: Quote names of macros to be defined by AC_DEFUN
throughout.
* aclocal.m4: Regenerate.
* configure: Regenerate.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 7 | ||||
-rw-r--r-- | gas/acinclude.m4 | 6 |
2 files changed, 10 insertions, 3 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index ec123aa..bacdec7 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,10 @@ +2004-01-14 Maciej W. Rozycki <macro@ds2.pg.gda.pl> + + * acinclude.m4: Quote names of macros to be defined by AC_DEFUN + throughout. + * aclocal.m4: Regenerate. + * configure: Regenerate. + 2004-01-12 Anil Paranjpe <anilp1@KPITCummins.com> * config/tc-h8300.c (build_bytes): Apply relaxation to bit diff --git a/gas/acinclude.m4 b/gas/acinclude.m4 index f16eefc..4a3ccf3 100644 --- a/gas/acinclude.m4 +++ b/gas/acinclude.m4 @@ -1,5 +1,5 @@ dnl GAS_CHECK_DECL_NEEDED(name, typedefname, typedef, headers) -AC_DEFUN(GAS_CHECK_DECL_NEEDED,[ +AC_DEFUN([GAS_CHECK_DECL_NEEDED],[ AC_MSG_CHECKING(whether declaration is required for $1) AC_CACHE_VAL(gas_cv_decl_needed_$1, AC_TRY_LINK([$4], @@ -19,7 +19,7 @@ dnl Some non-ANSI preprocessors botch requoting inside strings. That's bad dnl enough, but on some of those systems, the assert macro relies on requoting dnl working properly! dnl GAS_WORKING_ASSERT -AC_DEFUN(GAS_WORKING_ASSERT, +AC_DEFUN([GAS_WORKING_ASSERT], [AC_MSG_CHECKING([for working assert macro]) AC_CACHE_VAL(gas_cv_assert_ok, AC_TRY_LINK([#include <assert.h> @@ -39,7 +39,7 @@ dnl dnl Since many Bourne shell implementations lack subroutines, use this dnl hack to simplify the code in configure.in. dnl GAS_UNIQ(listvar) -AC_DEFUN(GAS_UNIQ, +AC_DEFUN([GAS_UNIQ], [_gas_uniq_list="[$]$1" _gas_uniq_newlist="" dnl Protect against empty input list. |