diff options
| author | Eli Zaretskii | 2012-10-08 15:31:14 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2012-10-08 15:31:14 +0200 |
| commit | 15c720a3607ccbac1a5ff4bd10810f9342db0ad1 (patch) | |
| tree | ef2f71d753423bfba755a54d119f82d91fa8f6e1 /src | |
| parent | 501199a3dbccc83f91a561c6664ae4c1d3dde20a (diff) | |
| download | emacs-15c720a3607ccbac1a5ff4bd10810f9342db0ad1.tar.gz emacs-15c720a3607ccbac1a5ff4bd10810f9342db0ad1.zip | |
Fix w32 dependencies due to introduction of w32common.h.
src/makefile.w32-in ($(BLD)/unexw32.$(O)):
($(BLD)/w32.$(O)):
($(BLD)/w32console.$(O)):
($(BLD)/w32fns.$(O)):
($(BLD)/w32heap.$(O)):
($(BLD)/w32menu.$(O)):
($(BLD)/w32proc.$(O)): Add w32common.h.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 7 | ||||
| -rw-r--r-- | src/makefile.w32-in | 11 |
2 files changed, 15 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index b252f5deef8..44e6f18922c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -4,6 +4,13 @@ | |||
| 4 | (W32TERM_H): Add $(ATIMER_H) and $(FRAME_H). | 4 | (W32TERM_H): Add $(ATIMER_H) and $(FRAME_H). |
| 5 | ($(BLD)/emacs.$(O), $(BLD)/w32console.$(O)): Update dependencies. | 5 | ($(BLD)/emacs.$(O), $(BLD)/w32console.$(O)): Update dependencies. |
| 6 | (GLOBAL_SOURCES): Add cygw32.c. | 6 | (GLOBAL_SOURCES): Add cygw32.c. |
| 7 | ($(BLD)/unexw32.$(O)): | ||
| 8 | ($(BLD)/w32.$(O)): | ||
| 9 | ($(BLD)/w32console.$(O)): | ||
| 10 | ($(BLD)/w32fns.$(O)): | ||
| 11 | ($(BLD)/w32heap.$(O)): | ||
| 12 | ($(BLD)/w32menu.$(O)): | ||
| 13 | ($(BLD)/w32proc.$(O)): Add w32common.h. | ||
| 7 | 14 | ||
| 8 | * w32fns.c (w32_color_map_lookup, x_to_w32_color): Argument is now | 15 | * w32fns.c (w32_color_map_lookup, x_to_w32_color): Argument is now |
| 9 | 'const char *'. | 16 | 'const char *'. |
diff --git a/src/makefile.w32-in b/src/makefile.w32-in index 120fda9ec43..66127d5ba6a 100644 --- a/src/makefile.w32-in +++ b/src/makefile.w32-in | |||
| @@ -1172,6 +1172,7 @@ $(BLD)/w32.$(O) : \ | |||
| 1172 | $(SRC)/w32.c \ | 1172 | $(SRC)/w32.c \ |
| 1173 | $(SRC)/ndir.h \ | 1173 | $(SRC)/ndir.h \ |
| 1174 | $(SRC)/w32.h \ | 1174 | $(SRC)/w32.h \ |
| 1175 | $(SRC)/w32common.h \ | ||
| 1175 | $(SRC)/w32heap.h \ | 1176 | $(SRC)/w32heap.h \ |
| 1176 | $(NT_INC)/pwd.h \ | 1177 | $(NT_INC)/pwd.h \ |
| 1177 | $(NT_INC)/sys/file.h \ | 1178 | $(NT_INC)/sys/file.h \ |
| @@ -1190,6 +1191,7 @@ $(BLD)/w32.$(O) : \ | |||
| 1190 | $(BLD)/w32heap.$(O) : \ | 1191 | $(BLD)/w32heap.$(O) : \ |
| 1191 | $(SRC)/w32heap.c \ | 1192 | $(SRC)/w32heap.c \ |
| 1192 | $(SRC)/w32heap.h \ | 1193 | $(SRC)/w32heap.h \ |
| 1194 | $(SRC)/w32common.h \ | ||
| 1193 | $(CONFIG_H) \ | 1195 | $(CONFIG_H) \ |
| 1194 | $(LISP_H) | 1196 | $(LISP_H) |
| 1195 | 1197 | ||
| @@ -1212,6 +1214,7 @@ $(BLD)/w32proc.$(O) : \ | |||
| 1212 | $(SRC)/w32proc.c \ | 1214 | $(SRC)/w32proc.c \ |
| 1213 | $(SRC)/syswait.h \ | 1215 | $(SRC)/syswait.h \ |
| 1214 | $(SRC)/w32.h \ | 1216 | $(SRC)/w32.h \ |
| 1217 | $(SRC)/w32common.h \ | ||
| 1215 | $(SRC)/w32heap.h \ | 1218 | $(SRC)/w32heap.h \ |
| 1216 | $(NT_INC)/nl_types.h \ | 1219 | $(NT_INC)/nl_types.h \ |
| 1217 | $(NT_INC)/sys/file.h \ | 1220 | $(NT_INC)/sys/file.h \ |
| @@ -1229,7 +1232,7 @@ $(BLD)/w32console.$(O) : \ | |||
| 1229 | $(SRC)/w32console.c \ | 1232 | $(SRC)/w32console.c \ |
| 1230 | $(SRC)/disptab.h \ | 1233 | $(SRC)/disptab.h \ |
| 1231 | $(SRC)/termchar.h \ | 1234 | $(SRC)/termchar.h \ |
| 1232 | $(SRC)/w32heap.h \ | 1235 | $(SRC)/w32common.h \ |
| 1233 | $(SRC)/w32inevt.h \ | 1236 | $(SRC)/w32inevt.h \ |
| 1234 | $(CHARACTER_H) \ | 1237 | $(CHARACTER_H) \ |
| 1235 | $(CODING_H) \ | 1238 | $(CODING_H) \ |
| @@ -1467,6 +1470,7 @@ $(BLD)/undo.$(O) : \ | |||
| 1467 | $(BLD)/unexw32.$(O) : \ | 1470 | $(BLD)/unexw32.$(O) : \ |
| 1468 | $(SRC)/unexw32.c \ | 1471 | $(SRC)/unexw32.c \ |
| 1469 | $(SRC)/unexec.h \ | 1472 | $(SRC)/unexec.h \ |
| 1473 | $(SRC)/w32common.h \ | ||
| 1470 | $(SRC)/w32heap.h \ | 1474 | $(SRC)/w32heap.h \ |
| 1471 | $(CONFIG_H) | 1475 | $(CONFIG_H) |
| 1472 | 1476 | ||
| @@ -1553,6 +1557,7 @@ $(BLD)/w32fns.$(O) : \ | |||
| 1553 | $(SRC)/epaths.h \ | 1557 | $(SRC)/epaths.h \ |
| 1554 | $(SRC)/fontset.h \ | 1558 | $(SRC)/fontset.h \ |
| 1555 | $(SRC)/w32.h \ | 1559 | $(SRC)/w32.h \ |
| 1560 | $(SRC)/w32common.h \ | ||
| 1556 | $(SRC)/w32heap.h \ | 1561 | $(SRC)/w32heap.h \ |
| 1557 | $(BUFFER_H) \ | 1562 | $(BUFFER_H) \ |
| 1558 | $(CCL_H) \ | 1563 | $(CCL_H) \ |
| @@ -1576,7 +1581,7 @@ $(BLD)/w32menu.$(O) : \ | |||
| 1576 | $(SRC)/w32menu.c \ | 1581 | $(SRC)/w32menu.c \ |
| 1577 | $(SRC)/blockinput.h \ | 1582 | $(SRC)/blockinput.h \ |
| 1578 | $(SRC)/keymap.h \ | 1583 | $(SRC)/keymap.h \ |
| 1579 | $(SRC)/w32heap.h \ | 1584 | $(SRC)/w32common.h \ |
| 1580 | $(BUFFER_H) \ | 1585 | $(BUFFER_H) \ |
| 1581 | $(CHARACTER_H) \ | 1586 | $(CHARACTER_H) \ |
| 1582 | $(CHARSET_H) \ | 1587 | $(CHARSET_H) \ |
| @@ -1626,7 +1631,7 @@ $(BLD)/w32select.$(O) : \ | |||
| 1626 | $(SRC)/w32select.c \ | 1631 | $(SRC)/w32select.c \ |
| 1627 | $(SRC)/blockinput.h \ | 1632 | $(SRC)/blockinput.h \ |
| 1628 | $(SRC)/composite.h \ | 1633 | $(SRC)/composite.h \ |
| 1629 | $(SRC)/w32heap.h \ | 1634 | $(SRC)/w32common.h \ |
| 1630 | $(CHARSET_H) \ | 1635 | $(CHARSET_H) \ |
| 1631 | $(CODING_H) \ | 1636 | $(CODING_H) \ |
| 1632 | $(CONFIG_H) \ | 1637 | $(CONFIG_H) \ |