Changeset 833 for trunk/dll


Ignore:
Timestamp:
Sep 5, 2007, 7:48:31 PM (18 years ago)
Author:
Steven Levine
Message:

Update fm3dll.rc for OpenWatcom wrc compat
Correct dll\makefile USE_WRC logic

Location:
trunk/dll
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/fm3res.rc

    r824 r833  
    2727  06 Aug 07 GKY Fix Dirsizes accel key to be ctrl + z
    2828  30 Aug 07 SHL Add accelerator support to QuickList windows
     29  05 Sep 07 SHL Small change for OpenWatcom wrc compat
    2930
    3031***********************************************************************/
     
    272273    MENUITEM "~Contents\tF1",        IDM_HELPCONTENTS
    273274    MENUITEM "~General help",               IDM_HELPGENERAL
    274     MENUITEM "~Keys help\tCtrl + k"       IDM_HELPKEYS
     275    MENUITEM "~Keys help\tCtrl + k",       IDM_HELPKEYS
    275276    MENUITEM "~Mouse help",                 IDM_HELPMOUSE
    276277    MENUITEM "~Tutorials",                  IDM_HELPTUTOR
  • trunk/dll/makefile

    r808 r833  
    3131# 06 Aug 07 SHL Tweak CFLAGS for DEBUG builds
    3232# 26 Aug 07 SHL Clean *.lrf
     33# 05 Sep 07 SHL Correct USE_WRC logic
    3334
    3435# Environment:
     
    4546LINK = wlink
    4647
    47 # fixme for wrc to build working .res
    48 # fixme for wrc to not clobber bldlevel strings
    49 
    50 !ifndef USE_WRC
     48# fixme for wrc to build working .res
     49# fixme ow 1.6 wrc clobbers bldlevel strings
     50
     51!ifndef USE_WRC                 # if not defined on command line
     52!ifdef %USE_WRC                 # if defined in environment
     53USE_WRC = $(%USE_WRC)
     54!else
    5155USE_WRC = 0
     56!endif
    5257!endif
    5358
Note: See TracChangeset for help on using the changeset viewer.