1 | /* emacs edit mode for this file is -*- C -*- */ |
---|
2 | /* $Id: config.h.in,v 1.5 1997-12-09 11:59:44 schmidt Exp $ */ |
---|
3 | |
---|
4 | #ifndef INCL_CONFIG_H |
---|
5 | #define INCL_CONFIG_H |
---|
6 | |
---|
7 | /* {{{ docu |
---|
8 | * |
---|
9 | * config.h.in - used by `configure' to create `config.h'. |
---|
10 | * |
---|
11 | * This file is included at building time from almost all source |
---|
12 | * files belonging to Factory. Furthermore, it is (textually) |
---|
13 | * included into `factoryconf.h' by `makeheader' so we have an |
---|
14 | * installed version of this file, too. This way, the installed |
---|
15 | * source files will be compiled with the same settings as the |
---|
16 | * library itself. |
---|
17 | * |
---|
18 | * In general, you should let `configure' guess the correct |
---|
19 | * values for the `#define's below. But if something seriously |
---|
20 | * goes wrong in configuring, please inform the authors and feel |
---|
21 | * free to edit the marked section. |
---|
22 | * |
---|
23 | */ |
---|
24 | /* }}} */ |
---|
25 | |
---|
26 | /************** START OF CONFIGURABLE SECTION **************/ |
---|
27 | |
---|
28 | /* Define to empty if the keyword does not work. */ |
---|
29 | #undef const |
---|
30 | |
---|
31 | /* Define as __inline if that's what the C compiler calls it. */ |
---|
32 | #undef inline |
---|
33 | |
---|
34 | /* factory version */ |
---|
35 | #undef FACTORYVERSION |
---|
36 | |
---|
37 | /* factory configuration */ |
---|
38 | #undef FACTORYCONFIGURATION |
---|
39 | |
---|
40 | /* where the gftables live */ |
---|
41 | #undef GFTABLEDIR |
---|
42 | |
---|
43 | /* define if your compiler does arithmetic shift */ |
---|
44 | #undef HAS_ARITHMETIC_SHIFT |
---|
45 | |
---|
46 | /* define to build factory without stream IO */ |
---|
47 | #undef NOSTREAMIO |
---|
48 | |
---|
49 | /* define if linked to Singular */ |
---|
50 | #undef SINGULAR |
---|
51 | |
---|
52 | /* define if linked with factory memory manager */ |
---|
53 | #undef USE_MEMUTIL |
---|
54 | |
---|
55 | /* define if linked with old factory memory manager */ |
---|
56 | #undef USE_OLD_MEMMAN |
---|
57 | |
---|
58 | /* define if linked with new factory manager, debugging version */ |
---|
59 | #undef MDEBUG |
---|
60 | |
---|
61 | /* define if you do not want to activate assertions */ |
---|
62 | #undef NOASSERT |
---|
63 | |
---|
64 | /* define if you want to activate the timing stuff */ |
---|
65 | #undef TIMING |
---|
66 | |
---|
67 | /* define if you want to have debugging output */ |
---|
68 | #undef DEBUGOUTPUT |
---|
69 | |
---|
70 | /* define type of your compilers 64 bit integer type */ |
---|
71 | #define INT64 long long int |
---|
72 | |
---|
73 | /************** END OF CONFIGURABLE SECTION **************/ |
---|
74 | |
---|
75 | #endif /* ! INCL_CONFIG_H */ |
---|