diff options
| author | Andrew Innes | 2002-01-04 14:05:10 +0000 |
|---|---|---|
| committer | Andrew Innes | 2002-01-04 14:05:10 +0000 |
| commit | 98cf1bb56303786161be0ba99b8ff6d9d02199b0 (patch) | |
| tree | 24fe79dbcf1ed672ebd7eb80d8060b9109289882 | |
| parent | 62993ed664a12445b789ecbf9c5647f16d07ba98 (diff) | |
| download | emacs-98cf1bb56303786161be0ba99b8ff6d9d02199b0.tar.gz emacs-98cf1bb56303786161be0ba99b8ff6d9d02199b0.zip | |
(CFLAGS): Define _WIN32_WINNT as 0x0400, in order to
pick up relevant bits of the Windows API definitions.
| -rw-r--r-- | nt/ChangeLog | 8 | ||||
| -rw-r--r-- | nt/gmake.defs | 2 | ||||
| -rw-r--r-- | nt/nmake.defs | 2 |
3 files changed, 10 insertions, 2 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog index 79d523d07f4..2f033315f8e 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2002-01-04 Andrew Innes <andrewi@gnu.org> | ||
| 2 | |||
| 3 | * gmake.defs (CFLAGS): Define _WIN32_WINNT as 0x0400, in order to | ||
| 4 | pick up relevant bits of the Windows API definitions. | ||
| 5 | |||
| 6 | * nmake.defs (CFLAGS): Define _WIN32_WINNT as 0x0400, in order to | ||
| 7 | pick up relevant bits of the Windows API definitions. | ||
| 8 | |||
| 1 | 2001-12-14 Andrew Innes <andrewi@gnu.org> | 9 | 2001-12-14 Andrew Innes <andrewi@gnu.org> |
| 2 | 10 | ||
| 3 | * makefile.w32-in (bootstrap): Build addsection program before | 11 | * makefile.w32-in (bootstrap): Build addsection program before |
diff --git a/nt/gmake.defs b/nt/gmake.defs index 583a054ca7c..d75239d30c6 100644 --- a/nt/gmake.defs +++ b/nt/gmake.defs | |||
| @@ -172,7 +172,7 @@ DEBUG_CFLAGS = -DEMACSDEBUG | |||
| 172 | else | 172 | else |
| 173 | DEBUG_CFLAGS = | 173 | DEBUG_CFLAGS = |
| 174 | endif | 174 | endif |
| 175 | CFLAGS = -I. -DWIN32_LEAN_AND_MEAN $(ARCH_CFLAGS) -D$(ARCH) \ | 175 | CFLAGS = -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 $(ARCH_CFLAGS) -D$(ARCH) \ |
| 176 | -D_CRTAPI1=_cdecl \ | 176 | -D_CRTAPI1=_cdecl \ |
| 177 | $(DEBUG_CFLAGS) $(USER_CFLAGS) $(LOCAL_FLAGS) | 177 | $(DEBUG_CFLAGS) $(USER_CFLAGS) $(LOCAL_FLAGS) |
| 178 | EMACS_EXTRA_C_FLAGS = -DUSE_CRT_DLL=1 | 178 | EMACS_EXTRA_C_FLAGS = -DUSE_CRT_DLL=1 |
diff --git a/nt/nmake.defs b/nt/nmake.defs index 79e5b599b3a..3c3e8b5bca2 100644 --- a/nt/nmake.defs +++ b/nt/nmake.defs | |||
| @@ -129,7 +129,7 @@ DEBUG_CFLAGS = -DEMACSDEBUG | |||
| 129 | !else | 129 | !else |
| 130 | DEBUG_CFLAGS = | 130 | DEBUG_CFLAGS = |
| 131 | !endif | 131 | !endif |
| 132 | CFLAGS = -I. -DWIN32_LEAN_AND_MEAN $(ARCH_CFLAGS) -D$(ARCH) \ | 132 | CFLAGS = -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 $(ARCH_CFLAGS) -D$(ARCH) \ |
| 133 | -D_CRTAPI1=_cdecl $(DEBUG_CFLAGS) $(USER_CFLAGS) $(LOCAL_FLAGS) | 133 | -D_CRTAPI1=_cdecl $(DEBUG_CFLAGS) $(USER_CFLAGS) $(LOCAL_FLAGS) |
| 134 | EMACS_EXTRA_C_FLAGS = | 134 | EMACS_EXTRA_C_FLAGS = |
| 135 | 135 | ||