diff options
author | Eli Zaretskii <eliz@gnu.org> | 2012-11-20 19:13:10 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2012-11-20 19:13:10 +0200 |
commit | 9aef4c1281d3adc1a348d802dc3a7d192006ae33 (patch) | |
tree | 355f39a3e84f585955c6fcb88febc5e45083bc72 /nt | |
parent | 3b0108c5ba5d2bae34877a7cf499a84f814c22ee (diff) | |
download | emacs-9aef4c1281d3adc1a348d802dc3a7d192006ae33.tar.gz |
Fix !ifdef in nmake.defs.
nt/nmake.defs: Use !if, not !ifdef. See
http://lists.gnu.org/archive/html/help-emacs-windows/2012-11/msg00027.html
for the details.
Diffstat (limited to 'nt')
-rw-r--r-- | nt/ChangeLog | 4 | ||||
-rw-r--r-- | nt/nmake.defs | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog index 42b04fd5d03..f11f1fc5fc5 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog @@ -1,5 +1,9 @@ 2012-11-20 Eli Zaretskii <eliz@gnu.org> + * nmake.defs: Use !if, not !ifdef. See + http://lists.gnu.org/archive/html/help-emacs-windows/2012-11/msg00027.html + for the details. + * inc/stdint.h (INTPTR_MIN): Define for MSVC. 2012-11-19 Eli Zaretskii <eliz@gnu.org> diff --git a/nt/nmake.defs b/nt/nmake.defs index 48809afc771..16a787ea30a 100644 --- a/nt/nmake.defs +++ b/nt/nmake.defs @@ -116,7 +116,7 @@ RC_INCLUDE = -i USE_CRT_DLL = 1
-!ifdef USE_CRT_DLL
+!if USE_CRT_DLL
libc = msvcrt$(D).lib
EMACS_EXTRA_C_FLAGS= -D_DLL -D_MT -DUSE_CRT_DLL=1
!else
|