File:  [gforth] / gforth / dosconf.h
Revision 1.5: download - view: text, annotated - select for diffs
Sat Dec 12 22:32:04 1998 UTC (25 years, 3 months ago) by pazsan
Branches: MAIN
CVS tags: v0-5-0, v0-4-0, HEAD
Fixed Makefile for DOS (doesn't fully work yet)
Fixed shared library for Windows (not tested yet)

    1: /* config.h.  Generated automatically by configure.  */
    2: /* config.h.in.  Generated automatically from configure.in by autoheader.  */
    3: 
    4: /* Define if `sys_siglist' is declared by <signal.h>.  */
    5: #undef SYS_SIGLIST_DECLARED
    6: 
    7: /* Define if your processor stores words with the most significant
    8:    byte first (like Motorola and SPARC, unlike Intel and VAX).  */
    9: /* #undef WORDS_BIGENDIAN */
   10: 
   11: /* Package name */
   12: #define PACKAGE "gforth"
   13: 
   14: /* Package version */
   15: #define VERSION "0.4.0"
   16: 
   17: /* an integer type that is as long as a pointer */
   18: #define CELL_TYPE int
   19: 
   20: /* an integer type that is twice as long as a pointer */
   21: #define DOUBLE_CELL_TYPE long long
   22: 
   23: /* a path separator character */
   24: #define PATHSEP ';'
   25: 
   26: /* define this if there is no working DOUBLE_CELL_TYPE on your machine */
   27: /* #undef BUGGY_LONG_LONG */
   28: 
   29: /* The number of bytes in a char *.  */
   30: #define SIZEOF_CHAR_P 4
   31: 
   32: /* The number of bytes in a int.  */
   33: #define SIZEOF_INT 4
   34: 
   35: /* The number of bytes in a long.  */
   36: #define SIZEOF_LONG 4
   37: 
   38: /* The number of bytes in a long long.  */
   39: #define SIZEOF_LONG_LONG 8
   40: 
   41: /* The number of bytes in a short.  */
   42: #define SIZEOF_SHORT 2
   43: 
   44: /* Define if you have the expm1 function.  */
   45: #define HAVE_EXPM1 1
   46: 
   47: /* Define if you have the log1p function.  */
   48: #define HAVE_LOG1P 1
   49: 
   50: /* Define if you have the rint function.  */
   51: #define HAVE_RINT 1
   52: 
   53: /* Define if you have the sys_siglist function.  */
   54: #undef HAVE_SYS_SIGLIST
   55: 
   56: /* Define if you have the m library (-lm).  */
   57: #define HAVE_LIBM 1
   58: /* Of course, sys_siglist is a variable, not a function */
   59: 
   60: /* Define if you want to force a direct threaded code implementation
   61:    (does not work on all machines */
   62: /* Define if you want to force an indirect threaded code implementation */
   63: /* Define if you want to use explicit register declarations for better
   64:    performance or for more convenient CODE words (does not work with
   65:    all GCC versions on all machines) */
   66: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>