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