Changeset 1005
- Timestamp:
- May 6, 2008, 5:07:07 AM (18 years ago)
- Location:
- trunk/dll
- Files:
-
- 2 added
- 2 edited
-
fortify.c (added)
-
makefile (modified) (5 diffs)
-
ufortify.h (added)
-
wrappers.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/makefile
r1003 r1005 38 38 # 22 Feb 08 JBS Suppress lxlite processing when DEBUG=1 39 39 # 01 Mar 08 SHL Add missing dependencies. Add WARNALL support 40 # 05 May 08 SHL Add FORTIFY support 40 41 41 42 # Environment: … … 43 44 # DEBUG - not defined = release build, defined = debug build 44 45 # WARNALL - add more warnings if defined 46 # FORTIFY - build with FORTIFYed memory 45 47 46 48 BASE = fm3dll … … 79 81 !ifdef %WARNALL # if defined in environment 80 82 WARNALL = $(%WARNALL) # use value from environment 83 !endif 84 85 !ifdef %FORTIFY # if defined in environment 86 FORTIFY = $(%FORTIFY) # use value from environment 81 87 !endif 82 88 … … 120 126 !endif 121 127 128 !ifdef FORTIFY 129 CFLAGS += -dFORTIFY 130 !endif 131 122 132 # for fm3res only 123 133 CFLAGSR = -bt=os2 -mf -bd -bm -olirs -s -j -we -wx -zfp -zgp -zp4 -zq … … 155 165 dirs.obj dirsize.obj draglist.obj droplist.obj eas.obj errutil.obj & 156 166 extract.obj filldir.obj filter.obj findrec.obj flesh.obj fm2cmd.obj & 157 fonts.obj fsopen.obj getnames.obj grep.obj grep2.obj info.obj inis.obj & 167 fonts.obj fortify.obj fsopen.obj & 168 getnames.obj grep.obj grep2.obj info.obj inis.obj & 158 169 init.obj input.obj instant.obj key.obj killproc.obj literal.obj & 159 170 loadbmp.obj mainwnd.obj mainwnd2.obj makelist.obj menu.obj misc.obj & -
trunk/dll/wrappers.c
r975 r1005 14 14 01 Sep 07 GKY Add xDosSetPathInfo to fix case where FS3 buffer crosses 64k boundry 15 15 06 Oct 07 SHL Add xDos...() wrappers to support systems wo/large file support (Gregg, Steven) 16 05 May 08 SHL Add Add FORTIFY support 16 17 17 18 ***********************************************************************/ … … 31 32 #include "errutil.h" // Dos_Error... 32 33 #include "strutil.h" // GetPString 34 35 #include "fortify.h" // GetPString 33 36 34 37 static PSZ pszSrcFile = __FILE__;
Note:
See TracChangeset
for help on using the changeset viewer.
