diff options
| author | Joakim Verona | 2012-12-08 11:07:15 +0100 |
|---|---|---|
| committer | Joakim Verona | 2012-12-08 11:07:15 +0100 |
| commit | 51a4c809edd50dbd3624b588c0cb7770e4580c66 (patch) | |
| tree | 5529966cbd8d9d294911169bce1606701d719bcd | |
| parent | 9cf1feea700673a74717ce0e6a5ceec6c6979b61 (diff) | |
| parent | 63999a7dbed8d493e2efc3411c2403483d8d71bf (diff) | |
| download | emacs-51a4c809edd50dbd3624b588c0cb7770e4580c66.tar.gz emacs-51a4c809edd50dbd3624b588c0cb7770e4580c66.zip | |
auto upstream
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | lib/makefile.w32-in | 9 |
2 files changed, 14 insertions, 1 deletions
| @@ -1,3 +1,9 @@ | |||
| 1 | 2012-12-08 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * lib/makefile.w32-in ($(BLD)/sig2str.$(O)): New dependency. | ||
| 4 | Remove a stray character at the beginning of the file. | ||
| 5 | (Bug#13026) | ||
| 6 | |||
| 1 | 2012-12-08 Paul Eggert <eggert@cs.ucla.edu> | 7 | 2012-12-08 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 8 | ||
| 3 | Simplify get_lim_data. | 9 | Simplify get_lim_data. |
diff --git a/lib/makefile.w32-in b/lib/makefile.w32-in index 348fe911a2a..b27e21032b3 100644 --- a/lib/makefile.w32-in +++ b/lib/makefile.w32-in | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | 2# -*- Makefile -*- for GNU Emacs on the Microsoft Windows API. | 1 | # -*- Makefile -*- for GNU Emacs on the Microsoft Windows API. |
| 2 | # Copyright (C) 2011-2012 Free Software Foundation, Inc. | 2 | # Copyright (C) 2011-2012 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | # This file is part of GNU Emacs. | 4 | # This file is part of GNU Emacs. |
| @@ -240,6 +240,13 @@ $(BLD)/filemode.$(O) : \ | |||
| 240 | $(CONFIG_H) \ | 240 | $(CONFIG_H) \ |
| 241 | $(FILEMODE_H) | 241 | $(FILEMODE_H) |
| 242 | 242 | ||
| 243 | $(BLD)/sig2str.$(O) : \ | ||
| 244 | $(GNU_LIB)/sig2str.c \ | ||
| 245 | $(CONFIG_H) \ | ||
| 246 | $(GNU_LIB)/sig2str.h \ | ||
| 247 | $(GNU_LIB)/intprops.h | ||
| 248 | |||
| 249 | |||
| 243 | # The following dependencies are for supporting parallel builds, where | 250 | # The following dependencies are for supporting parallel builds, where |
| 244 | # we must make sure $(BLD) exists before any compilation starts. | 251 | # we must make sure $(BLD) exists before any compilation starts. |
| 245 | # | 252 | # |