aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJuanma Barranquero2012-07-07 02:20:56 +0200
committerJuanma Barranquero2012-07-07 02:20:56 +0200
commit07adc2c63b17a5829879886901cb731483a469cd (patch)
treeeac3be41bbf371c67e34ee95181cabd2e73d09ae /lib
parent82fd0d8bed18ab961c9060325de4f17ed0ad94c9 (diff)
downloademacs-07adc2c63b17a5829879886901cb731483a469cd.tar.gz
emacs-07adc2c63b17a5829879886901cb731483a469cd.zip
Update Windows port to gnulib changes in 2012-07-06T21:07:46Z!eggert@cs.ucla.edu.
* lib-src/makefile.w32-in ($(BLD)/ctags.$(O), $(BLD)/etags.$(O)): Update dependencies. * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/c-ctype.$(O), $(BLD)/c-strcasecmp.$(O) and $(BLD)/c-strncasecmp.$(O). ($(BLD)/c-ctype.$(O), $(BLD)/c-strcasecmp.$(O)) ($(BLD)/c-strncasecmp.$(O)): New dependencies. * src/makefile.w32-in (DISPEXTERN_H, $(BLD)/regex.$(O)): Update dependencies. * src/s/ms-w32.h [_MSC_VER]: Remove strcasecmp, strncasecmp.
Diffstat (limited to 'lib')
-rw-r--r--lib/makefile.w32-in25
1 files changed, 24 insertions, 1 deletions
diff --git a/lib/makefile.w32-in b/lib/makefile.w32-in
index 78a0de0a0ef..f2853f10cb9 100644
--- a/lib/makefile.w32-in
+++ b/lib/makefile.w32-in
@@ -23,7 +23,10 @@ ALL = gnulib
23LOCAL_FLAGS = -I. -I../nt/inc -I../src 23LOCAL_FLAGS = -I. -I../nt/inc -I../src
24LIBS = 24LIBS =
25 25
26GNULIBOBJS = $(BLD)/dtoastr.$(O) \ 26GNULIBOBJS = $(BLD)/c-ctype.$(O) \
27 $(BLD)/c-strcasecmp.$(O) \
28 $(BLD)/c-strncasecmp.$(O) \
29 $(BLD)/dtoastr.$(O) \
27 $(BLD)/dtotimespec.$(O) \ 30 $(BLD)/dtotimespec.$(O) \
28 $(BLD)/getopt.$(O) \ 31 $(BLD)/getopt.$(O) \
29 $(BLD)/getopt1.$(O) \ 32 $(BLD)/getopt1.$(O) \
@@ -64,6 +67,26 @@ TAGS: FRC
64EMACS_ROOT = .. 67EMACS_ROOT = ..
65SRC = . 68SRC = .
66 69
70$(BLD)/c-ctype.$(O) : \
71 $(SRC)/c-ctype.c \
72 $(SRC)/c-ctype.h \
73 $(EMACS_ROOT)/src/s/ms-w32.h \
74 $(EMACS_ROOT)/src/config.h
75
76$(BLD)/c-strcasecmp.$(O) : \
77 $(SRC)/c-strcasecmp.c \
78 $(SRC)/c-strcase.h \
79 $(SRC)/c-ctype.h \
80 $(EMACS_ROOT)/src/s/ms-w32.h \
81 $(EMACS_ROOT)/src/config.h
82
83$(BLD)/c-strncasecmp.$(O) : \
84 $(SRC)/c-strncasecmp.c \
85 $(SRC)/c-strcase.h \
86 $(SRC)/c-ctype.h \
87 $(EMACS_ROOT)/src/s/ms-w32.h \
88 $(EMACS_ROOT)/src/config.h
89
67$(BLD)/dtoastr.$(O) : \ 90$(BLD)/dtoastr.$(O) : \
68 $(SRC)/dtoastr.c \ 91 $(SRC)/dtoastr.c \
69 $(SRC)/ftoastr.c \ 92 $(SRC)/ftoastr.c \