home *** CD-ROM | disk | FTP | other *** search
/ pc.louisiana.edu/pub/unix/ / Louisiana_UNIX.tar / Louisiana_UNIX / xspread3.0.zoo / config.h.dist < prev    next >
Text File  |  1994-03-25  |  2KB  |  75 lines

  1.  
  2. /*  The default font to use */
  3. #define SC_FONT "9x15"
  4.  
  5. #define BSD43
  6. /* #define SYSV */
  7.  
  8. /*  Define this if you want backups saved of the files */
  9. #define DOBACKUPS
  10.  
  11. /*  The name to save the backup worksheet to  */
  12. #define SAVENAME "SC.SAVE"
  13.  
  14. /*  Define this if you system doesn't have rint in the math lib. */
  15. #if defined(__convex__)
  16. #define RINT
  17. #endif
  18.  
  19. /*  Define CRYPT_PATH if you want crypt support compiled in */
  20. #define CRYPT_PATH
  21.  
  22. /*  If you want to run "des" instead of "crypt" for crypting. */
  23. /* #define DES */
  24.  
  25. /* my note: __sgi__ for sgi machines */
  26.  
  27. /*  The regular expression handlers
  28.  *  RE_COMP for system re_comp/re_exec()   (BSD, SUN)
  29.  *  REGCMP for standard system regcmp/regex handlers (SVR3/4)
  30.  *  REGCOMP for spencer lib use
  31.  *  REG_COMP for POSIX.2 FIPS 
  32.  */
  33.  
  34. /*  386BSD has patches to use RE_COMP, but some people may not have them */
  35. #if defined(__386BSD__)
  36. #define REGCOMP
  37. #else
  38.  
  39. #if defined(systemvthing)
  40. #define REGCMP
  41. #else
  42.  
  43. /* defined(mips) || defined(sun) || defined(__convex__) || defined(__osf__) */
  44. #define RE_COMP
  45.  
  46. #endif
  47. #endif
  48.  
  49. /*  Define SIGVOID if you signal routine returns a void */
  50. #define SIGVOID
  51.  
  52. /*  The default file viewer */
  53. #define DFLT_PAGER "more"
  54.  
  55. /*  Define doing x if you want this is be xspread don't define it if 
  56.  *  you want this to be SC. Currently you MUST define this
  57.  */
  58. #define DOINGX
  59.  
  60. /*  Some yuck I found where it turned abs() into some inline routine?? */
  61. #if defined(convex)
  62. #define __NO_INLINE
  63. #endif
  64.  
  65. /*
  66. #if (defined(BSD42) || defined(BSD43)) && !defined(strrchr)
  67. #define strrchr rindex
  68. #endif
  69.  
  70. #if (defined(BSD42) || defined(BSD43)) && !defined(strchr)
  71. #define strchr index
  72. #endif
  73. */
  74.  
  75.