summaryrefslogtreecommitdiff
path: root/gas/acinclude.m4
diff options
context:
space:
mode:
authorMaciej W. Rozycki <macro@linux-mips.org>2004-01-14 13:41:37 +0000
committerMaciej W. Rozycki <macro@linux-mips.org>2004-01-14 13:41:37 +0000
commit91fff1a176ab6115c0e04655a80af699042bfd98 (patch)
tree6649b2b270f3dae9f77a1f40eec9f25b2697dc63 /gas/acinclude.m4
parenta6c66f33089a20440813fba81ef37cbc898c0ea0 (diff)
downloadbinutils-redhat-91fff1a176ab6115c0e04655a80af699042bfd98.tar.gz
* 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/acinclude.m4')
-rw-r--r--gas/acinclude.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/gas/acinclude.m4 b/gas/acinclude.m4
index f16eefc10f..4a3ccf358b 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.