home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 100-199 / ff197.lzh / Stevie / env.h < prev    next >
C/C++ Source or Header  |  1989-03-28  |  2KB  |  62 lines

  1. /*
  2.  * STEVIE - Simply Try this Editor for VI Enthusiasts
  3.  *
  4.  * Code Contributions By : Tim Thompson           twitch!tjt
  5.  *                         Tony Andrews           onecom!wldrdg!tony 
  6.  *                         G. R. (Fred) Walter    watmath!watcgl!grwalter 
  7.  */
  8.  
  9. /*
  10.  * The defines in this file establish the environment we're compiling
  11.  * in. Set these appropriately before compiling the editor.
  12.  */
  13.  
  14. /*
  15.  * One (and only 1) of the following defines should be uncommented. Most of
  16.  * the code is pretty machine-independent. Machine dependent code goes in a
  17.  * file like tos.c or unix.c. The only other place where machine dependent
  18.  * code goes is term.h for escape sequences. 
  19.  */
  20.  
  21. #ifndef AMIGA
  22. #define    ATARI            Atari ST */
  23. /* #define    UNIX        System V */
  24. /* #define    BSD        BSD 4.3 */
  25. /* #define    OS2        Microsoft OS/2 */
  26. /* #define    DOS        MS DOS 3.3 */
  27. /* #define    AMIGA        Amiga */
  28. #endif
  29.  
  30. /*
  31.  * If ATARI is defined, one of the following compilers must be selected. 
  32.  */
  33. #ifdef    ATARI
  34. #define MWC            Mark William's C 3.0.9 */
  35. /* #define    MEGAMAX        Megamax Compiler */
  36. /* #define    ALCYON        Alcyon C compiler */
  37.  
  38. # ifdef MWC
  39. #  define AppendNumberToUndoUndobuff     XX1
  40. #  define AppendPositionToUndoUndobuff    XX2
  41. #  define FOPENB
  42. # endif
  43.  
  44. # ifdef MEGAMAX
  45. #  define FOPENB
  46. # endif
  47. #endif
  48.  
  49. /*
  50.  * If HELP is defined, the :help command shows a vi command summary. 
  51.  */
  52. #define    HELP            /* enable help command */
  53.  
  54. /*
  55.  * STRCSPN should be defined if the target system doesn't have the
  56.  * routine strcspn() available. See regexp.c for details.
  57.  */
  58.  
  59. #ifdef    ATARI
  60. #define    STRCSPN
  61. #endif
  62.