diff options
author | Eli Zaretskii <eliz@gnu.org> | 2013-03-16 10:55:38 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2013-03-16 10:55:38 +0200 |
commit | 53761081f76cf7f6e341658ff9412fb4f41e9a74 (patch) | |
tree | 87f40b87e9fa62de41c909fe4cbf7b70817f0471 /nt/nmake.defs | |
parent | 12bc3154f5e8fc54e3cdcc977ff92896a44a7596 (diff) | |
download | emacs-53761081f76cf7f6e341658ff9412fb4f41e9a74.tar.gz |
Fix problems with MSVC build reported in bug #13939.
nt/inc/stdint.h (UINTPTR_MAX): Define.
nt/nmake.defs (libc): Fix syntax of !if conditional.
Diffstat (limited to 'nt/nmake.defs')
-rw-r--r-- | nt/nmake.defs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nt/nmake.defs b/nt/nmake.defs index 69e8bb67340..04a3f1660a8 100644 --- a/nt/nmake.defs +++ b/nt/nmake.defs @@ -117,7 +117,7 @@ RC_INCLUDE = -i USE_CRT_DLL = 1
-!if USE_CRT_DLL
+!if $(USE_CRT_DLL)
libc = msvcrt$(D).lib
EMACS_EXTRA_C_FLAGS= -D_DLL -D_MT -DUSE_CRT_DLL=1
!else
|