]> git.donarmstrong.com Git - lilypond.git/blob - configure.in
General editing (backport).
[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 NCSB_DIR=unknown
38 AC_ARG_WITH(ncsb-dir,
39 [  --with-ncsb-dir=DIR     location of Century Schoolbook fonts
40                             Default: detect with fc-match(1)],
41     [NCSB_DIR=$withval], [NCSB_DIR=""])
42
43 reloc_b=no
44 AC_ARG_ENABLE(relocation,
45     [  --enable-relocation     compile with dynamic relocation.  Default: off],
46     [reloc_b=$enableval])
47
48 LINK_GXX_STATICALLY=no
49 AC_ARG_ENABLE(static-gxx,
50     [  --enable-static-gxx     link libstdc++.a statically. Default: off],
51     [LINK_GXX_STATICALLY=$enableval])
52 AC_SUBST(LINK_GXX_STATICALLY)
53
54 # must come before any header checks
55 STEPMAKE_COMPILE
56
57
58
59   
60 AC_CHECK_PROG(FCMATCH, fc-match, fc-match)
61 AC_MSG_CHECKING([New Century Schoolbook PFB files])
62 AC_SUBST(NCSB_SOURCE_FILES)
63 if test "$NCSB_DIR" != "" ;  then
64   NCSB_SOURCE_FILES=""
65   for f in c059013l c059016l c059033l c059036l; do
66     if test ! -f "$NCSB_DIR/$f.pfb"; then
67       AC_MSG_WARN($NCSB_DIR does not contain $f.pfb.)
68     else
69       NCSB_SOURCE_FILES="$NCSB_DIR/$f.pfb $NCSB_SOURCE_FILES"
70     fi
71   done
72 else
73   if test "$FCMATCH" != ""; then
74     for style in Roman Italic "Bold Italic" Bold; do
75       NCSB_FILE=`$FCMATCH --verbose 'Century Schoolbook L:style=$style' | grep 'file:'`
76
77       NCSB_FILE=`echo $NCSB_FILE | sed 's/^.*"\(.*\)".*$/\1/g'`
78       NCSB_SOURCE_FILES="$NCSB_FILE $NCSB_SOURCE_FILES"
79     done
80   else
81     AC_MSG_RESULT(not found)
82     echo "Can't find Century Schoolbook files. Install FontConfig's fc-match,"
83     echo "or use --with-ncsb-dir"
84   fi
85 fi
86 AC_MSG_RESULT($NCSB_SOURCE_FILES)
87
88
89 STEPMAKE_PYTHON(REQUIRED, 2.2)
90 STEPMAKE_GCC(REQUIRED, 2.8)
91 STEPMAKE_CXX(REQUIRED)
92 STEPMAKE_GXX(REQUIRED, 3.0.5)
93 STEPMAKE_CXXTEMPLATE
94 STEPMAKE_STL_DATA_METHOD
95 STEPMAKE_LIB(REQUIRED)
96 STEPMAKE_DLOPEN
97 # Do not use bison 1.50 and 1.75.
98 # 1.29 is required fr %locations, but I'm not sure it's enough --ns
99 STEPMAKE_BISON(OPTIONAL, 1.29)
100 STEPMAKE_FLEX(REQUIRED)
101 STEPMAKE_FLEXLEXER(REQUIRED)
102 STEPMAKE_FLEXLEXER_LOCATION
103 AC_LANG_C
104 STEPMAKE_LOCALE
105 STEPMAKE_GETTEXT
106 STEPMAKE_MSGFMT(REQUIRED)
107 STEPMAKE_TEXMF(REQUIRED)
108 STEPMAKE_TEXMF_DIRS
109 STEPMAKE_GUILE_DEVEL(REQUIRED, 1.6.5)
110 STEPMAKE_MAKEINFO(REQUIRED)
111 STEPMAKE_PYTHON_DEVEL(REQUIRED)
112
113 STEPMAKE_PATH_PROG(GHOSTSCRIPT, gs, OPTIONAL, 8.15)
114
115 STEPMAKE_PROGS(MFTRACE, mftrace, REQUIRED, 1.1.9)
116 STEPMAKE_PATH_PROG(FONTFORGE, fontforge, REQUIRED, 20050624)
117
118 AC_CHECK_HEADERS([assert.h grp.h libio.h pwd.h sys/stat.h wchar.h])
119 AC_LANG_PUSH(C++)
120 AC_CHECK_HEADERS([sstream])
121 AC_LANG_POP(C++)
122 AC_HEADER_STAT
123 AC_FUNC_MEMCMP
124 AC_FUNC_VPRINTF
125 AC_CHECK_FUNCS([chroot fopencookie funopen gettext isinf mbrtowc memmem snprintf vsnprintf wcrtomb])
126 AC_CHECK_HEADERS([utf8/wchar.h], LIBS="$LIBS -lutf8")
127 AC_SEARCH_LIBS(mbrtowc, [mingwex msvcp60])
128
129 STEPMAKE_PROGS(PKG_CONFIG, pkg-config, REQUIRED, 0.9.0)
130
131 if test "$gui_b" = "yes"; then
132     STEPMAKE_GTK2(gtk+-2.0, REQUIRED, 2.4.0)
133 fi
134
135 if test "$reloc_b" = "yes"; then
136     AC_DEFINE(ARGV0_RELOCATION)
137 fi
138
139
140
141 HOST_ARCH=`$CC -dumpmachine`
142 AC_SUBST(HOST_ARCH)
143
144 STEPMAKE_PANGO_FT2(pangoft2, REQUIRED, 1.6.0)
145 #STEPMAKE_PANGO(pango, REQUIRED, 1.6.0)
146 STEPMAKE_FONTCONFIG(fontconfig, REQUIRED, 2.2.0)
147 STEPMAKE_FREETYPE2(freetype2, REQUIRED, 0)
148
149 STEPMAKE_WINDOWS
150
151 ## Optional tools for building documentation, website, extra fonts.
152
153 # guile executable for some scripts
154 STEPMAKE_GUILE(OPTIONAL)
155
156 # perl for help2man.
157 STEPMAKE_PERL(OPTIONAL)
158
159 # New makeinfo for multi-page website docs Simply always require new
160 # makeinfo should avoid bug reports; if people want to build lily
161 # without the docs, they can find this comment and use an older
162 # makeinfo--but hopefully won't report makeinfo problems.
163 STEPMAKE_PROGS(MAKEINFO, makeinfo, REQUIRED, 4.7)
164
165 AC_DEFINE_UNQUOTED(FLOWER_VERSION, "${FULL_FLOWER_VERSION}")
166
167 # Gather requirements and generate output.
168 STEPMAKE_END
169
170 test -n "$CONFIGURATION" && mc=" conf=$CONFIGURATION" || mc=""
171
172 cat <<EOF
173
174 Type:
175     make$mc all       to build LilyPond
176     make$mc install   to install LilyPond
177     make$mc help      to see all possible targets
178
179 EOF