diff options
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 10 | ||||
| -rw-r--r-- | lib-src/makefile.w32-in | 6 | ||||
| -rw-r--r-- | lib-src/movemail.c | 2 | ||||
| -rw-r--r-- | lib-src/update-game-score.c | 2 |
4 files changed, 14 insertions, 6 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 03cddc6a035..926297b6dd3 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,13 @@ | |||
| 1 | 2012-11-17 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * makefile.w32-in (SYSWAIT_H): New macro. | ||
| 4 | ($(BLD)/movemail.$(O)): Update dependencies. | ||
| 5 | |||
| 6 | 2012-11-17 Paul Eggert <eggert@cs.ucla.edu> | ||
| 7 | |||
| 8 | Assume POSIX 1003.1-1988 or later for fcntl.h (Bug#12881). | ||
| 9 | * movemail.c, update-game-score.c: Assume <fcntl.h> exists. | ||
| 10 | |||
| 1 | 2012-10-26 Glenn Morris <rgm@gnu.org> | 11 | 2012-10-26 Glenn Morris <rgm@gnu.org> |
| 2 | 12 | ||
| 3 | * Makefile.in (uninstall): No INSTALLABLES live in archlibdir. | 13 | * Makefile.in (uninstall): No INSTALLABLES live in archlibdir. |
diff --git a/lib-src/makefile.w32-in b/lib-src/makefile.w32-in index f3ab4421fd3..cbd29f32cfe 100644 --- a/lib-src/makefile.w32-in +++ b/lib-src/makefile.w32-in | |||
| @@ -374,6 +374,8 @@ NTLIB_H = $(LIB_SRC)/ntlib.h \ | |||
| 374 | SYSTIME_H = $(SRC)/systime.h \ | 374 | SYSTIME_H = $(SRC)/systime.h \ |
| 375 | $(NT_INC)/sys/time.h \ | 375 | $(NT_INC)/sys/time.h \ |
| 376 | $(GNU_LIB)/timespec.h | 376 | $(GNU_LIB)/timespec.h |
| 377 | SYSWAIT_H = $(SRC)/syswait.h \ | ||
| 378 | $(NT_INC)/sys/wait.h | ||
| 377 | 379 | ||
| 378 | $(BLD)/ctags.$(O) : \ | 380 | $(BLD)/ctags.$(O) : \ |
| 379 | $(LIB_SRC)/ctags.c \ | 381 | $(LIB_SRC)/ctags.c \ |
| @@ -419,14 +421,14 @@ $(BLD)/make-docfile.$(O) : \ | |||
| 419 | $(BLD)/movemail.$(O) : \ | 421 | $(BLD)/movemail.$(O) : \ |
| 420 | $(LIB_SRC)/movemail.c \ | 422 | $(LIB_SRC)/movemail.c \ |
| 421 | $(LIB_SRC)/pop.h \ | 423 | $(LIB_SRC)/pop.h \ |
| 422 | $(SRC)/syswait.h \ | ||
| 423 | $(NT_INC)/pwd.h \ | 424 | $(NT_INC)/pwd.h \ |
| 424 | $(NT_INC)/sys/file.h \ | 425 | $(NT_INC)/sys/file.h \ |
| 425 | $(NT_INC)/sys/stat.h \ | 426 | $(NT_INC)/sys/stat.h \ |
| 426 | $(NT_INC)/unistd.h \ | 427 | $(NT_INC)/unistd.h \ |
| 427 | $(GNU_LIB)/getopt.h \ | 428 | $(GNU_LIB)/getopt.h \ |
| 428 | $(CONFIG_H) \ | 429 | $(CONFIG_H) \ |
| 429 | $(NTLIB_H) | 430 | $(NTLIB_H) \ |
| 431 | $(SYSWAIT_H) | ||
| 430 | 432 | ||
| 431 | $(BLD)/ntlib.$(O) : \ | 433 | $(BLD)/ntlib.$(O) : \ |
| 432 | $(LIB_SRC)/ntlib.c \ | 434 | $(LIB_SRC)/ntlib.c \ |
diff --git a/lib-src/movemail.c b/lib-src/movemail.c index 32d32e69abf..cd329a110a8 100644 --- a/lib-src/movemail.c +++ b/lib-src/movemail.c | |||
| @@ -65,9 +65,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 65 | 65 | ||
| 66 | #include <getopt.h> | 66 | #include <getopt.h> |
| 67 | #include <unistd.h> | 67 | #include <unistd.h> |
| 68 | #ifdef HAVE_FCNTL_H | ||
| 69 | #include <fcntl.h> | 68 | #include <fcntl.h> |
| 70 | #endif | ||
| 71 | #include <string.h> | 69 | #include <string.h> |
| 72 | #include "syswait.h" | 70 | #include "syswait.h" |
| 73 | #ifdef MAIL_USE_POP | 71 | #ifdef MAIL_USE_POP |
diff --git a/lib-src/update-game-score.c b/lib-src/update-game-score.c index 40397536fad..59cab61aa29 100644 --- a/lib-src/update-game-score.c +++ b/lib-src/update-game-score.c | |||
| @@ -42,9 +42,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 42 | #include <time.h> | 42 | #include <time.h> |
| 43 | #include <pwd.h> | 43 | #include <pwd.h> |
| 44 | #include <ctype.h> | 44 | #include <ctype.h> |
| 45 | #ifdef HAVE_FCNTL_H | ||
| 46 | #include <fcntl.h> | 45 | #include <fcntl.h> |
| 47 | #endif | ||
| 48 | #include <sys/stat.h> | 46 | #include <sys/stat.h> |
| 49 | #include <getopt.h> | 47 | #include <getopt.h> |
| 50 | 48 | ||