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