]> git.donarmstrong.com Git - lilypond.git/blob - configure.in
*** empty log message ***
[lilypond.git] / configure.in
1 dnl configure.in   -*-shell-script-*-
2 dnl Process this file with autoconf to produce a configure script. 
3
4 # Bootstrap the init proces.
5 AC_INIT
6
7 # Bootstrap StepMake configure
8 # For user package:
9 AC_CONFIG_AUX_DIR([stepmake/bin])
10 # For stepmake package:
11 # AC_CONFIG_AUX_DIR(bin)
12
13
14 STEPMAKE_INIT
15
16
17
18 # List a file that identifies your package.
19 AC_CONFIG_SRCDIR([lily/main.cc])
20
21 # Move to aclocal.m4?
22 AC_CONFIG_HEADER([$CONFIGFILE.h:config.hh.in])
23
24 # Uncomment the configuration options your package needs.
25
26 # must come before any header checks
27 STEPMAKE_COMPILE
28
29 STEPMAKE_PYTHON(REQUIRED,2.1)
30 STEPMAKE_GCC(REQUIRED, 2.8)
31 STEPMAKE_CXX(REQUIRED)
32 STEPMAKE_GXX(REQUIRED, 3.0)
33 STEPMAKE_CXXTEMPLATE
34 STEPMAKE_LIB(REQUIRED)
35 # Do not use bison 1.50 and 1.75.
36 STEPMAKE_BISON(REQUIRED, 1.25)
37 STEPMAKE_FLEX(REQUIRED)
38 STEPMAKE_FLEXLEXER(REQUIRED)
39 STEPMAKE_LOCALE
40 STEPMAKE_GETTEXT
41 STEPMAKE_MSGFMT(REQUIRED)
42 STEPMAKE_TEXMF
43 STEPMAKE_TEXMF_DIRS
44 STEPMAKE_GUILE_DEVEL(REQUIRED, 1.6)
45 STEPMAKE_KPATHSEA
46 STEPMAKE_MAKEINFO(REQUIRED)
47 STEPMAKE_PYTHON_DEVEL(REQUIRED)
48
49
50 AC_CHECK_HEADERS([assert.h sys/stat.h sstream])
51 AC_HEADER_STAT
52
53 AC_FUNC_MEMCMP
54 AC_FUNC_VPRINTF
55 AC_CHECK_FUNCS([gettext isinf memmem snprintf vsnprintf gettext])
56
57
58 ## Optional tools for building documentation, website, extra fonts.
59
60 # guile executable for some scripts
61 STEPMAKE_GUILE(OPTIONAL)
62 # perl for help2man.
63 STEPMAKE_PERL(OPTIONAL)
64 # mftrace for generating pfa's, pfb's
65 STEPMAKE_PROGS(MFTRACE, pktrace mftrace, REQUIRED, 1.0.17)
66 # new makeinfo for multi-page website docs
67 STEPMAKE_PROGS(MAKEINFO, makeinfo, OPTIONAL, 4.6)
68
69
70 if test "$optimise_b" = yes; then
71     DEFINES="$DEFINES -DSTRING_UTILS_INLINED"
72     AC_DEFINE(STRINGS_UTILS_INLINED)
73 fi
74
75
76 AC_DEFINE_UNQUOTED(TOPLEVEL_VERSION, "${FULL_VERSION}")
77 AC_DEFINE_UNQUOTED(FLOWER_VERSION, "${FULL_FLOWER_VERSION}")
78
79 # Gather requirements and generate output.
80 STEPMAKE_END
81
82
83 test -n "$CONFIGURATION" && mc=" conf=$CONFIGURATION" || mc=""
84
85 cat <<EOF
86
87 Type:
88     make$mc all       to build LilyPond
89     make$mc install   to install LilyPond
90     make$mc help      to see all possible targets
91
92 Do not worry if ./Documentation should not build.
93 EOF