]> git.donarmstrong.com Git - lilypond.git/blob - configure.in
* configure.in (--disable-documentation): New switch.
[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 DOCUMENTATION=yes
25 AC_ARG_ENABLE(documentation,
26     [  --enable-documentation  build Documentation.  Default: on],
27     [DOCUMENTATION=$enableval])
28 AC_SUBST(DOCUMENTATION)
29
30 gui_b=no
31 AC_ARG_ENABLE(gui,
32     [  --enable-gui            compile with experimental GNOME output module.  Default: off],
33     [gui_b=$enableval])
34
35 reloc_b=no
36 AC_ARG_ENABLE(relocation,
37     [  --enable-relocation     compile with dynamic relocation.  Default: off],
38     [reloc_b=$enableval])
39
40 LINK_GXX_STATICALLY=no
41 AC_ARG_ENABLE(static-gxx,
42     [  --enable-static-gxx     link libstdc++.a statically. Default: off],
43     [LINK_GXX_STATICALLY=$enableval])
44 AC_SUBST(LINK_GXX_STATICALLY)
45
46 # must come before any header checks
47 STEPMAKE_COMPILE
48
49 STEPMAKE_KPATHSEA
50
51 STEPMAKE_PYTHON(REQUIRED, 2.2)
52 STEPMAKE_GCC(REQUIRED, 2.8)
53 STEPMAKE_CXX(REQUIRED)
54 STEPMAKE_GXX(REQUIRED, 3.0.5)
55 STEPMAKE_CXXTEMPLATE
56 STEPMAKE_LIB(REQUIRED)
57 STEPMAKE_DLOPEN
58 # Do not use bison 1.50 and 1.75.
59 # 1.29 is required fr %locations, but I'm not sure it's enough --ns
60 STEPMAKE_BISON(OPTIONAL, 1.29)
61 STEPMAKE_FLEX(REQUIRED)
62 STEPMAKE_FLEXLEXER(REQUIRED)
63 STEPMAKE_FLEXLEXER_LOCATION
64 AC_LANG_C
65 STEPMAKE_LOCALE
66 STEPMAKE_GETTEXT
67 STEPMAKE_MSGFMT(REQUIRED)
68 STEPMAKE_TEXMF(REQUIRED)
69 STEPMAKE_TEXMF_DIRS
70 STEPMAKE_GUILE_DEVEL(REQUIRED, 1.6.5)
71 STEPMAKE_MAKEINFO(REQUIRED)
72 STEPMAKE_PYTHON_DEVEL(REQUIRED)
73
74 STEPMAKE_PATH_PROG(GHOSTSCRIPT, gs, OPTIONAL, 8.15)
75
76 STEPMAKE_PROGS(MFTRACE, mftrace, REQUIRED, 1.1.9)
77 STEPMAKE_PATH_PROG(FONTFORGE, fontforge, REQUIRED, 20050624)
78
79 AC_CHECK_HEADERS([assert.h grp.h libio.h pwd.h sys/stat.h wchar.h])
80 AC_LANG_PUSH(C++)
81 AC_CHECK_HEADERS([sstream])
82 AC_LANG_POP(C++)
83 AC_HEADER_STAT
84 AC_FUNC_MEMCMP
85 AC_FUNC_VPRINTF
86 AC_CHECK_FUNCS([chroot fopencookie funopen gettext isinf mbrtowc memmem snprintf vsnprintf wcrtomb])
87 AC_CHECK_HEADERS([utf8/wchar.h], LIBS="$LIBS -lutf8")
88 AC_SEARCH_LIBS(mbrtowc, [mingwex msvcp60])
89
90 STEPMAKE_PROGS(PKG_CONFIG, pkg-config, REQUIRED, 0.9.0)
91
92 if test "$gui_b" = "yes"; then
93     STEPMAKE_GTK2(gtk+-2.0, REQUIRED, 2.4.0)
94 fi
95
96 if test "$reloc_b" = "yes"; then
97     AC_DEFINE(ARGV0_RELOCATION)
98 fi
99
100 STEPMAKE_PANGO_FT2(pangoft2, REQUIRED, 1.6.0)
101 #STEPMAKE_PANGO(pango, REQUIRED, 1.6.0)
102 STEPMAKE_FONTCONFIG(fontconfig, REQUIRED, 2.2.0)
103 STEPMAKE_FREETYPE2(freetype2, REQUIRED, 0)
104
105 STEPMAKE_WINDOWS
106
107 ## Optional tools for building documentation, website, extra fonts.
108
109 # guile executable for some scripts
110 STEPMAKE_GUILE(OPTIONAL)
111
112 # perl for help2man.
113 STEPMAKE_PERL(OPTIONAL)
114
115 # New makeinfo for multi-page website docs Simply always require new
116 # makeinfo should avoid bug reports; if people want to build lily
117 # without the docs, they can find this comment and use an older
118 # makeinfo--but hopefully won't report makeinfo problems.
119 STEPMAKE_PROGS(MAKEINFO, makeinfo, REQUIRED, 4.7)
120
121 if test "$optimise_b" = yes; then
122     DEFINES="$DEFINES -DSTRING_UTILS_INLINED"
123     AC_DEFINE(STRINGS_UTILS_INLINED)
124 fi
125
126 AC_DEFINE_UNQUOTED(FLOWER_VERSION, "${FULL_FLOWER_VERSION}")
127
128 # Gather requirements and generate output.
129 STEPMAKE_END
130
131 test -n "$CONFIGURATION" && mc=" conf=$CONFIGURATION" || mc=""
132
133 cat <<EOF
134
135 Type:
136     make$mc all       to build LilyPond
137     make$mc install   to install LilyPond
138     make$mc help      to see all possible targets
139
140 EOF