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