Wed Dec 10 23:36:16 2003 Ben Pfaff <blp@gnu.org>
[pspp-builds.git] / acconfig.h
1 /* Special definitions, to process by autoheader.
2    Copyright (C) 1997-9, 2000 Free Software Foundation. */
3
4 /* Definitions for byte order, according to significance of bytes, from low
5    addresses to high addresses.  The value is what you get by putting '4'
6    in the most significant byte, '3' in the second most significant byte,
7    '2' in the second least significant byte, and '1' in the least
8    significant byte.  These definitions never need to be modified. */
9 #define BIG     4321    /* 68k */
10 #define LITTLE  1234    /* i[3456]86 */
11 #define UNKNOWN 0000    /* Endianness must be determined at runtime. */
12
13 /* Definitions for floating-point representation. */
14 #define FPREP_IEEE754   754     /* The usual IEEE-754 format. */
15 #define FPREP_UNKNOWN   666     /* Triggers an error at compile time. */
16
17 /* We want prototypes for all the GNU extensions. */
18 #define _GNU_SOURCE     1
19
20 /* Name of the distribution. */
21 #define PACKAGE "PSPP"
22
23 /* Version of the distribution. */
24 #undef VERSION
25
26 /* The concatenation of the strings "GNU ", and PACKAGE.  */
27 #define GNU_PACKAGE "GNU PSPP"
28
29 /* Define to 1 if ANSI function prototypes are usable.  */
30 #undef PROTOTYPES
31
32
33 @TOP@
34
35 /* Define if sprintf() returns the number of characters written to
36    the destination string, excluding the null terminator. */
37 #undef HAVE_GOOD_SPRINTF
38
39 /* Define if rand() and company work according to ANSI. */
40 #undef HAVE_GOOD_RANDOM
41
42 /* Define endianness of computer here as BIG or LITTLE, if known.
43    If not known, define as UNKNOWN. */
44 #define ENDIAN BIG
45
46 /* Define as floating-point representation of this computer.  For
47    i386, m68k, and other common chips, this is FPREP_IEEE754. */
48 #define FPREP FPREP_IEEE754
49
50 /* Number of digits in longest `long' value, including sign.  This is
51    usually 11, for 32-bit `long's, or 19, for 64-bit `long's. */
52 #define INT_DIGITS 19
53
54 /* Define if you have the history library (-lhistory).  */
55 #undef HAVE_LIBHISTORY
56
57 /* Define if you have the termcap library (-ltermcap).  */
58 #undef HAVE_LIBTERMCAP
59
60 /* Stolen from Ulrich Drepper, <drepper@gnu.org> gettext-0.10,
61    1995.  */
62
63 /* Define if your locale.h file contains LC_MESSAGES.  */
64 #undef HAVE_LC_MESSAGES
65
66 /* Define to 1 if NLS is requested.  */
67 #undef ENABLE_NLS
68
69 /* Define as 1 if you have catgets and don't want to use GNU gettext.  */
70 #undef HAVE_CATGETS
71
72 /* Define as 1 if you have gettext and don't want to use GNU gettext.  */
73 #undef HAVE_GETTEXT
74
75 /* Define as 1 if you have the stpcpy function.  */
76 #undef HAVE_STPCPY
77
78 @BOTTOM@
79
80 #include <pref.h>
81
82 /* Local Variables: */
83 /* mode:c */
84 /* End: */