diff options
author | Bruno Haible <bruno@clisp.org> | 2001-10-20 15:25:46 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2001-10-20 15:25:46 +0000 |
commit | 5c80d751c5aed9b6bbaf2ad5dd3707cd94cde8a2 (patch) | |
tree | d3b7d33037817567529eea8bc1fd5724730fa16e /m4 | |
parent | aceb30443483bb6ce129bbba339b304922d64ab3 (diff) | |
download | external_gettext-5c80d751c5aed9b6bbaf2ad5dd3707cd94cde8a2.zip external_gettext-5c80d751c5aed9b6bbaf2ad5dd3707cd94cde8a2.tar.gz external_gettext-5c80d751c5aed9b6bbaf2ad5dd3707cd94cde8a2.tar.bz2 |
Assume strchr() exists.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/ChangeLog | 5 | ||||
-rw-r--r-- | m4/gettext.m4 | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/m4/ChangeLog b/m4/ChangeLog index c687e63..24f9f12 100644 --- a/m4/ChangeLog +++ b/m4/ChangeLog @@ -1,3 +1,8 @@ +2001-10-20 Bruno Haible <haible@clisp.cons.org> + + Assume strchr() exists. + * gettext.m4 (AM_GNU_GETTEXT): Remove check for strchr. + 2001-09-17 Bruno Haible <haible@clisp.cons.org> * backupfile.m4: New file. diff --git a/m4/gettext.m4 b/m4/gettext.m4 index 251d2d9..4362d8c 100644 --- a/m4/gettext.m4 +++ b/m4/gettext.m4 @@ -58,8 +58,8 @@ AC_DEFUN([AM_GNU_GETTEXT], AC_CHECK_HEADERS([argz.h limits.h locale.h nl_types.h malloc.h stddef.h \ stdlib.h string.h unistd.h sys/param.h]) AC_CHECK_FUNCS([feof_unlocked fgets_unlocked getcwd getegid geteuid \ -getgid getuid mempcpy munmap putenv setenv setlocale stpcpy strchr strcasecmp \ -strdup strtoul tsearch __argz_count __argz_stringify __argz_next]) +getgid getuid mempcpy munmap putenv setenv setlocale stpcpy strcasecmp strdup \ +strtoul tsearch __argz_count __argz_stringify __argz_next]) AM_ICONV AM_LANGINFO_CODESET |