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