]> git.donarmstrong.com Git - lilypond.git/blob - configure.in
* Documentation/topdocs/INSTALL.texi (Top): remove Flex
[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_KPATHSEA
34
35 STEPMAKE_PYTHON(REQUIRED, 2.1)
36 STEPMAKE_GCC(REQUIRED, 2.8)
37 STEPMAKE_CXX(REQUIRED)
38 STEPMAKE_GXX(REQUIRED, 3.0.5)
39 STEPMAKE_CXXTEMPLATE
40 STEPMAKE_LIB(REQUIRED)
41 STEPMAKE_DLOPEN
42 # Do not use bison 1.50 and 1.75.
43 # 1.29 is required fr %locations, but I'm not sure it's enough --ns
44 STEPMAKE_BISON(OPTIONAL, 1.29)
45 STEPMAKE_FLEX(REQUIRED)
46 STEPMAKE_FLEXLEXER(REQUIRED)
47 STEPMAKE_FLEXLEXER_LOCATION
48 AC_LANG_C
49 STEPMAKE_LOCALE
50 STEPMAKE_GETTEXT
51 STEPMAKE_MSGFMT(REQUIRED)
52 STEPMAKE_TEXMF(REQUIRED)
53 STEPMAKE_TEXMF_DIRS
54 STEPMAKE_GUILE_DEVEL(REQUIRED, 1.6.5)
55 STEPMAKE_MAKEINFO(REQUIRED)
56 STEPMAKE_PYTHON_DEVEL(REQUIRED)
57
58 STEPMAKE_PATH_PROG(GHOSTSCRIPT, gs, OPTIONAL, 8.14)
59
60 STEPMAKE_PROGS(MFTRACE, mftrace, REQUIRED, 1.1.1)
61 STEPMAKE_PATH_PROG(FONTFORGE, fontforge, REQUIRED, 20041208)
62
63 AC_CHECK_HEADERS([assert.h grp.h libio.h pwd.h sys/stat.h wchar.h])
64 AC_LANG_PUSH(C++)
65 AC_CHECK_HEADERS([sstream])
66 AC_LANG_POP(C++)
67 AC_HEADER_STAT
68 AC_FUNC_MEMCMP
69 AC_FUNC_VPRINTF
70 AC_CHECK_FUNCS([chroot fopencookie funopen gettext isinf mbrtowc memmem snprintf vsnprintf wcrtomb])
71 AC_CHECK_HEADERS([utf8/wchar.h], LIBS="$LIBS -lutf8")
72 AC_SEARCH_LIBS(mbrtowc, [mingwex msvcp60])
73
74 STEPMAKE_PROGS(PKG_CONFIG, pkg-config, REQUIRED, 0.9.0)
75 if test "$gui_b" = "yes"; then
76     STEPMAKE_GTK2(gtk+-2.0, REQUIRED, 2.4.0)
77 fi # $gui_b
78
79 STEPMAKE_FREETYPE2(freetype2, REQUIRED, 0)
80 #STEPMAKE_PANGO(pango, REQUIRED, 1.6.0)
81 STEPMAKE_PANGO_FT2(pangoft2, REQUIRED, 1.6.0)
82 STEPMAKE_FONTCONFIG(fontconfig, OPTIONAL, 2.2.0)
83
84 ## TTFTOOL stuff
85 AC_C_BIGENDIAN(TTFTOOL_ENDIAN="-DBIGENDIAN",
86                TTFTOOL_ENDIAN="-DSMALLENDIAN")
87 AC_SUBST(TTFTOOL_ENDIAN)
88
89 STEPMAKE_WINDOWS
90
91 ## Optional tools for building documentation, website, extra fonts.
92
93 # guile executable for some scripts
94 STEPMAKE_GUILE(OPTIONAL)
95
96 # perl for help2man.
97 STEPMAKE_PERL(OPTIONAL)
98
99 # New makeinfo for multi-page website docs Simply always require new
100 # makeinfo should avoid bug reports; if people want to build lily
101 # without the docs, they can find this comment and use an older
102 # makeinfo -- but hopefully won't report makeinfo problems.
103 STEPMAKE_PROGS(MAKEINFO, makeinfo, REQUIRED, 4.7)
104
105 if test "$optimise_b" = yes; then
106     DEFINES="$DEFINES -DSTRING_UTILS_INLINED"
107     AC_DEFINE(STRINGS_UTILS_INLINED)
108 fi
109
110 AC_DEFINE_UNQUOTED(FLOWER_VERSION, "${FULL_FLOWER_VERSION}")
111
112 # Gather requirements and generate output.
113 STEPMAKE_END
114
115 test -n "$CONFIGURATION" && mc=" conf=$CONFIGURATION" || mc=""
116
117 cat <<EOF
118
119 Type:
120     make$mc all       to build LilyPond
121     make$mc install   to install LilyPond
122     make$mc help      to see all possible targets
123
124 EOF