summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2001-03-11 17:45:56 +0000
committerBruno Haible <bruno@clisp.org>2001-03-11 17:45:56 +0000
commit74632c82ae900d30941904144fcccf8751ddf0f8 (patch)
tree7ea320a4f4ee3951274227a29658b4a02991b052 /configure.in
parent90aa38be0e6761fb2d731daad2e32345ede3bd9b (diff)
downloadexternal_gettext-74632c82ae900d30941904144fcccf8751ddf0f8.zip
external_gettext-74632c82ae900d30941904144fcccf8751ddf0f8.tar.gz
external_gettext-74632c82ae900d30941904144fcccf8751ddf0f8.tar.bz2
Don't use the undocumented 'getline' function on HP-UX.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in7
1 files changed, 4 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index bd6dd50..6ed747a 100644
--- a/configure.in
+++ b/configure.in
@@ -1,6 +1,6 @@
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.13)
-AC_REVISION($Revision: 1.17 $)
+AC_REVISION($Revision: 1.18 $)
AC_INIT(src/msgfmt.c)
AM_INIT_AUTOMAKE(gettext, 0.10.36)
RELEASE_DATE=2001-03-09 dnl in "date +%Y-%m-%d" format
@@ -50,9 +50,10 @@ dnl Checks for library functions.
AC_FUNC_ALLOCA
AC_FUNC_VPRINTF
AC_CHECK_FUNCS([getcwd mblen memcpy strchr strerror uname])
-AC_REPLACE_FUNCS([getline memmove memset stpcpy stpncpy strcspn \
+AC_REPLACE_FUNCS([memmove memset stpcpy stpncpy strcspn \
strncasecmp strstr strtoul vasprintf])
-if test $ac_cv_func_getline != yes; then
+AM_FUNC_GETLINE
+if test $am_cv_func_working_getline != yes; then
AC_CHECK_FUNCS(getdelim)
fi