]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
strcase is no longer needed.
authorBruno Haible <bruno@clisp.org>
Tue, 16 Aug 2005 11:44:20 +0000 (11:44 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:12:47 +0000 (12:12 +0200)
gettext-tools/m4/ChangeLog
gettext-tools/m4/Makefile.am
gettext-tools/m4/strcase.m4 [deleted file]

index 954e09d6948aa824a1e2e37965ac01350c92b0d2..8fa0e5f388b0179b4f14af02953df424a652ae3f 100644 (file)
@@ -1,3 +1,8 @@
+2005-08-16  Bruno Haible  <bruno@clisp.org>
+
+       * strcase.m4: Remove file.
+       * Makefile.am (EXTRA_DIST): Remove it.
+
 2005-07-24  Bruno Haible  <bruno@clisp.org>
 
        Tidy up exported symbols.
index 43ef0767f7f5b2c7ae7df5ab2e90d049369e2b11..30e3115f1ff7d7e0e6babc1c2bb2866261484f4a 100644 (file)
@@ -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 (file)
index 40ace46..0000000
+++ /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], [
-  :
-])