aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2012-10-08 16:37:04 +0200
committerJuanma Barranquero2012-10-08 16:37:04 +0200
commit46979e0b4ecceaf0676f0b9237e70c64fdc5b479 (patch)
treebe9d9652236e20bc94029c7c5972402c893a67da
parentfd5125adfe80551fd9496c78550fac0368e0ce15 (diff)
downloademacs-46979e0b4ecceaf0676f0b9237e70c64fdc5b479.tar.gz
emacs-46979e0b4ecceaf0676f0b9237e70c64fdc5b479.zip
src/makefile.w32-in: Update dependencies.
-rw-r--r--src/ChangeLog3
-rw-r--r--src/makefile.w32-in10
2 files changed, 8 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 1bf35dfcc85..122e0d19655 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -2,6 +2,9 @@
2 2
3 * makefile.w32-in (LOCAL_FLAGS): Don't define HAVE_NTGUI, it's now 3 * makefile.w32-in (LOCAL_FLAGS): Don't define HAVE_NTGUI, it's now
4 in nt/config.nt. 4 in nt/config.nt.
5 (FONT_H): Define after FRAME_H.
6 ($(BLD)/emacs.$(O), $(BLD)/process.$(O), $(BLD)/w32heap.$(O)):
7 Update dependencies.
5 8
6 * w32term.c: Remove leftover declaration of keyboard_codepage. 9 * w32term.c: Remove leftover declaration of keyboard_codepage.
7 10
diff --git a/src/makefile.w32-in b/src/makefile.w32-in
index 8e0e1d23dfd..2ff56fbb8f8 100644
--- a/src/makefile.w32-in
+++ b/src/makefile.w32-in
@@ -423,11 +423,11 @@ DISPEXTERN_H = $(SRC)/dispextern.h \
423 $(W32GUI_H) 423 $(W32GUI_H)
424FILEMODE_H = $(GNU_LIB)/filemode.h \ 424FILEMODE_H = $(GNU_LIB)/filemode.h \
425 $(NT_INC)/sys/stat.h 425 $(NT_INC)/sys/stat.h
426FONT_H = $(SRC)/font.h \
427 $(FRAME_H) \
428 $(CCL_H)
429FRAME_H = $(SRC)/frame.h \ 426FRAME_H = $(SRC)/frame.h \
430 $(DISPEXTERN_H) 427 $(DISPEXTERN_H)
428FONT_H = $(SRC)/font.h \
429 $(CCL_H) \
430 $(FRAME_H)
431FTOASTR_H = $(GNU_LIB)/ftoastr.h \ 431FTOASTR_H = $(GNU_LIB)/ftoastr.h \
432 $(GNU_LIB)/intprops.h 432 $(GNU_LIB)/intprops.h
433GRP_H = $(NT_INC)/grp.h \ 433GRP_H = $(NT_INC)/grp.h \
@@ -800,7 +800,6 @@ $(BLD)/emacs.$(O) : \
800 $(SRC)/w32.h \ 800 $(SRC)/w32.h \
801 $(SRC)/w32heap.h \ 801 $(SRC)/w32heap.h \
802 $(SRC)/w32select.h \ 802 $(SRC)/w32select.h \
803 $(SRC)/w32font.h \
804 $(NT_INC)/sys/file.h \ 803 $(NT_INC)/sys/file.h \
805 $(NT_INC)/unistd.h \ 804 $(NT_INC)/unistd.h \
806 $(GNU_LIB)/ignore-value.h \ 805 $(GNU_LIB)/ignore-value.h \
@@ -816,6 +815,7 @@ $(BLD)/emacs.$(O) : \
816 $(SYSSIGNAL_H) \ 815 $(SYSSIGNAL_H) \
817 $(SYSTTY_H) \ 816 $(SYSTTY_H) \
818 $(TERMHOOKS_H) \ 817 $(TERMHOOKS_H) \
818 $(W32FONT_H) \
819 $(W32TERM_H) \ 819 $(W32TERM_H) \
820 $(WINDOW_H) 820 $(WINDOW_H)
821 821
@@ -1190,8 +1190,8 @@ $(BLD)/w32.$(O) : \
1190 1190
1191$(BLD)/w32heap.$(O) : \ 1191$(BLD)/w32heap.$(O) : \
1192 $(SRC)/w32heap.c \ 1192 $(SRC)/w32heap.c \
1193 $(SRC)/w32heap.h \
1194 $(SRC)/w32common.h \ 1193 $(SRC)/w32common.h \
1194 $(SRC)/w32heap.h \
1195 $(CONFIG_H) \ 1195 $(CONFIG_H) \
1196 $(LISP_H) 1196 $(LISP_H)
1197 1197