home *** CD-ROM | disk | FTP | other *** search
- /* config.h.amiga -- User-configuration for Amiga version of Jade */
-
- #ifndef _CONFIG_H
- #define _CONFIG_H
-
- #define HAVE_AMIGA
-
- #include "amiga_defs.h"
-
- /*
- * version number of includes used to compile with, works with V37, better
- * with at least V39.
- */
- #define AMIGA_INCLUDE_VER 39
-
- /*
- * default directory to look for scripts in
- */
- #define LISP_LIB_DIR "JADE:lisp/"
-
- /*
- * file containing doc-strings
- */
- #define DOC_FILE "JADE:DOC-strings"
-
- /*
- * if you have a stpcpy() define this symbol
- */
- #define HAVE_STPCPY
- #ifndef HAVE_STPCPY
- extern char *stpcpy(char *, const char *);
- #endif
-
- /*
- * standard font
- */
- #define DEFAULT_FONT "topaz.font"
- #define DEFAULT_FONT_SIZE 8
-
- /*
- * if defined, no scrollbar is used
- */
- /* #define NOSCRLBAR */
-
- /*
- * timeout length. This determines how much time with no events received
- * is needed before looking for buffers which are due to be auto-saved.
- */
- #define EVENT_TIMEOUT_LENGTH 2
-
- /*
- * When defined functions are defined which provide varargs entry-points to
- * some taglist based functions. I expect this is only needed with DICE
- * and -mRR.
- */
- #define AMIGA_NEED_VARARGS_STUBS
-
- /*
- * If a (working) alloca() is around define this
- */
- /* #define HAVE_ALLOCA */
-
- #endif /* _CONFIG_H */
-