Changeset 9478 for trunk/src/win32k


Ignore:
Timestamp:
Dec 6, 2002, 4:29:45 AM (23 years ago)
Author:
bird
Message:

Used PATH_ variables first.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/configure.cmd

    r9041 r9478  
    1 /* $Id: configure.cmd,v 1.25 2002-08-20 05:49:51 bird Exp $
     1/* $Id: configure.cmd,v 1.26 2002-12-06 03:29:45 bird Exp $
    22 *
    33 * Configuration script.
     
    109109        call lineout sIncFile, '# DDKPATH: base directory of ddk base (i.e. \DDK\BASE not \DDK for DDK v4.0+).'
    110110        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):');
    112112        sDDK = ValidatePath(sDDK, 'h\devhdr.h', 'DDK Base Path');
    113113        call lineout sIncFile, 'DDKPATH          =' sDDK
     
    117117        call lineout sIncFile, '# OS/2 TOOLKIT'
    118118        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:');
    120120        sTLKT = ValidatePath(sTLKT, 'h\bsememf.h', 'OS/2 Toolkit Path');
    121121        call lineout sIncFile, 'TOOLKIT          =' sTLKT
     
    137137        call lineout sIncFile, '# Microsoft C v6.0, v6.0a or v7.0'
    138138        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:');
    140140        sMSC = ValidatePath(sMSC, 'binp\cl.exe', 'Microsoft C Path');
    141141        call lineout sIncFile, 'MSCPATH          =' sMSC
     
    301301    if (rc <> '') then
    302302        return sPath;
    303     say 'Warning: Validatation of the' sPath 'failed. Win32k.sys will not be built.'
     303    say 'Warning: Validatation of the' sDesc 'failed. Win32k.sys will not be built.'
    304304    say '         path='sPath;
    305305return '';
Note: See TracChangeset for help on using the changeset viewer.