From: Bruno Haible Date: Sun, 11 Mar 2001 18:55:44 +0000 (+0000) Subject: Use the included strcasecmp function on platforms that lack it. X-Git-Tag: v0.10.36~57 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=70125242e491c6c4c9a17bf58565f187e38f00b2;p=thirdparty%2Fgettext.git Use the included strcasecmp function on platforms that lack it. --- diff --git a/ChangeLog b/ChangeLog index 6ccb91e40..295a13b76 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-03-11 Bruno Haible + + * configure.in: Add AC_REPLACE_FUNCS(strcasecmp). Needed for EMX. + 2001-03-11 Bruno Haible * configure.in: Use AM_FUNC_GETLINE instead of diff --git a/configure.in b/configure.in index 6ed747afb..538e23305 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.18 $) +AC_REVISION($Revision: 1.19 $) AC_INIT(src/msgfmt.c) AM_INIT_AUTOMAKE(gettext, 0.10.36) RELEASE_DATE=2001-03-09 dnl in "date +%Y-%m-%d" format @@ -51,7 +51,7 @@ AC_FUNC_ALLOCA AC_FUNC_VPRINTF AC_CHECK_FUNCS([getcwd mblen memcpy strchr strerror uname]) AC_REPLACE_FUNCS([memmove memset stpcpy stpncpy strcspn \ -strncasecmp strstr strtoul vasprintf]) +strcasecmp strncasecmp strstr strtoul vasprintf]) AM_FUNC_GETLINE if test $am_cv_func_working_getline != yes; then AC_CHECK_FUNCS(getdelim)