]> git.donarmstrong.com Git - lilypond.git/blob - configure.in
22b0229ea595dbfe5657caccf703dc3da9544b3e
[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.  List a file identifies your package.
5 AC_INIT(make/lilypond.lsm.in)
6 AC_CONFIG_HEADER($CONFIGFILE.h:config.hh.in)
7
8 # Bootstrap StepMake configure
9 STEPMAKE_INIT
10
11 # For all packages except the StepMake package itself
12 AC_CONFIG_SUBDIRS(stepmake)
13
14 # Uncomment the configuration options your package needs.
15 STEPMAKE_COMPILE
16 # AC_HAVE_HEADERS(limits.h malloc.h string.h unistd.h values.h)
17 AC_HAVE_HEADERS(assert.h sys/stat.h)
18 AC_HEADER_STAT
19
20 STEPMAKE_CXX(REQUIRED)
21 STEPMAKE_GXX(REQUIRED)
22 STEPMAKE_CXXTEMPLATE
23 STEPMAKE_BISON(REQUIRED, 1.25)
24 STEPMAKE_FLEX(REQUIRED)
25 STEPMAKE_LIB(REQUIRED)
26 STEPMAKE_LOCALE
27 STEPMAKE_GETTEXT
28 STEPMAKE_MSGFMT(REQUIRED)
29 STEPMAKE_TEXMF
30 STEPMAKE_TEXMF_DIRS
31 STEPMAKE_GUILE_DEVEL(REQUIRED, 1.3.4)
32 STEPMAKE_KPATHSEA
33 STEPMAKE_MAKEINFO(REQUIRED)
34 STEPMAKE_PYTHON_DEVEL(REQUIRED)
35
36
37 ## Optional tools for building documentation, website, extra fonts.
38
39 # guile executable for some scripts
40 STEPMAKE_GUILE(OPTIONAL)
41 # perl for help2man.
42 STEPMAKE_PERL(OPTIONAL)
43 # pktrace for generating pfa's, pfb's
44 STEPMAKE_PROGS(PKTRACE, pktrace, OPTIONAL, 1.0.3)
45 # new makeinfo for multi-page website docs
46 STEPMAKE_PROGS(MAKEINFO, makeinfo, OPTIONAL, 4.1)
47
48
49 if test "$optimise_b" = yes; then
50     DEFINES="$DEFINES -DSTRING_UTILS_INLINED"
51     AC_DEFINE(STRINGS_UTILS_INLINED)
52 fi
53
54
55 AC_FUNC_MEMCMP
56 AC_FUNC_VPRINTF
57 AC_CHECK_FUNCS(memmem snprintf vsnprintf gettext isinf)
58
59 AC_DEFINE_UNQUOTED(TOPLEVEL_VERSION, "${FULL_VERSION}")
60 AC_DEFINE_UNQUOTED(FLOWER_VERSION, "${FULL_FLOWER_VERSION}")
61
62 # Gather requirements and generate output.
63 STEPMAKE_END
64
65
66 test -n "$CONFIGURATION" && mc=" conf=$CONFIGURATION" || mc=""
67
68 cat <<EOF
69
70 Type:
71     make$mc all       to build LilyPond
72     make$mc install   to install LilyPond
73     make$mc help      to see all possible targets
74
75 Do not worry if ./Documentation or ./mutopia should not build.
76 EOF