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