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

spielwiese
Last change on this file since a52291 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
RevLine 
[4f9ae6]1/* emacs edit mode for this file is -*- C -*- */
[341696]2/* $Id$ */
[4f9ae6]3
4#ifndef INCL_CONFIG_H
5#define INCL_CONFIG_H
6
7/* {{{ docu
8 *
[0cc8979]9 * config.h.in - used by `configure' to create `config.h'.
[4f9ae6]10 *
[d3ca98]11 * This file is included at building time from almost all source
[0cc8979]12 * files belonging to Factory.  Furthermore, it is (textually)
13 * included into `factoryconf.h' by `makeheader' so we have an
[d3ca98]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 *
[0cc8979]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.
[d3ca98]22 *
[011fdd1]23 */
[4f9ae6]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
[0cc8979]37/* factory configuration */
38#undef FACTORYCONFIGURATION
39
[4f9ae6]40/* where the gftables live */
41#undef GFTABLEDIR
42
43/* define if your compiler does arithmetic shift */
44#undef HAS_ARITHMETIC_SHIFT
45
[4f1744f]46/* define to use "configurable inline methods" (see `cf_inline.cc') */
47#undef CF_USE_INLINE
48
[4f9ae6]49/* define to build factory without stream IO */
50#undef NOSTREAMIO
51
[1dc616]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
[4dfcb1]61#undef HAVE_CSTDIO
62
[4f9ae6]63/* define if linked to Singular */
64#undef SINGULAR
65
[f79b94c]66/* define if build with OMALLOC */
67#undef HAVE_OMALLOC
68
[4f9ae6]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
[71f8d2]87#undef HAVE_NTL
88
[4f9ae6]89/************** END OF CONFIGURABLE SECTION **************/
90
91#endif /* ! INCL_CONFIG_H */
Note: See TracBrowser for help on using the repository browser.