diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-01-10 18:16:07 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-01-10 18:16:07 +0100 |
commit | 78cf3f0de90613cc8621f806444120ee3b12b507 (patch) | |
tree | a2f148aec8d721ccaf9808614642020e58421ae7 /src/Make_bc5.mak | |
parent | a02471e2952b16c14a0ee779ba69ff4272c10192 (diff) | |
download | vim-78cf3f0de90613cc8621f806444120ee3b12b507.zip |
updated for version 7.4.141
Problem: Problems when building with Borland: st_mode is signed short;
can't build with Python; temp files not ignored by Mercurial;
building with DEBUG doesn't define _DEBUG.
Solution: Fix the problems. (Ken Takata)
Diffstat (limited to 'src/Make_bc5.mak')
-rw-r--r-- | src/Make_bc5.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Make_bc5.mak b/src/Make_bc5.mak index 8172c1f4c..5769bd64b 100644 --- a/src/Make_bc5.mak +++ b/src/Make_bc5.mak @@ -419,7 +419,7 @@ CPUARG = -$(CPUNR) ALIGNARG = -a$(ALIGN) # !if ("$(DEBUG)"=="yes") -DEFINES=$(DEFINES) -DDEBUG +DEFINES=$(DEFINES) -DDEBUG -D_DEBUG !endif # !if ("$(OLE)"=="yes") |