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