]> git.donarmstrong.com Git - lilypond.git/blob - configure.in
28e7d287f3664ae4b8d5108f31958cdb8f859597
[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.5)
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, mftrace, OPTIONAL, 1.0.27)
66
67 # new makeinfo for multi-page website docs
68 STEPMAKE_PROGS(MAKEINFO, makeinfo, OPTIONAL, 4.6)
69 AC_SUBST(MAKEINFO_VERSION)
70
71
72 if test "$optimise_b" = yes; then
73     DEFINES="$DEFINES -DSTRING_UTILS_INLINED"
74     AC_DEFINE(STRINGS_UTILS_INLINED)
75 fi
76
77
78 AC_DEFINE_UNQUOTED(TOPLEVEL_VERSION, "${FULL_VERSION}")
79 AC_DEFINE_UNQUOTED(FLOWER_VERSION, "${FULL_FLOWER_VERSION}")
80
81 # Gather requirements and generate output.
82 STEPMAKE_END
83
84
85 test -n "$CONFIGURATION" && mc=" conf=$CONFIGURATION" || mc=""
86
87 cat <<EOF
88
89 Type:
90     make$mc all       to build LilyPond
91     make$mc install   to install LilyPond
92     make$mc help      to see all possible targets
93
94 Do not worry if ./Documentation should not build.
95 EOF