]> git.donarmstrong.com Git - lilypond.git/blob - config.hh.in
* lily/lexer.ll (avoid_silly_flex_induced_gcc_warnings): Disable.
[lilypond.git] / config.hh.in
1 /* @AUTOGENERATE@ */
2
3 #define PACKAGE "@package@"
4
5 #define TOPLEVEL_VERSION "@TOPLEVEL_VERSION@"
6
7 /* datadir */
8 #define DATADIR "@DATADIR@"
9
10 /* LilyPond init and input base directory */
11 #define PACKAGE_DATADIR DATADIR "/" PACKAGE
12 #define LILYPOND_DATADIR PACKAGE_DATADIR
13
14 /* LilyPond specific init and input directory */
15 #define LOCAL_PACKAGE_DATADIR PACKAGE_DATADIR "/" TOPLEVEL_VERSION
16 #define LOCAL_LILYPOND_DATADIR LOCAL_PACKAGE_DATADIR
17
18 /* default lilypond locale dir */
19 #define LOCALEDIR "@LOCALEDIR@"
20
21 /* define if you have memmem */
22 #define HAVE_MEMMEM 0
23
24 /* define if you have snprintf */
25 #define HAVE_SNPRINTF 0
26
27 /* define if you have vsnprintf */
28 #define HAVE_VSNPRINTF 0
29
30 /* define if you have yyFlexLexer.yy_current_buffer */
31 #undef HAVE_FLEXLEXER_YY_CURRENT_BUFFER
32
33 /* define if you have gettext */
34 #define HAVE_GETTEXT 0
35
36 /* define if you have isinf */
37 #define HAVE_ISINF 0
38
39 /* define if you want KPATHSEA */
40 #define KPATHSEA @KPATHSEA@
41
42 /* define if you have kpatsea header */
43 #define HAVE_KPATHSEA_KPATHSEA_H 0
44
45 /* define if you have kpse_find_file */
46 #define HAVE_KPSE_FIND_FILE 0
47
48 /* define if you have kpse_find_tfm */
49 #define HAVE_KPSE_FIND_TFM 0
50
51 /* define if you have python2.2/Python.h header */
52 #define HAVE_PYTHON2_2_PYTHON_H 0
53
54 /* define if you have python2.1/Python.h header */
55 #define HAVE_PYTHON2_1_PYTHON_H 0
56
57 /* define if you have python2.0/Python.h header */
58 #define HAVE_PYTHON2_0_PYTHON_H 0
59
60 /* define if you have python2/Python.h header */
61 #define HAVE_PYTHON2_PYTHON_H 0
62
63 /* define if you have python1.5/Python.h */
64 #define HAVE_PYTHON1_5_PYTHON_H 0
65
66 /* define if you have python/Python.h header */
67 #define HAVE_PYTHON_PYTHON_H 0
68
69 /* define if you have Python.h header */
70 #define HAVE_PYTHON_H 0
71
72 /* define if explicit instantiation is needed */
73 #undef NEED_EXPLICIT_INSTANTIATION
74
75 /* define directory and path separators */
76 #define DIRSEP '@DIRSEP@'
77 #define PATHSEP '@PATHSEP@'
78
79 /* define if you have assert */
80 #define HAVE_ASSERT_H 0
81
82 /* define if you have sys/stat.h */
83 #define HAVE_SYS_STAT_H 0
84
85 /* define if you have sys/stat.h */
86 #define STAT_MACROS_BROKEN 0
87
88 /* define if you have sstream */
89 #define HAVE_SSTREAM 0
90
91 /* GUILE only includes version in headers (libguile/version.h) as of
92    1.5.x.  For some strange reason, they call it SCM.*VERSION. */
93 #include <libguile.h>
94
95 #ifndef GUILE_MAJOR_VERSION
96 #ifdef SCM_MAJOR_VERSION
97 #define GUILE_MAJOR_VERSION SCM_MAJOR_VERSION
98 #define GUILE_MINOR_VERSION SCM_MINOR_VERSION
99 #define GUILE_PATCH_LEVEL SCM_MICRO_VERSION
100 #else
101 /* define GUILE major version */
102 #define GUILE_MAJOR_VERSION 0
103 /* define GUILE minor version */
104 #define GUILE_MINOR_VERSION 0
105 /* define GUILE patch level */
106 #define GUILE_PATCH_LEVEL 0
107 #endif
108 #endif