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

fieker-DuValspielwiese
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
RevLine 
[493c477]1/* emacs edit mode for this file is -*- C++ -*- */
[2dd068]2
[e6da16]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//}}}
[ab4548f]10
[16f511]11#ifdef HAVE_CONFIG_H
[e4fe2b]12#include "config.h"
[16f511]13#endif /* HAVE_CONFIG_H */
[ac7e53]14
[2dd068]15#include "cf_switches.h"
16
[e6da16]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//}}}
[e50385b]27extern const char factoryVersion[] = "@(#) factoryVersion = " FACTORYVERSION;
[8f591c6]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;
[e6da16]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//}}}
[2dd068]53CFSwitches cf_glob_switches;
[e6da16]54//}}}
Note: See TracBrowser for help on using the repository browser.