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