- Timestamp:
- Dec 6, 2002, 4:29:45 AM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/configure.cmd
r9041 r9478 1 /* $Id: configure.cmd,v 1.2 5 2002-08-20 05:49:51bird Exp $1 /* $Id: configure.cmd,v 1.26 2002-12-06 03:29:45 bird Exp $ 2 2 * 3 3 * Configuration script. … … 109 109 call lineout sIncFile, '# DDKPATH: base directory of ddk base (i.e. \DDK\BASE not \DDK for DDK v4.0+).' 110 110 call lineout sIncFile, '################################################################################' 111 sDDK = SearchPaths(' INCLUDE', '..\h\dhcalls.h', 'PATH', '..\h\dhcalls.h', 'BOOKSHELF', '..\base\.\h\dhcalls.h', 'Path to DDK "\BASE" directory (i.e. F:\DDK\BASE):');111 sDDK = SearchPaths('PATH_DDKBASE', 'h\dhcalls.h', 'INCLUDE', '..\h\dhcalls.h', 'PATH', '..\h\dhcalls.h', 'BOOKSHELF', '..\base\.\h\dhcalls.h', 'Path to DDK "\BASE" directory (i.e. F:\DDK\BASE):'); 112 112 sDDK = ValidatePath(sDDK, 'h\devhdr.h', 'DDK Base Path'); 113 113 call lineout sIncFile, 'DDKPATH =' sDDK … … 117 117 call lineout sIncFile, '# OS/2 TOOLKIT' 118 118 call lineout sIncFile, '################################################################################' 119 sTLKT = SearchPaths(' INCLUDE', '..\h\os2.h', 'PATH', '..\h\os2.h', 'BOOKSHELF', '..\h\os2.h', 'Path to OS/2 Toolkit directory:');119 sTLKT = SearchPaths('PATH_TOOLKIT', 'h\os2.h', 'INCLUDE', '..\h\os2.h', 'PATH', '..\h\os2.h', 'BOOKSHELF', '..\h\os2.h', 'Path to OS/2 Toolkit directory:'); 120 120 sTLKT = ValidatePath(sTLKT, 'h\bsememf.h', 'OS/2 Toolkit Path'); 121 121 call lineout sIncFile, 'TOOLKIT =' sTLKT … … 137 137 call lineout sIncFile, '# Microsoft C v6.0, v6.0a or v7.0' 138 138 call lineout sIncFile, '################################################################################' 139 sMSC = SearchPaths('PATH ', '..\binp\c3l.exe', 'INCLUDE', '..\binp\c3l.exe','LIB', '..\binp\c3l.exe', 'Path to Microsoft C v6.0, v6.0a or v7.0 directory:');139 sMSC = SearchPaths('PATH_MSC','binp\c2l.exe','PATH', '..\binp\c3l.exe', 'INCLUDE', '..\binp\c3l.exe','LIB', '..\binp\c3l.exe', 'Path to Microsoft C v6.0, v6.0a or v7.0 directory:'); 140 140 sMSC = ValidatePath(sMSC, 'binp\cl.exe', 'Microsoft C Path'); 141 141 call lineout sIncFile, 'MSCPATH =' sMSC … … 301 301 if (rc <> '') then 302 302 return sPath; 303 say 'Warning: Validatation of the' s Path'failed. Win32k.sys will not be built.'303 say 'Warning: Validatation of the' sDesc 'failed. Win32k.sys will not be built.' 304 304 say ' path='sPath; 305 305 return '';
Note:
See TracChangeset
for help on using the changeset viewer.