]> git.donarmstrong.com Git - lilypond.git/blob - configure.in
* stepmake/aclocal.m4: Check for libkpathsea.so.
[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 # List a file that identifies your package.
17 AC_CONFIG_SRCDIR([lily/main.cc])
18
19 # Move to aclocal.m4?
20 AC_CONFIG_HEADER([$CONFIGFILE.hh:config.hh.in])
21
22 # Uncomment the configuration options your package needs.
23
24
25 gui_b=no
26 AC_ARG_ENABLE(gui,
27     [  --enable-gui            compile with experimental GNOME output module.  Default: off],
28     [gui_b=$enableval])
29
30 # must come before any header checks
31 STEPMAKE_COMPILE
32
33 STEPMAKE_PYTHON(REQUIRED,2.1)
34 STEPMAKE_GCC(REQUIRED, 2.8)
35 STEPMAKE_CXX(REQUIRED)
36 STEPMAKE_GXX(REQUIRED, 3.0.5)
37 STEPMAKE_CXXTEMPLATE
38 STEPMAKE_LIB(REQUIRED)
39 STEPMAKE_DLOPEN
40 # Do not use bison 1.50 and 1.75.
41 # 1.29 is required fr %locations, but I'm not sure it's enough --ns
42 STEPMAKE_BISON(REQUIRED, 1.29)
43 STEPMAKE_FLEX(REQUIRED)
44 STEPMAKE_FLEXLEXER(REQUIRED)
45 AC_LANG_C
46 STEPMAKE_LOCALE
47 STEPMAKE_GETTEXT
48 STEPMAKE_MSGFMT(REQUIRED)
49 STEPMAKE_TEXMF(REQUIRED)
50 STEPMAKE_TEXMF_DIRS
51 STEPMAKE_GUILE_DEVEL(REQUIRED, 1.6.5)
52 STEPMAKE_KPATHSEA
53 STEPMAKE_MAKEINFO(REQUIRED)
54 STEPMAKE_PYTHON_DEVEL(REQUIRED)
55
56 STEPMAKE_PROGS(MFTRACE, mftrace, REQUIRED, 1.1.1)
57 STEPMAKE_PATH_PROG(FONTFORGE, fontforge, REQUIRED, 20041208)
58
59 AC_CHECK_HEADERS([assert.h libio.h sys/stat.h])
60 AC_LANG_PUSH(C++)
61 AC_CHECK_HEADERS([sstream])
62 AC_LANG_POP(C++)
63 AC_HEADER_STAT
64 AC_FUNC_MEMCMP
65 AC_FUNC_VPRINTF
66 AC_CHECK_FUNCS([fopencookie funopen gettext isinf memmem snprintf vsnprintf])
67
68
69 if test "$gui_b" = "yes"; then
70     STEPMAKE_GTK2
71 fi
72
73 STEPMAKE_FREETYPE2
74 STEPMAKE_PANGO_FT2
75
76 ## TTFTOOL stuff
77 AC_C_BIGENDIAN(TTFTOOL_ENDIAN="-DBIGENDIAN",
78                TTFTOOL_ENDIAN="-DSMALLENDIAN")
79 AC_SUBST(TTFTOOL_ENDIAN)
80
81 ## Optional tools for building documentation, website, extra fonts.
82
83 # guile executable for some scripts
84 STEPMAKE_GUILE(OPTIONAL)
85 # perl for help2man.
86 STEPMAKE_PERL(OPTIONAL)
87
88
89
90 # New makeinfo for multi-page website docs Simply always require new
91 # makeinfo should avoid bug reports; if people want to build lily
92 # without the docs, they can find this comment and use an older
93 # makeinfo -- but hopefully won't report makeinfo problems.
94 STEPMAKE_PROGS(MAKEINFO, makeinfo, REQUIRED, 4.7)
95 AC_SUBST(MAKEINFO_VERSION)
96
97
98 if test "$optimise_b" = yes; then
99     DEFINES="$DEFINES -DSTRING_UTILS_INLINED"
100     AC_DEFINE(STRINGS_UTILS_INLINED)
101 fi
102
103 AC_DEFINE_UNQUOTED(FLOWER_VERSION, "${FULL_FLOWER_VERSION}")
104
105 # Gather requirements and generate output.
106 STEPMAKE_END
107
108
109 test -n "$CONFIGURATION" && mc=" conf=$CONFIGURATION" || mc=""
110
111 cat <<EOF
112
113 Type:
114     make$mc all       to build LilyPond
115     make$mc install   to install LilyPond
116     make$mc help      to see all possible targets
117
118 EOF