source: git/factory/config.h.in @ 281760

fieker-DuValspielwiese
Last change on this file since 281760 was d3ca98, checked in by Jens Schmidt <schmidt@…>, 27 years ago
* config.h.in: doc fix git-svn-id: file:///usr/local/Singular/svn/trunk@422 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.8 KB
Line 
1/* emacs edit mode for this file is -*- C -*- */
2/* $Id: config.h.in,v 1.3 1997-06-23 15:41:45 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 values
19 * for the #defines below.  But if something seriously goes wrong
20 * in configuring, please inform the authors and feel free to
21 * 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/* where the gftables live */
38#undef GFTABLEDIR
39
40/* define if your compiler does arithmetic shift */
41#undef HAS_ARITHMETIC_SHIFT
42
43/* define to build factory without stream IO */
44#undef NOSTREAMIO
45
46/* define if linked to Singular */
47#undef SINGULAR
48
49/* define if linked with factory memory manager */
50#undef USE_MEMUTIL
51
52/* define if linked with old factory memory manager */
53#undef USE_OLD_MEMMAN
54
55/* define if linked with new factory manager, debugging version */
56#undef MDEBUG
57
58/* define if you do not want to activate assertions */
59#undef NOASSERT
60
61/* define if you want to activate the timing stuff */
62#undef TIMING
63
64/* define if you want to have debugging output */
65#undef DEBUGOUTPUT
66
67/************** END OF CONFIGURABLE SECTION **************/
68
69#endif /* ! INCL_CONFIG_H */
Note: See TracBrowser for help on using the repository browser.