emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r110926: Fix !ifdef in nmake.defs.


From: Eli Zaretskii
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r110926: Fix !ifdef in nmake.defs.
Date: Tue, 20 Nov 2012 19:13:10 +0200
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 110926
committer: Eli Zaretskii <address@hidden>
branch nick: emacs-24
timestamp: Tue 2012-11-20 19:13:10 +0200
message:
  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.
modified:
  nt/ChangeLog
  nt/nmake.defs
=== modified file 'nt/ChangeLog'
--- a/nt/ChangeLog      2012-11-20 17:07:55 +0000
+++ b/nt/ChangeLog      2012-11-20 17:13:10 +0000
@@ -1,5 +1,9 @@
 2012-11-20  Eli Zaretskii  <address@hidden>
 
+       * 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  <address@hidden>

=== modified file 'nt/nmake.defs'
--- a/nt/nmake.defs     2012-09-30 21:36:42 +0000
+++ b/nt/nmake.defs     2012-11-20 17:13:10 +0000
@@ -116,7 +116,7 @@
 
 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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]