From 9aef4c1281d3adc1a348d802dc3a7d192006ae33 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Tue, 20 Nov 2012 19:13:10 +0200 Subject: [PATCH] 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. --- nt/ChangeLog | 4 ++++ nt/nmake.defs | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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 + * 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 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 -- 2.39.2