]> git.donarmstrong.com Git - lilypond.git/blob - configure.in
stepmake/stepmake/generic-targets.make (cvs-clean): also remove out-www dirs.
[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
11 # For stepmake package:
12 # AC_CONFIG_AUX_DIR(bin)
13
14
15 STEPMAKE_INIT
16
17 # List a file that identifies your package.
18 AC_CONFIG_SRCDIR([lily/main.cc])
19
20 # Move to aclocal.m4?
21 AC_CONFIG_HEADER([$CONFIGFILE.hh:config.hh.in])
22
23 # Uncomment the configuration options your package needs.
24
25 DOCUMENTATION=yes
26 AC_ARG_ENABLE(documentation,
27     [  --enable-documentation  build Documentation.  Default: on],
28     [DOCUMENTATION=$enableval])
29 AC_SUBST(DOCUMENTATION)
30
31 gui_b=no
32 AC_ARG_ENABLE(gui,
33     [  --enable-gui            compile with experimental GNOME output.  Default: off],
34     [gui_b=$enableval])
35
36
37 AC_ARG_WITH(ncsb-dir,
38     [  --with-ncsb-dir=DIR     location of Century Schoolbook fonts.],
39     [NCSB_DIR=$withval],
40     )
41
42 reloc_b=no
43 AC_ARG_ENABLE(relocation,
44     [  --enable-relocation     compile with dynamic relocation.  Default: off],
45     [reloc_b=$enableval])
46
47 LINK_GXX_STATICALLY=no
48 AC_ARG_ENABLE(static-gxx,
49     [  --enable-static-gxx     link libstdc++.a statically. Default: off],
50     [LINK_GXX_STATICALLY=$enableval])
51 AC_SUBST(LINK_GXX_STATICALLY)
52
53 # must come before any header checks
54 STEPMAKE_COMPILE
55
56 STEPMAKE_PYTHON(REQUIRED, 2.3)
57 STEPMAKE_GCC(REQUIRED, 4.0)
58 STEPMAKE_CXX(REQUIRED)
59 STEPMAKE_GXX(REQUIRED, 4.0)
60 STEPMAKE_CXXTEMPLATE
61 STEPMAKE_STL_DATA_METHOD
62 STEPMAKE_LIB(REQUIRED)
63 STEPMAKE_DLOPEN
64 # Do not use bison 1.50 and 1.75.
65 # 1.29 is required fr %locations, but I'm not sure it's enough --ns
66 STEPMAKE_BISON(OPTIONAL, 1.29)
67 STEPMAKE_FLEX(REQUIRED)
68 STEPMAKE_FLEXLEXER(REQUIRED)
69 STEPMAKE_FLEXLEXER_LOCATION
70 AC_LANG_C
71 STEPMAKE_LOCALE
72 STEPMAKE_GETTEXT
73 STEPMAKE_MSGFMT(REQUIRED)
74 STEPMAKE_TEXMF(REQUIRED)
75 STEPMAKE_TEXMF_DIRS
76 STEPMAKE_GUILE_DEVEL(REQUIRED, 1.6.7)
77 STEPMAKE_MAKEINFO(REQUIRED, 4.8)
78 STEPMAKE_PYTHON_DEVEL(REQUIRED)
79
80 STEPMAKE_PATH_PROG(GHOSTSCRIPT, gs, OPTIONAL, 8.15)
81
82 STEPMAKE_PROGS(MFTRACE, mftrace, REQUIRED, 1.1.19)
83 STEPMAKE_PROGS(FCMATCH, fc-match, OPTIONAL, 2.1.0)
84 STEPMAKE_PATH_PROG(FONTFORGE, fontforge, REQUIRED, 20050624)
85
86 AC_CHECK_HEADERS([assert.h grp.h libio.h pwd.h sys/stat.h wchar.h])
87 AC_LANG_PUSH(C++)
88 AC_CHECK_HEADERS([sstream])
89 AC_LANG_POP(C++)
90 AC_HEADER_STAT
91 AC_FUNC_MEMCMP
92 AC_FUNC_VPRINTF
93 AC_CHECK_FUNCS([chroot fopencookie funopen gettext isinf mbrtowc memmem snprintf vsnprintf wcrtomb])
94 AC_CHECK_HEADERS([utf8/wchar.h], LIBS="$LIBS -lutf8")
95 AC_SEARCH_LIBS(mbrtowc, [mingwex msvcp60])
96
97 STEPMAKE_PROGS(PKG_CONFIG, pkg-config, REQUIRED, 0.9.0)
98
99 if test "$gui_b" = "yes"; then
100     STEPMAKE_GTK2(gtk+-2.0, REQUIRED, 2.4.0)
101 fi
102
103 if test "$reloc_b" = "yes"; then
104     AC_DEFINE(ARGV0_RELOCATION)
105 fi
106
107 AC_MSG_CHECKING([New Century Schoolbook PFB files])
108
109 if test "$NCSB_DIR" != "" ;  then
110   if  test ! -f "$NCSB_DIR/c059016l.pfb"; then
111       AC_MSG_WARN($NCSB_DIR does not contain c059033l.pfb. Use --with-ncsb-dir)
112   fi
113 fi
114
115
116 AC_MSG_RESULT($NCSB_DIR)
117 AC_SUBST(NCSB_DIR)
118
119 HOST_ARCH=`$CC -dumpmachine`
120 AC_SUBST(HOST_ARCH)
121
122 STEPMAKE_PANGO_FT2(pangoft2, REQUIRED, 1.6.0)
123 #STEPMAKE_PANGO(pango, REQUIRED, 1.6.0)
124 STEPMAKE_FONTCONFIG(fontconfig, REQUIRED, 2.2.0)
125 STEPMAKE_FREETYPE2(freetype2, REQUIRED, 0)
126
127 STEPMAKE_WINDOWS
128
129 ## Optional tools for building documentation, website, extra fonts.
130
131 # guile executable for some scripts
132 STEPMAKE_GUILE(OPTIONAL)
133
134 # perl for help2man.
135 STEPMAKE_PERL(OPTIONAL)
136
137 # New makeinfo for multi-page website docs Simply always require new
138 # makeinfo should avoid bug reports; if people want to build lily
139 # without the docs, they can find this comment and use an older
140 # makeinfo--but hopefully won't report makeinfo problems.
141 STEPMAKE_PROGS(MAKEINFO, makeinfo, REQUIRED, 4.7)
142
143 AC_DEFINE_UNQUOTED(FLOWER_VERSION, "${FULL_FLOWER_VERSION}")
144
145 # Gather requirements and generate output.
146 STEPMAKE_END
147
148 test -n "$CONFIGURATION" && mc=" conf=$CONFIGURATION" || mc=""
149
150 cat <<EOF
151
152 Type:
153     make$mc all       to build LilyPond
154     make$mc install   to install LilyPond
155     make$mc help      to see all possible targets
156
157 EOF