diff options
author | Manish Singh <yosh@gimp.org> | 2004-01-28 02:46:30 +0000 |
---|---|---|
committer | Manish Singh <yosh@src.gnome.org> | 2004-01-28 02:46:30 +0000 |
commit | 0c5dee77e168e7c9d1a6c79b7dd95329b33e8984 (patch) | |
tree | 884601054e7a09ccaebdb3237f413cbf7d57a2ee /m4macros | |
parent | 326c025205a0b1beebf3cfb9c07d9b510fedc108 (diff) |
m4macros/glib-2.0.m4 quote AC_DEFUN macro names so automake 1.8 won't
Tue Jan 27 18:45:47 2004 Manish Singh <yosh@gimp.org>
* m4macros/glib-2.0.m4
* m4macros/glib-gettext.m4: quote AC_DEFUN macro names so automake
1.8 won't whine at us.
Diffstat (limited to 'm4macros')
-rw-r--r-- | m4macros/glib-2.0.m4 | 2 | ||||
-rw-r--r-- | m4macros/glib-gettext.m4 | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/m4macros/glib-2.0.m4 b/m4macros/glib-2.0.m4 index 28ccef4a5..13a3ce68f 100644 --- a/m4macros/glib-2.0.m4 +++ b/m4macros/glib-2.0.m4 @@ -5,7 +5,7 @@ dnl AM_PATH_GLIB_2_0([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [ dnl Test for GLIB, and define GLIB_CFLAGS and GLIB_LIBS, if gmodule, gobject or dnl gthread is specified in MODULES, pass to pkg-config dnl -AC_DEFUN(AM_PATH_GLIB_2_0, +AC_DEFUN([AM_PATH_GLIB_2_0], [dnl dnl Get the cflags and libraries from pkg-config dnl diff --git a/m4macros/glib-gettext.m4 b/m4macros/glib-gettext.m4 index 185736037..5a4ef2814 100644 --- a/m4macros/glib-gettext.m4 +++ b/m4macros/glib-gettext.m4 @@ -375,6 +375,6 @@ dnl dnl Now the definitions that aclocal will find dnl ifdef(glib_configure_in,[],[ -AC_DEFUN(AM_GLIB_GNU_GETTEXT,[GLIB_GNU_GETTEXT($@)]) -AC_DEFUN(AM_GLIB_DEFINE_LOCALEDIR,[GLIB_DEFINE_LOCALEDIR($@)]) +AC_DEFUN([AM_GLIB_GNU_GETTEXT],[GLIB_GNU_GETTEXT($@)]) +AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR],[GLIB_DEFINE_LOCALEDIR($@)]) ])dnl |