summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorBernhard Rosenkraenzer <bero@arklinux.org>2002-03-13 13:37:47 +0000
committerBernhard Rosenkraenzer <bero@arklinux.org>2002-03-13 13:37:47 +0000
commitf599d897efdadc3ce5ee56ca2272ab931efae881 (patch)
tree59598398f6ece925daafd2f654388932c42bb192 /m4
parent0325265f0d2503c035e8c69e9324e1bbfd7ddb46 (diff)
downloadgrep-f599d897efdadc3ce5ee56ca2272ab931efae881.tar.gz
gettext 0.11, autoconf 2.53
* configure.in, m4/regex.m4, m4/malloc.m4, m4/realloc.m4: Don't set LIBOBJS directly, autoconf 2.53 doesn't like it * intl/*: Sync with gettext 0.11
Diffstat (limited to 'm4')
-rw-r--r--m4/malloc.m43
-rw-r--r--m4/realloc.m43
-rw-r--r--m4/regex.m43
3 files changed, 3 insertions, 6 deletions
diff --git a/m4/malloc.m4 b/m4/malloc.m4
index 4978eaf6..2f00142d 100644
--- a/m4/malloc.m4
+++ b/m4/malloc.m4
@@ -27,8 +27,7 @@ AC_DEFUN(jm_FUNC_MALLOC,
jm_cv_func_working_malloc=no)
])
if test $jm_cv_func_working_malloc = no; then
- AC_SUBST(LIBOBJS)
- LIBOBJS="$LIBOBJS malloc.$ac_objext"
+ AC_LIBOBJ(malloc)
AC_DEFINE_UNQUOTED(malloc, rpl_malloc,
[Define to rpl_malloc if the replacement function should be used.])
fi
diff --git a/m4/realloc.m4 b/m4/realloc.m4
index bfbef0c1..ff250463 100644
--- a/m4/realloc.m4
+++ b/m4/realloc.m4
@@ -27,8 +27,7 @@ AC_DEFUN(jm_FUNC_REALLOC,
jm_cv_func_working_realloc=no)
])
if test $jm_cv_func_working_realloc = no; then
- AC_SUBST(LIBOBJS)
- LIBOBJS="$LIBOBJS realloc.$ac_objext"
+ AC_LIBOBJ(realloc)
AC_DEFINE_UNQUOTED(realloc, rpl_realloc,
[Define to rpl_realloc if the replacement function should be used.])
fi
diff --git a/m4/regex.m4 b/m4/regex.m4
index 3012a669..56df3186 100644
--- a/m4/regex.m4
+++ b/m4/regex.m4
@@ -66,8 +66,7 @@ AC_DEFUN(jm_INCLUDED_REGEX,
jm_with_regex=$withval,
jm_with_regex=$ac_use_included_regex)
if test "$jm_with_regex" = yes; then
- AC_SUBST(LIBOBJS)
- LIBOBJS="$LIBOBJS regex.$ac_objext"
+ AC_LIBOBJ(regex)
fi
],
)