]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix !ifdef in nmake.defs.
authorEli Zaretskii <eliz@gnu.org>
Tue, 20 Nov 2012 17:13:10 +0000 (19:13 +0200)
committerEli Zaretskii <eliz@gnu.org>
Tue, 20 Nov 2012 17:13:10 +0000 (19:13 +0200)
 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
nt/nmake.defs

index 42b04fd5d030493174431463cf0ea29888a03f2e..f11f1fc5fc5565c6eedfaef0c01033450435713c 100644 (file)
@@ -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>
index 48809afc7716dc50aae7501715f76a3ebbfc61f6..16a787ea30a2cbd2028c7622d62d68beacbba378 100644 (file)
@@ -116,7 +116,7 @@ RC_INCLUDE  = -i
 \r
 USE_CRT_DLL    = 1\r
 \r
-!ifdef USE_CRT_DLL\r
+!if USE_CRT_DLL\r
 libc           = msvcrt$(D).lib\r
 EMACS_EXTRA_C_FLAGS= -D_DLL -D_MT -DUSE_CRT_DLL=1\r
 !else\r