From: Bruno Haible Date: Mon, 8 May 2006 13:32:32 +0000 (+0000) Subject: c-strcasecmp requires c-ctype. X-Git-Tag: v0.15~192 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=edc01386af2d6c85ef21f9a0c2efe098768a5918;p=thirdparty%2Fgettext.git c-strcasecmp requires c-ctype. --- diff --git a/gettext-runtime/lib/ChangeLog b/gettext-runtime/lib/ChangeLog index cb90a12e1..48824d3b6 100644 --- a/gettext-runtime/lib/ChangeLog +++ b/gettext-runtime/lib/ChangeLog @@ -1,3 +1,11 @@ +2006-05-07 Bruno Haible + + * Makefile.am (libgrt_a_SOURCES): Add c-ctype.h and c-ctype.c. + * Makefile.msvc (OBJECTS): Add c-ctype.obj. + (c-ctype.obj): New rule. + * Makefile.vms (OBJECTS): Add c-ctype.obj. + (c-ctype.obj): New rule. + 2006-04-02 Bruno Haible * Makefile.am (libgrt_a_SOURCES): Add c-strcase*, gettext.h, diff --git a/gettext-runtime/lib/Makefile.am b/gettext-runtime/lib/Makefile.am index 99eb13735..71a89994e 100644 --- a/gettext-runtime/lib/Makefile.am +++ b/gettext-runtime/lib/Makefile.am @@ -29,6 +29,7 @@ noinst_LIBRARIES = libgrt.a libgrt_a_SOURCES = \ ../../gettext-tools/lib/allocsa.h ../../gettext-tools/lib/allocsa.c \ ../../gettext-tools/lib/basename.h ../../gettext-tools/lib/basename.c \ + ../../gettext-tools/lib/c-ctype.h ../../gettext-tools/lib/c-ctype.c \ ../../gettext-tools/lib/c-strcase.h ../../gettext-tools/lib/c-strcasecmp.c \ ../../gettext-tools/lib/closeout.h ../../gettext-tools/lib/closeout.c \ ../../gettext-tools/lib/exit.h \ diff --git a/gettext-runtime/lib/Makefile.msvc b/gettext-runtime/lib/Makefile.msvc index 9f9c333ed..538333181 100644 --- a/gettext-runtime/lib/Makefile.msvc +++ b/gettext-runtime/lib/Makefile.msvc @@ -54,13 +54,16 @@ RM = -del SHELL = /bin/sh -OBJECTS = basename.obj c-strcasecmp.obj closeout.obj error.obj fwriteerror.obj getopt.obj getopt1.obj iconvstring.obj localcharset.obj progname.obj progreloc.obj propername.obj relocatable.obj xmalloc.obj xstrdup.obj +OBJECTS = basename.obj c-ctype.obj c-strcasecmp.obj closeout.obj error.obj fwriteerror.obj getopt.obj getopt1.obj iconvstring.obj localcharset.obj progname.obj progreloc.obj propername.obj relocatable.obj xmalloc.obj xstrdup.obj all : grt.lib basename.obj : ..\..\gettext-tools\lib\basename.c $(CC) $(INCLUDES) $(CFLAGS) -c ..\..\gettext-tools\lib\basename.c +c-ctype.obj : ..\..\gettext-tools\lib\c-ctype.c + $(CC) $(INCLUDES) $(CFLAGS) -c ..\..\gettext-tools\lib\c-ctype.c + c-strcasecmp.obj : ..\..\gettext-tools\lib\c-strcasecmp.c $(CC) $(INCLUDES) $(CFLAGS) -c ..\..\gettext-tools\lib\c-strcasecmp.c diff --git a/gettext-runtime/lib/Makefile.vms b/gettext-runtime/lib/Makefile.vms index 676ac5470..30209f9ba 100644 --- a/gettext-runtime/lib/Makefile.vms +++ b/gettext-runtime/lib/Makefile.vms @@ -32,7 +32,7 @@ RM = delete #### End of system configuration section. #### -OBJECTS = basename.obj,c-strcasecmp.obj,closeout.obj,error.obj,fwriteerror.obj,getopt.obj,getopt1.obj,iconvstring.obj,localcharset.obj,progname.obj,progreloc.obj,propername.obj,relocatable.obj,xmalloc.obj,xstrdup.obj +OBJECTS = basename.obj,c-ctype.obj,c-strcasecmp.obj,closeout.obj,error.obj,fwriteerror.obj,getopt.obj,getopt1.obj,iconvstring.obj,localcharset.obj,progname.obj,progreloc.obj,propername.obj,relocatable.obj,xmalloc.obj,xstrdup.obj all : grt.olb write sys$output "Nothing else to be done for 'all'." @@ -40,6 +40,9 @@ all : grt.olb basename.obj : [-.-.gettext-tools.lib]basename.c $(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) [-.-.gettext-tools.lib]basename.c +c-ctype.obj : [-.-.gettext-tools.lib]c-ctype.c + $(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) [-.-.gettext-tools.lib]c-ctype.c + c-strcasecmp.obj : [-.-.gettext-tools.lib]c-strcasecmp.c $(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) [-.-.gettext-tools.lib]c-strcasecmp.c