]> git.donarmstrong.com Git - lilypond.git/blobdiff - configure.in
(dump_score): indent of 4 for python code.
[lilypond.git] / configure.in
index 5d74dab46e7969340a991b41bca08c2c967cd5cb..42eeda511c34842d022f8ee25aaf75555fb6d8f0 100644 (file)
-dnl Process this file with autoconf to produce a configure script. -*-shell-script-*-
-
-dnl should cache result.
-dnl should  look in $prefix first.
-
-AC_DEFUN(AC_TEX_SUBDIR, [
-
-    # do something sensible if root hasn't specced dir yet attempts install
-
-    AC_MSG_CHECKING(TeX installation directory)
-
-    ac_tmp_prefix=$prefix
-    test "x$ac_tmp_prefix" = xNONE && ac_tmp_prefix=$ac_default_prefix
-
-    for texdir in $ac_tmp_prefix $ac_tmp_prefix/lib; do
-       if test -d $texdir/texmf; then
-           TEXTOP=$texdir/texmf
-           break
-       else    
-       if test -d $texdir/tex; then 
-           TEXTOP=$texdir/tex
-           break
-       fi
-       fi
-    done
-    $1=$ac_tmp_prefix/lib/texmf/tex
-    if test x = "x$TEXTOP"; then
-       AC_MSG_WARN(Cannot determine a tex-directory. Please use --enable-texprefix)
-    else
-       $1=`$FIND $TEXTOP -type d -a -name tex -print |sort|head -1`
-    fi
-    fi
-
-    AC_MSG_RESULT($$1)
-])
-
-AC_INIT(flower/choleski.cc)
-
-
-AC_LANG_CPLUSPLUS
-printing_b=no
-checking_b=yes
-debug_b=yes
-optimise_b=no
-profile_b=no
-    
-AC_ARG_ENABLE(printing,
-    [  enable-printing        set debug printing],
-    [printing_b=$enableval])
-
-       
-AC_ARG_ENABLE(checking,
-    [  disable-checking       set runtime checks],
-    [checking_b=$enableval] )
-
-
-
-AC_ARG_ENABLE(debug,
-    [  disable-debug          set debug info],
-    [debug_b=$enableval])
-
-AC_ARG_ENABLE(optimise,
-    [  enable-optimise       use maximal speed optimisations],
-    [optimise_b=$enableval])
-    
-   
-AC_ARG_ENABLE(profiling, 
-    [  enable-profiling      compile with gprof support],
-    [profile_b=$enableval])
-    
-AC_ARG_ENABLE(texprefix,
-    [  texprefix=DIR  set the tex-directory to put the lilypond subdir in.],
-    [TEXPREFIX=$enableval],
-    [TEXPREFIX=auto] )
-   
-if test $profile_b = yes; then
-    EXTRA_LIBES="-pg"
-    DEFINES="$DEFINES -pg"
-fi
-    
-if test $printing_b = no; then
-    DEFINES="$DEFINES -DNPRINT=1"
-fi
-    
-if test $debug_b = yes; then   
-    DEFINES="$DEFINES -g"
-fi
-if test $checking_b = no; then
-    DEFINES="$DEFINES -DNDEBUG=1"
-fi
-
-if test $optimise_b = yes; then
-    DEFINES="$DEFINES -O2 -DSTRING_UTILS_INLINED"
-fi
-dnl COMPILEINFO="$HOST $host $TARGET $target"
-AUTOHEADER="This file was automatically generated by configure"
-CXXFLAGS=${CXXFLAGS:-""}       # we don't want -g -O junk
-AC_PROG_CXX
-AC_PROG_RANLIB
-AC_PROG_INSTALL
-AC_CHECK_PROGS(FIND, find, error)
-
-dnl should check out -print
-if test FIND = error; then
-   AC_MSG_WARN(Couldn't find \`find'.  Please use --enable-texprefix)
-else 
-    
-AC_SUBST(CXX)
-AC_SUBST(DEFINES)
-AC_SUBST(COMPILEINFO)
-AC_SUBST(AUTOHEADER)
-AC_SUBST(BISON)
-AC_SUBST(FLEX)
-AC_SUBST(TEXPREFIX)
-AC_SUBST(EXTRA_LIBES)
-
-AC_CHECK_PROGS(BISON, bison, error)
-AC_CHECK_PROGS(FLEX, flex, error)
-AC_CHECK_PROGS(MAKE, make, error)
-AC_CHECK_PROGS(PODMAN, pod2man, error)
-
-if test $TEXPREFIX = auto ; then
-    AC_TEX_SUBDIR(TEXPREFIX)
-fi
-
-if test $MAKE = "error" 
-then
-       AC_MSG_ERROR(Please install GNU make)
-else
-       $MAKE -v| grep GNU >& /dev/null
-       if test "$?" = 1
-       then
-               AC_MSG_WARN(Please install *GNU* make)
-       fi
+dnl configure.in   -*-shell-script-*-
+dnl Process this file with autoconf to produce a configure script. 
+
+# Bootstrap the init proces.
+AC_INIT
+
+# Bootstrap StepMake configure
+# For user package:
+AC_CONFIG_AUX_DIR([stepmake/bin])
+
+# For stepmake package:
+# AC_CONFIG_AUX_DIR(bin)
+
+
+STEPMAKE_INIT
+
+# List a file that identifies your package.
+AC_CONFIG_SRCDIR([lily/main.cc])
+
+# Move to aclocal.m4?
+AC_CONFIG_HEADER([$CONFIGFILE.hh:config.hh.in])
+
+# Uncomment the configuration options your package needs.
+
+DOCUMENTATION=yes
+AC_ARG_ENABLE(documentation,
+    [  --enable-documentation  build Documentation.  Default: on],
+    [DOCUMENTATION=$enableval])
+AC_SUBST(DOCUMENTATION)
+
+gui_b=no
+AC_ARG_ENABLE(gui,
+    [  --enable-gui            compile with experimental GNOME output.  Default: off],
+    [gui_b=$enableval])
+
+
+NCSB_DIR=unknown
+AC_ARG_WITH(ncsb-dir,
+[  --with-ncsb-dir=DIR     location of Century Schoolbook fonts.],
+    [NCSB_DIR=$withval])
+
+reloc_b=no
+AC_ARG_ENABLE(relocation,
+    [  --enable-relocation     compile with dynamic relocation.  Default: off],
+    [reloc_b=$enableval])
+
+LINK_GXX_STATICALLY=no
+AC_ARG_ENABLE(static-gxx,
+    [  --enable-static-gxx     link libstdc++.a statically. Default: off],
+    [LINK_GXX_STATICALLY=$enableval])
+AC_SUBST(LINK_GXX_STATICALLY)
+
+# must come before any header checks
+STEPMAKE_COMPILE
+
+STEPMAKE_PYTHON(REQUIRED, 2.3)
+STEPMAKE_GCC(REQUIRED, 4.0)
+STEPMAKE_CXX(REQUIRED)
+STEPMAKE_GXX(REQUIRED, 4.0)
+STEPMAKE_CXXTEMPLATE
+STEPMAKE_STL_DATA_METHOD
+STEPMAKE_LIB(REQUIRED)
+STEPMAKE_DLOPEN
+# Do not use bison 1.50 and 1.75.
+# 1.29 is required fr %locations, but I'm not sure it's enough --ns
+STEPMAKE_BISON(OPTIONAL, 1.29)
+STEPMAKE_FLEX(REQUIRED)
+STEPMAKE_FLEXLEXER(REQUIRED)
+STEPMAKE_FLEXLEXER_LOCATION
+AC_LANG_C
+STEPMAKE_LOCALE
+STEPMAKE_GETTEXT
+STEPMAKE_MSGFMT(REQUIRED)
+STEPMAKE_TEXMF(REQUIRED)
+STEPMAKE_TEXMF_DIRS
+STEPMAKE_GUILE_DEVEL(REQUIRED, 1.6.7)
+STEPMAKE_MAKEINFO(REQUIRED, 4.8)
+STEPMAKE_PYTHON_DEVEL(REQUIRED)
+
+STEPMAKE_PATH_PROG(GHOSTSCRIPT, gs, OPTIONAL, 8.15)
+
+STEPMAKE_PROGS(MFTRACE, mftrace, REQUIRED, 1.1.19)
+STEPMAKE_PATH_PROG(FONTFORGE, fontforge, REQUIRED, 20050624)
+
+AC_CHECK_HEADERS([assert.h grp.h libio.h pwd.h sys/stat.h wchar.h])
+AC_LANG_PUSH(C++)
+AC_CHECK_HEADERS([sstream])
+AC_LANG_POP(C++)
+AC_HEADER_STAT
+AC_FUNC_MEMCMP
+AC_FUNC_VPRINTF
+AC_CHECK_FUNCS([chroot fopencookie funopen gettext isinf mbrtowc memmem snprintf vsnprintf wcrtomb])
+AC_CHECK_HEADERS([utf8/wchar.h], LIBS="$LIBS -lutf8")
+AC_SEARCH_LIBS(mbrtowc, [mingwex msvcp60])
+
+STEPMAKE_PROGS(PKG_CONFIG, pkg-config, REQUIRED, 0.9.0)
+
+if test "$gui_b" = "yes"; then
+    STEPMAKE_GTK2(gtk+-2.0, REQUIRED, 2.4.0)
 fi
 
