(Introduction): rewrite
[lilypond.git] / config.hh.in
blob64bbf775fdb12a51826d6a0c0414ef6964521944
1 /* @AUTOGENERATE@ */
3 #define PACKAGE "@package@"
5 #define TOPLEVEL_VERSION "@TOPLEVEL_VERSION@"
7 /* datadir */
8 #define DATADIR "@DATADIR@"
10 /* LilyPond init and input base directory */
11 #define PACKAGE_DATADIR DATADIR "/" PACKAGE
12 #define LILYPOND_DATADIR PACKAGE_DATADIR
14 /* LilyPond specific init and input directory */
15 #define LOCAL_PACKAGE_DATADIR PACKAGE_DATADIR "/" TOPLEVEL_VERSION
16 #define LOCAL_LILYPOND_DATADIR LOCAL_PACKAGE_DATADIR
18 /* default lilypond locale dir */
19 #define LOCALEDIR "@LOCALEDIR@"
21 /* define if you have memmem */
22 #define HAVE_MEMMEM 0
24 /* define if you have snprintf */
25 #define HAVE_SNPRINTF 0
27 /* define if you have vsnprintf */
28 #define HAVE_VSNPRINTF 0
30 /* define if you have yyFlexLexer.yy_current_buffer */
31 #undef HAVE_FLEXLEXER_YY_CURRENT_BUFFER
33 /* define if you have gettext */
34 #define HAVE_GETTEXT 0
36 /* define if you have isinf */
37 #define HAVE_ISINF 0
39 /* define if you want KPATHSEA */
40 #define KPATHSEA @KPATHSEA@
42 /* define if you have kpatsea header */
43 #define HAVE_KPATHSEA_KPATHSEA_H 0
45 /* define if you have kpse_find_file */
46 #define HAVE_KPSE_FIND_FILE 0
48 /* define if you have kpse_find_tfm */
49 #define HAVE_KPSE_FIND_TFM 0
51 /* define if you have Python.h header */
52 #define HAVE_PYTHON_H 0
54 /* define if explicit instantiation is needed */
55 #undef NEED_EXPLICIT_INSTANTIATION
57 /* define directory and path separators */
58 #define DIRSEP '@DIRSEP@'
59 #define PATHSEP '@PATHSEP@'
61 /* define if you have assert */
62 #define HAVE_ASSERT_H 0
64 /* define if you have sys/stat.h */
65 #define HAVE_SYS_STAT_H 0
67 /* define if you have sys/stat.h */
68 #define STAT_MACROS_BROKEN 0
70 /* define if you have sstream */
71 #define HAVE_SSTREAM 0
73 /* GUILE only includes version in headers (libguile/version.h) as of
74 1.5.x. For some strange reason, they call it SCM.*VERSION. */
75 #include <libguile.h>
77 #ifndef GUILE_MAJOR_VERSION
78 #ifdef SCM_MAJOR_VERSION
79 #define GUILE_MAJOR_VERSION SCM_MAJOR_VERSION
80 #define GUILE_MINOR_VERSION SCM_MINOR_VERSION
81 #define GUILE_PATCH_LEVEL SCM_MICRO_VERSION
82 #else
83 /* define GUILE major version */
84 #define GUILE_MAJOR_VERSION 0
85 /* define GUILE minor version */
86 #define GUILE_MINOR_VERSION 0
87 /* define GUILE patch level */
88 #define GUILE_PATCH_LEVEL 0
89 #endif
90 #endif