aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ChangeLog16
-rw-r--r--lib-src/makefile.w32-in2
-rw-r--r--lib-src/ntlib.c4
3 files changed, 16 insertions, 6 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index 0d7a0a4591e..2089a50d47b 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,13 +1,19 @@
12013-03-26 Eli Zaretskii <eliz@gnu.org>
2
3 Fix incompatibilities between MinGW.org and MinGW64 headers.
4 * ntlib.c (struct timespec) [!_TIMEZONE_DEFINED]: Define the
5 struct only if _TIMEZONE_DEFINED is not defined.
6
72013-03-23 cg <chengang31@gmail.com> (tiny change)
8
9 * makefile.w32-in (LIB_SRC): Move before first use.
10
12013-03-16 Paul Eggert <eggert@cs.ucla.edu> 112013-03-16 Paul Eggert <eggert@cs.ucla.edu>
2 12
3 * pop.c: Fix ERRMAX typo (Bug#13925). 13 * pop.c: Fix ERRMAX typo (Bug#13925).
4 (socket_connection) [!HAVE_KRB5_ERROR_TEXT && HAVE_KRB5_ERROR_E_TEXT]: 14 (socket_connection) [!HAVE_KRB5_ERROR_TEXT && HAVE_KRB5_ERROR_E_TEXT]:
5 Use ERROR_MAX, not ERRMAX. 15 Use ERROR_MAX, not ERRMAX.
6 16
72013-03-16 Glenn Morris <rgm@gnu.org>
8
9 * Version 24.3 released.
10
112013-03-13 Paul Eggert <eggert@cs.ucla.edu> 172013-03-13 Paul Eggert <eggert@cs.ucla.edu>
12 18
13 File synchronization fixes (Bug#13944). 19 File synchronization fixes (Bug#13944).
@@ -3718,7 +3724,7 @@
3718 3724
37192002-03-05 Francesco Potortì <pot@gnu.org> 37252002-03-05 Francesco Potortì <pot@gnu.org>
3720 3726
3721 * etags.c: Honour #line directives. 3727 * etags.c: Honor #line directives.
3722 (no_line_directive): New global var; set it for old behavior. 3728 (no_line_directive): New global var; set it for old behavior.
3723 (main): Remove some #ifdef in the getopt switch. 3729 (main): Remove some #ifdef in the getopt switch.
3724 (add_node, put_entries): Code added to merge different chunks of 3730 (add_node, put_entries): Code added to merge different chunks of
diff --git a/lib-src/makefile.w32-in b/lib-src/makefile.w32-in
index 8d016bc16be..5ec559ff985 100644
--- a/lib-src/makefile.w32-in
+++ b/lib-src/makefile.w32-in
@@ -27,6 +27,7 @@ LOCAL_FLAGS = -DNO_LDAV=1 -DNO_ARCHIVES=1 -I../lib \
27 -I../nt/inc -I../src $(EMACS_EXTRA_C_FLAGS) 27 -I../nt/inc -I../src $(EMACS_EXTRA_C_FLAGS)
28 28
29LIBS = $(BASE_LIBS) $(ADVAPI32) 29LIBS = $(BASE_LIBS) $(ADVAPI32)
30LIB_SRC = .
30 31
31# The following target is used by makefile.w32-in files in other directories. 32# The following target is used by makefile.w32-in files in other directories.
32make-docfile: $(BLD)/make-docfile.exe 33make-docfile: $(BLD)/make-docfile.exe
@@ -360,7 +361,6 @@ TAGS: $(BLD)/etags.exe *.c *.h
360### DEPENDENCIES ### 361### DEPENDENCIES ###
361 362
362EMACS_ROOT = .. 363EMACS_ROOT = ..
363LIB_SRC = .
364SRC = $(EMACS_ROOT)/src 364SRC = $(EMACS_ROOT)/src
365NT_INC = $(EMACS_ROOT)/nt/inc 365NT_INC = $(EMACS_ROOT)/nt/inc
366GNU_LIB = $(EMACS_ROOT)/lib 366GNU_LIB = $(EMACS_ROOT)/lib
diff --git a/lib-src/ntlib.c b/lib-src/ntlib.c
index f43117457cb..849abc2ede5 100644
--- a/lib-src/ntlib.c
+++ b/lib-src/ntlib.c
@@ -34,11 +34,15 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
34 34
35#include "ntlib.h" 35#include "ntlib.h"
36 36
37/* MinGW64 defines _TIMEZONE_DEFINED and defines 'struct timespec' in
38 its system headers. */
39#ifndef _TIMEZONE_DEFINED
37struct timezone 40struct timezone
38{ 41{
39 int tz_minuteswest; /* minutes west of Greenwich */ 42 int tz_minuteswest; /* minutes west of Greenwich */
40 int tz_dsttime; /* type of dst correction */ 43 int tz_dsttime; /* type of dst correction */
41}; 44};
45#endif
42 46
43#define MAXPATHLEN _MAX_PATH 47#define MAXPATHLEN _MAX_PATH
44 48