Changeset 3476 for trunk/tools


Ignore:
Timestamp:
May 2, 2000, 4:33:04 PM (25 years ago)
Author:
bird
Message:

Defined SEMICOLON to force use of ; as include separator.

Location:
trunk/tools/wrc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/wrc/makefile.os2

    r2714 r3476  
    1 # $Id: makefile.os2,v 1.9 2000-02-09 23:49:07 bird Exp $
     1# $Id: makefile.os2,v 1.10 2000-05-02 14:33:04 bird Exp $
    22
    33
     
    88
    99#DEFS      = -D__WINE__ -D__WIN32OS2__ -idirafter ../../include/win -idirafter ../../include
    10 DEFS      = -D__WINE__ -I. -I../../include/win -I../../include
     10DEFS      = -D__WINE__ -D__SEMICOLON__  -I. -I../../include/win -I../../include
    1111
    1212PROGRAMS = wrc.exe
  • trunk/tools/wrc/preproc.c

    r3459 r3476  
    148148}
    149149
    150 #if defined(_Windows) || defined(__MSDOS__) || defined(__WIN32OS2__)
     150/*kso added test for __SEMICOLON__ since __WIN32OS2__ isn't defined! */
     151#if defined(__SEMICOLON__) || defined(_Windows) || defined(__MSDOS__) || defined(__WIN32OS2__)
    151152#define INCLUDESEPARATOR        ";"
     153#warning "Using ; as include separator"
    152154#else
     155#warning "Using : as include separator"
    153156#define INCLUDESEPARATOR        ":"
    154157#endif
Note: See TracChangeset for help on using the changeset viewer.