source: git/factory/cf_globals.cc @ 82e0a7

spielwiese
Last change on this file since 82e0a7 was 16f511, checked in by Oleksandr Motsak <motsak@…>, 11 years ago
Fixed the usage of "config.h" (if defined HAVE_CONFIG_H)
  • Property mode set to 100644
File size: 1.4 KB
Line 
1/* emacs edit mode for this file is -*- C++ -*- */
2
3//{{{ docu
4//
5// cf_globals.cc - definitions of global variables.
6//
7// Used by: canonicalform.cc, int_int.cc, ffops.h, imm.h
8//
9//}}}
10
11#ifdef HAVE_CONFIG_H
12#include "config.h"
13#endif /* HAVE_CONFIG_H */
14
15#include "cf_switches.h"
16
17//{{{ extern const char factoryVersion[];
18//{{{ docu
19//
20// factoryVersion - factory version string.
21//
22// factoryVersion is initialized from #define FACTORYVERSION
23// which is defined in config.h.  It is not used in factory
24// itself.
25//
26//}}}
27extern const char factoryVersion[] = "@(#) factoryVersion = " FACTORYVERSION;
28
29//{{{ extern const char factoryConfiguration[];
30//{{{ docu
31//
32// factoryConfiguration - factory configuration.
33//
34// factoryConfiguration is initialized from #define
35// FACTORYCONFIGURATION which is defined in config.h.  It is set
36// to the option configure was called with plus the directory it
37// was called in.  It is not used in factory itself.
38//
39//}}}
40extern const char factoryConfiguration[] = "@(#) factoryConfiguration = " FACTORYCONFIGURATION;
41//}}}
42
43//{{{ CFSwitches cf_glob_switches;
44//{{{ docu
45//
46// cf_glob_switches - factory switches.
47//
48// This is the only object of type CFSwitches in factory.  It is
49// used either directly in the low level algorithms or by the
50// functions On(), Off(), isOn() defined in canonicalform.cc.
51//
52//}}}
53CFSwitches cf_glob_switches;
54//}}}
Note: See TracBrowser for help on using the repository browser.