-
-if test $BISON = "error" 
-then
-       AC_MSG_WARN(can't find bison. Please install Bison (1.24 or better))
-fi
-
-if test $PODMAN = "error" 
-then
-       AC_MSG_WARN(can't find pod. You should install Perl (version 5 or better))
-fi
-
-if test $FLEX = "error" 
-then
-       AC_MSG_WARN(can't find flex. Please install Flex (2.5 or better))
+if test "$reloc_b" = "yes"; then
+    AC_DEFINE(ARGV0_RELOCATION)
 fi
 
-if $CXX --version | grep '2\.7' >& /dev/null
-then
-       true
-else
-       AC_MSG_WARN(can't find g++ 2.7)
+AC_MSG_CHECKING([New Century Schoolbook PFB files])
+if test "$NCSB_DIR" = "unknown"; then
+    AC_MSG_WARN(Use --enable-ncsb-path to set path)
 fi
 
-AC_CHECK_HEADER(FlexLexer.h, true,
-       AC_MSG_WARN(can't find flex header. Please install Flex headers correctly))
-AC_CONFIG_SUBDIRS(flower)
-AC_OUTPUT(make/out/Configure_variables.make:make/Configure_variables.make.in
-    Makefile:make/Toplevel.make.in
-    )
-
 
+AC_MSG_RESULT($NCSB_DIR)
+AC_SUBST(NCSB_DIR)
 
-dnl URG!!!!!!
-eval "DIR_DATADIR=$datadir"
-DIR_DATADIR="$DIR_DATADIR/lilypond"
-AC_MSG_CHECKING
+HOST_ARCH=`$CC -dumpmachine`
+AC_SUBST(HOST_ARCH)
 
-cat << EOF > lib/out/config.hh
+STEPMAKE_PANGO_FT2(pangoft2, REQUIRED, 1.6.0)
+#STEPMAKE_PANGO(pango, REQUIRED, 1.6.0)
+STEPMAKE_FONTCONFIG(fontconfig, REQUIRED, 2.2.0)
+STEPMAKE_FREETYPE2(freetype2, REQUIRED, 0)
 
-/* automatically generated by configure */
-/* include this file only once! */
+STEPMAKE_WINDOWS
 
-#define  DIR_DATADIR "$DIR_DATADIR"
+## Optional tools for building documentation, website, extra fonts.
 
-EOF
+# guile executable for some scripts
+STEPMAKE_GUILE(OPTIONAL)
 
-CXX="$ac_cv_prog_CXX" bin/make_version >> lib/out/config.hh
+# perl for help2man.
+STEPMAKE_PERL(OPTIONAL)
 
-touch make/out/Site.make
+# New makeinfo for multi-page website docs Simply always require new
+# makeinfo should avoid bug reports; if people want to build lily
+# without the docs, they can find this comment and use an older
+# makeinfo--but hopefully won't report makeinfo problems.
+STEPMAKE_PROGS(MAKEINFO, makeinfo, REQUIRED, 4.7)
 
-# ugr
-(cd mi2mu; CXX="$ac_cv_prog_CXX" ../bin/make_version > out/version.hh
-dnl    echo 0 > out/.build
-)
-# rgu
-sed 's/TOPLEVEL_//g' <  .version >  lily/.version
-(cd lily; CXX="$ac_cv_prog_CXX" ../bin/make_version > out/version.hh
-)
- (cd flower;
-)
+AC_DEFINE_UNQUOTED(FLOWER_VERSION, "${FULL_FLOWER_VERSION}")
 
-cat << END
-Finished configuring. For making everything, do:
+# Gather requirements and generate output.
+STEPMAKE_END
 
-       make all
+test -n "$CONFIGURATION" && mc=" conf=$CONFIGURATION" || mc=""
 
-If you only want help on the make targets, do a
+cat <<EOF
 
-       make help
+Type:
+    make$mc all       to build LilyPond
+    make$mc install   to install LilyPond
+    make$mc help      to see all possible targets
 
-END
+EOF