source: git/factory/config.h.in.bak @ f78374

spielwiese
Last change on this file since f78374 was e76d7a6, checked in by Mohamed Barakat <mohamed.barakat@…>, 13 years ago
just to get this out of the way, i need to catch my train
  • Property mode set to 100644
File size: 2.2 KB
Line 
1/* emacs edit mode for this file is -*- C -*- */
2/* $Id$ */
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 use "configurable inline methods" (see `cf_inline.cc') */
47#undef CF_USE_INLINE
48
49/* define to build factory without stream IO */
50#undef NOSTREAMIO
51
52/* which C++ header variants to use */
53#undef HAVE_IOSTREAM_H
54#undef HAVE_FSTREAM_H
55#undef HAVE_STRSTREAM_H
56
57#undef HAVE_IOSTREAM
58#undef HAVE_FSTREAM
59#undef HAVE_STRING
60
61#undef HAVE_CSTDIO
62
63/* define if linked to Singular */
64#undef SINGULAR
65
66/* define if build with OMALLOC */
67#undef HAVE_OMALLOC
68
69/* define if linked with factory memory manager */
70#undef USE_MEMUTIL
71
72/* define if linked with old factory memory manager */
73#undef USE_OLD_MEMMAN
74
75/* define if linked with new factory manager, debugging version */
76#undef MDEBUG
77
78/* define if you do not want to activate assertions */
79#undef NOASSERT
80
81/* define if you want to activate the timing stuff */
82#undef TIMING
83
84/* define if you want to have debugging output */
85#undef DEBUGOUTPUT
86
87#undef HAVE_NTL
88
89/************** END OF CONFIGURABLE SECTION **************/
90
91#endif /* ! INCL_CONFIG_H */
Note: See TracBrowser for help on using the repository browser.