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.
This commit is contained in:
parent
3b0108c5ba
commit
9aef4c1281
2 changed files with 5 additions and 1 deletions
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue