source: git/factory/cf_globals.cc @ 64b9bf

spielwiese
Last change on this file since 64b9bf was 64b9bf, checked in by Oleksandr Motsak <motsak@…>, 10 years ago
Fixed brocken linkage under OSX
  • Property mode set to 100644
File size: 1.0 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
16//{{{ extern const char factoryVersion[];
17//{{{ docu
18//
19// factoryVersion - factory version string.
20//
21// factoryVersion is initialized from #define FACTORYVERSION
22// which is defined in config.h.  It is not used in factory
23// itself.
24//
25//}}}
26extern const char factoryVersion[] = "@(#) factoryVersion = " FACTORYVERSION;
27
28//{{{ extern const char factoryConfiguration[];
29//{{{ docu
30//
31// factoryConfiguration - factory configuration.
32//
33// factoryConfiguration is initialized from #define
34// FACTORYCONFIGURATION which is defined in config.h.  It is set
35// to the option configure was called with plus the directory it
36// was called in.  It is not used in factory itself.
37//
38//}}}
39extern const char factoryConfiguration[] = "@(#) factoryConfiguration = " FACTORYCONFIGURATION;
40//}}}
41
Note: See TracBrowser for help on using the repository browser.