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/nmake.defs | |
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/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 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
|