home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / epmmac.zip / MINCFG.SMP < prev    next >
Text File  |  1992-12-18  |  3KB  |  90 lines

  1. /* This is an attempt at putting together a minimal .ex file.  Note      */
  2. /* that each configuration constant is only set if not already defined;  */
  3. /* this lets you have a MYCNF.E that contains:                           */
  4. /*    const                                                              */
  5. /*       MOUSE_SUPPORT = 1  -- Want mouse support                        */
  6. /*    include 'mincfg.smp'  -- Otherwise, take the minimum defaults.     */
  7.  
  8. const
  9. compile if not defined(ALTERNATE_KEYSETS)
  10.    ALTERNATE_KEYSETS = 0     -- Omit all syntax assist
  11. compile endif
  12. compile if not defined(BLOCK_ACTIONBAR_ACCELERATORS)
  13.    BLOCK_ACTIONBAR_ACCELERATORS = 0  -- Implied by INCLUDE_MENU_SUPPORT
  14. compile endif
  15. compile if not defined(HOST_SUPPORT)
  16.    HOST_SUPPORT = ''         -- No host support
  17. compile endif
  18. compile if not defined(INCLUDE_MENU_SUPPORT)
  19.    INCLUDE_MENU_SUPPORT = 0  -- Omit support for action bar
  20. compile endif
  21. compile if not defined(INCLUDE_WORKFRAME_SUPPORT)
  22.    INCLUDE_WORKFRAME_SUPPORT = 0  -- Implied by WANT_BOOKMARKS
  23. compile endif
  24. compile if not defined(MOUSE_SUPPORT)
  25.    MOUSE_SUPPORT = 0
  26. compile endif
  27. compile if not defined(SPELL_SUPPORT)
  28.    SPELL_SUPPORT = 0
  29. compile endif
  30. compile if not defined(SUPPORT_BOOK_ICON)
  31.    SUPPORT_BOOK_ICON = 0
  32. compile endif
  33. compile if not defined(VANILLA)
  34.    VANILLA = 1                -- Don't look for MY*.E files
  35. compile endif
  36. compile if not defined(WANT_APPLICATION_INI_FILE)
  37.    WANT_APPLICATION_INI_FILE = 0
  38. compile endif
  39. compile if not defined(WANT_BOOKMARKS)
  40.    WANT_BOOKMARKS = 0
  41. compile endif
  42. compile if not defined(WANT_DOSUTIL)
  43.    WANT_DOSUTIL = 0  -- Omit QDATE, QTIME, DIR, SET, VOL, PATH, DPATH & OS2 cmds
  44. compile endif
  45. compile if not defined(WANT_DRAW)
  46.    WANT_DRAW = 0
  47. compile endif
  48. compile if not defined(WANT_DYNAMIC_PROMPTS)
  49.    WANT_DYNAMIC_PROMPTS = 0
  50. compile endif
  51. compile if not defined(WANT_EBOOKIE)
  52.    WANT_EBOOKIE = 0
  53. compile endif
  54. compile if not defined(WANT_ET_COMMAND)
  55.    WANT_ET_COMMAND = 0
  56. compile endif
  57. compile if not defined(WANT_GET_ENV)
  58.    WANT_GET_ENV = 0
  59. compile endif
  60. compile if not defined(WANT_MATH)
  61.    WANT_MATH = 0
  62. compile endif
  63.  
  64. ; Don't need to omit this, because it contains no code:
  65. ;compile if not defined(SITE_CONFIG)  -- Omit the site configuration file
  66. ;   SITE_CONFIG = ''
  67. ;compile endif
  68.  
  69. compile if not defined(SITE_KEYS)  -- Omit the site equivalent of MYKEYS.E
  70.    SITE_KEYS = ''
  71. compile endif
  72. compile if not defined(SITE_MAIN)  -- Omit the site equivalent of MYMAIN.E
  73.    SITE_MAIN = ''
  74. compile endif
  75. compile if not defined(SITE_SELECT)  -- Omit the site equivalent of MYSELECT.E
  76.    SITE_SELECT = ''
  77. compile endif
  78. compile if not defined(SITE_STUFF)  -- Omit the site equivalent of MYSTUFF.E
  79.    SITE_STUFF = ''
  80. compile endif
  81. compile if not defined(SITE_KEYSET)  -- Omit the site equivalent of MYKEYSET.E
  82.    SITE_KEYSET = ''
  83. compile endif
  84. compile if not defined(SITE_EXTRA)  -- Omit the site equivalent of MYEXTRA.E
  85.    SITE_EXTRA = ''
  86. compile endif
  87. compile if not defined(SITE_MENUINIT)  -- Omit the site equivalent of MYMNUINI.E
  88.    SITE_MENUINIT = ''
  89. compile endif
  90.