From: Bruno Haible Date: Tue, 16 Aug 2005 11:42:57 +0000 (+0000) Subject: No longer need strcasecmp() and strncasecmp(). X-Git-Tag: v0.15~428 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ea14f8c829900738beffe1a4e1e29188e8d44b9d;p=thirdparty%2Fgettext.git No longer need strcasecmp() and strncasecmp(). --- diff --git a/gettext-tools/lib/ChangeLog b/gettext-tools/lib/ChangeLog index 546dbfe06..a125c2867 100644 --- a/gettext-tools/lib/ChangeLog +++ b/gettext-tools/lib/ChangeLog @@ -3,6 +3,9 @@ * strcase.h: Remove file. * strcasecmp.c: Remove file. * strncasecmp.c: Remove file. + * Makefile.am (LIBADD_SOURCE): Remove them. + * Makefile.msvc (OBJECTS): Remove strcasecmp.obj, strncasecmp.obj. + (strcasecmp.obj, strncasecmp.obj): Remove rules. 2005-07-31 Bruno Haible diff --git a/gettext-tools/lib/Makefile.am b/gettext-tools/lib/Makefile.am index 4ba7a5caa..8d96a65eb 100644 --- a/gettext-tools/lib/Makefile.am +++ b/gettext-tools/lib/Makefile.am @@ -99,7 +99,6 @@ LIBADD_SOURCE = \ setenv.h setenv.c unsetenv.c \ stpcpy.h stpcpy.c \ stpncpy.h stpncpy.c \ - strcase.h strcasecmp.c strncasecmp.c \ strcspn.c \ strerror.c \ strpbrk.h strpbrk.c \ diff --git a/gettext-tools/lib/Makefile.msvc b/gettext-tools/lib/Makefile.msvc index a1c956e00..d5d49977b 100644 --- a/gettext-tools/lib/Makefile.msvc +++ b/gettext-tools/lib/Makefile.msvc @@ -132,7 +132,6 @@ OBJECTS = \ setenv.obj unsetenv.obj \ stpcpy.obj \ stpncpy.obj \ - strcasecmp.obj strncasecmp.obj \ vasprintf.obj RESOURCES = gettextlib.res @@ -307,12 +306,6 @@ stpcpy.obj : stpcpy.c stpncpy.obj : stpncpy.c $(CC) $(INCLUDES) $(CFLAGS) $(PICFLAGS) -c stpncpy.c -strcasecmp.obj : strcasecmp.c - $(CC) $(INCLUDES) $(CFLAGS) $(PICFLAGS) -c strcasecmp.c - -strncasecmp.obj : strncasecmp.c - $(CC) $(INCLUDES) $(CFLAGS) $(PICFLAGS) -c strncasecmp.c - vasprintf.obj : vasprintf.c $(CC) $(INCLUDES) $(CFLAGS) $(PICFLAGS) -c vasprintf.c