From: Bruno Haible Date: Tue, 16 Aug 2005 11:44:20 +0000 (+0000) Subject: strcase is no longer needed. X-Git-Tag: v0.15~427 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=63f7e23c4af6e33b8f9a511c9dafe4fba7ddae24;p=thirdparty%2Fgettext.git strcase is no longer needed. --- diff --git a/gettext-tools/m4/ChangeLog b/gettext-tools/m4/ChangeLog index 954e09d69..8fa0e5f38 100644 --- a/gettext-tools/m4/ChangeLog +++ b/gettext-tools/m4/ChangeLog @@ -1,3 +1,8 @@ +2005-08-16 Bruno Haible + + * strcase.m4: Remove file. + * Makefile.am (EXTRA_DIST): Remove it. + 2005-07-24 Bruno Haible Tidy up exported symbols. diff --git a/gettext-tools/m4/Makefile.am b/gettext-tools/m4/Makefile.am index 43ef0767f..30e3115f1 100644 --- a/gettext-tools/m4/Makefile.am +++ b/gettext-tools/m4/Makefile.am @@ -90,7 +90,6 @@ signalblocking.m4 \ ssize_t.m4 \ stdbool.m4 \ stpncpy.m4 \ -strcase.m4 \ strdup.m4 \ strerror.m4 \ strerror_r.m4 \ diff --git a/gettext-tools/m4/strcase.m4 b/gettext-tools/m4/strcase.m4 deleted file mode 100644 index 40ace46a7..000000000 --- a/gettext-tools/m4/strcase.m4 +++ /dev/null @@ -1,37 +0,0 @@ -# strcase.m4 serial 1 -dnl Copyright (C) 2002 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -AC_DEFUN([gl_STRCASE], -[ - gl_FUNC_STRCASECMP - gl_FUNC_STRNCASECMP -]) - -AC_DEFUN([gl_FUNC_STRCASECMP], -[ - AC_REPLACE_FUNCS(strcasecmp) - if test $ac_cv_func_strcasecmp = no; then - gl_PREREQ_STRCASECMP - fi -]) - -AC_DEFUN([gl_FUNC_STRNCASECMP], -[ - AC_REPLACE_FUNCS(strncasecmp) - if test $ac_cv_func_strncasecmp = no; then - gl_PREREQ_STRNCASECMP - fi -]) - -# Prerequisites of lib/strcasecmp.c. -AC_DEFUN([gl_PREREQ_STRCASECMP], [ - : -]) - -# Prerequisites of lib/strncasecmp.c. -AC_DEFUN([gl_PREREQ_STRNCASECMP], [ - : -])