home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / util / jade-3.0.lha / Jade / src / configs / config.h.amiga next >
Encoding:
Text File  |  1994-04-16  |  1.2 KB  |  64 lines

  1. /* config.h.amiga -- User-configuration for Amiga version of Jade */
  2.  
  3. #ifndef _CONFIG_H
  4. #define _CONFIG_H
  5.  
  6. #define HAVE_AMIGA
  7.  
  8. #include "amiga_defs.h"
  9.  
  10. /*
  11.  * version number of includes used to compile with, works with V37, better
  12.  * with at least V39.
  13.  */
  14. #define AMIGA_INCLUDE_VER 39
  15.  
  16. /*
  17.  * default directory to look for scripts in
  18.  */
  19. #define LISP_LIB_DIR "JADE:lisp/"
  20.  
  21. /*
  22.  * file containing doc-strings
  23.  */
  24. #define DOC_FILE "JADE:DOC-strings"
  25.  
  26. /*
  27.  * if you have a stpcpy() define this symbol
  28.  */
  29. #define HAVE_STPCPY
  30. #ifndef HAVE_STPCPY
  31. extern char *stpcpy(char *, const char *);
  32. #endif
  33.  
  34. /*
  35.  * standard font
  36.  */
  37. #define DEFAULT_FONT "topaz.font"
  38. #define DEFAULT_FONT_SIZE 8
  39.  
  40. /*
  41.  * if defined, no scrollbar is used
  42.  */
  43. /* #define NOSCRLBAR */
  44.  
  45. /*
  46.  * timeout length. This determines how much time with no events received
  47.  * is needed before looking for buffers which are due to be auto-saved.
  48.  */
  49. #define EVENT_TIMEOUT_LENGTH 2
  50.  
  51. /*
  52.  * When defined functions are defined which provide varargs entry-points to
  53.  * some taglist based functions. I expect this is only needed with DICE
  54.  * and -mRR.
  55.  */
  56. #define AMIGA_NEED_VARARGS_STUBS
  57.  
  58. /*
  59.  * If a (working) alloca() is around define this
  60.  */
  61. /* #define HAVE_ALLOCA */
  62.  
  63. #endif /* _CONFIG_H */
  64.