]> git.donarmstrong.com Git - lilypond.git/blob - configure.in
* configure.in: check for C language.
[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 AC_LANG_C
40 STEPMAKE_LOCALE
41 STEPMAKE_GETTEXT
42 STEPMAKE_MSGFMT(REQUIRED)
43 STEPMAKE_TEXMF
44 STEPMAKE_TEXMF_DIRS
45 STEPMAKE_GUILE_DEVEL(REQUIRED, 1.6)
46 STEPMAKE_KPATHSEA
47 STEPMAKE_MAKEINFO(REQUIRED)
48 STEPMAKE_PYTHON_DEVEL(REQUIRED)
49
50
51 AC_CHECK_HEADERS([assert.h sys/stat.h sstream])
52 AC_HEADER_STAT
53
54 AC_FUNC_MEMCMP
55 AC_FUNC_VPRINTF
56 AC_CHECK_FUNCS([gettext isinf memmem snprintf vsnprintf gettext])
57
58
59 ## Optional tools for building documentation, website, extra fonts.
60
61 # guile executable for some scripts
62 STEPMAKE_GUILE(OPTIONAL)
63 # perl for help2man.
64 STEPMAKE_PERL(OPTIONAL)
65 # mftrace for generating pfa's, pfb's
66 STEPMAKE_PROGS(MFTRACE, mftrace, OPTIONAL, 1.0.27)
67
68 # new makeinfo for multi-page website docs
69 STEPMAKE_PROGS(MAKEINFO, makeinfo, OPTIONAL, 4.6)
70 AC_SUBST(MAKEINFO_VERSION)
71
72
73 if test "$optimise_b" = yes; then
74     DEFINES="$DEFINES -DSTRING_UTILS_INLINED"
75     AC_DEFINE(STRINGS_UTILS_INLINED)
76 fi
77
78
79 AC_DEFINE_UNQUOTED(TOPLEVEL_VERSION, "${FULL_VERSION}")
80 AC_DEFINE_UNQUOTED(FLOWER_VERSION, "${FULL_FLOWER_VERSION}")
81
82 # Gather requirements and generate output.
83 STEPMAKE_END
84
85
86 test -n "$CONFIGURATION" && mc=" conf=$CONFIGURATION" || mc=""
87
88 cat <<EOF
89
90 Type:
91     make$mc all       to build LilyPond
92     make$mc install   to install LilyPond
93     make$mc help      to see all possible targets
94
95 Do not worry if ./Documentation should not build.
96 EOF