]> git.donarmstrong.com Git - lilypond.git/blobdiff - configure.in
* Documentation/windows/zlily-profile.sh:
[lilypond.git] / configure.in
index 17f737ab456f0d226df9e0351589063ebba4c4e9..6f70a28f4396e2b2aff561cf1aa251a83604b037 100644 (file)
-dnl -*-shell-script-*-
-dnl  Process this file with autoconf to produce a configure 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
-#shared_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"
+dnl configure.in   -*-shell-script-*-
+dnl Process this file with autoconf to produce a configure script. 
+
+# Bootstrap the init proces.  List a file identifies your package.
+AC_INIT(make/lilypond.lsm.in)
+AC_CONFIG_HEADER($CONFIGFILE.h:config.hh.in)
+
+# Bootstrap StepMake configure
+STEPMAKE_INIT
+
+# For all packages except the StepMake package itself
+AC_CONFIG_SUBDIRS(stepmake)
+
+# Uncomment the configuration options your package needs.
+
+# must come before any header checks
+STEPMAKE_COMPILE
+
+STEPMAKE_GCC(REQUIRED, 2.8)
+STEPMAKE_CXX(REQUIRED)
+STEPMAKE_GXX(REQUIRED, 2.95)
+STEPMAKE_CXXTEMPLATE
+STEPMAKE_LIB(REQUIRED)
+STEPMAKE_BISON(REQUIRED, 1.25)
+STEPMAKE_FLEX(REQUIRED)
+STEPMAKE_FLEXLEXER(REQUIRED)
+STEPMAKE_LOCALE
+STEPMAKE_GETTEXT
+STEPMAKE_MSGFMT(REQUIRED)
+STEPMAKE_TEXMF
+STEPMAKE_TEXMF_DIRS
+STEPMAKE_GUILE_DEVEL(REQUIRED, 1.3.4)
+STEPMAKE_KPATHSEA
+STEPMAKE_MAKEINFO(REQUIRED)
+STEPMAKE_PYTHON_DEVEL(REQUIRED)
+
+
+# AC_HAVE_HEADERS(limits.h malloc.h string.h unistd.h values.h)
+AC_HAVE_HEADERS(assert.h sys/stat.h)
+AC_HEADER_STAT
+
+AC_FUNC_MEMCMP
+AC_FUNC_VPRINTF
+AC_CHECK_FUNCS(memmem snprintf vsnprintf gettext isinf)
+
+
+## Optional tools for building documentation, website, extra fonts.
+
+# guile executable for some scripts
+STEPMAKE_GUILE(OPTIONAL)
+# perl for help2man.
+STEPMAKE_PERL(OPTIONAL)
+# pktrace for generating pfa's, pfb's
+STEPMAKE_PROGS(PKTRACE, pktrace, OPTIONAL, 1.0.3)
+# new makeinfo for multi-page website docs
+STEPMAKE_PROGS(MAKEINFO, makeinfo, OPTIONAL, 4.1)
+
+
+if test "$optimise_b" = yes; then
+    DEFINES="$DEFINES -DSTRING_UTILS_INLINED"
+    AC_DEFINE(STRINGS_UTILS_INLINED)
 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
-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
+AC_DEFINE_UNQUOTED(TOPLEVEL_VERSION, "${FULL_VERSION}")
+AC_DEFINE_UNQUOTED(FLOWER_VERSION, "${FULL_FLOWER_VERSION}")
 
-if test $FLEX = "error" 
-then
-       AC_MSG_WARN(can't find flex. Please install Flex (2.5 or better))
-fi
-
-if $CXX --version | grep '2\.7' > /dev/null
-then
-       true
-else
-       AC_MSG_WARN(can't find g++ 2.7)
-fi
+# Gather requirements and generate output.
+STEPMAKE_END
 
-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
-    )
 
+test -n "$CONFIGURATION" && mc=" conf=$CONFIGURATION" || mc=""
 
+cat <<EOF
 
-dnl URG!!!!!!
-eval "DIR_DATADIR=$datadir"
-DIR_DATADIR="$DIR_DATADIR/lilypond"
-AC_MSG_CHECKING
-
-cat << EOF > lib/out/config.hh
-
-/* automatically generated by configure */
-/* include this file only once! */
-
-#define  DIR_DATADIR "$DIR_DATADIR"
+Type:
+    make$mc all       to build LilyPond
+    make$mc install   to install LilyPond
+    make$mc help      to see all possible targets
 
+Do not worry if ./Documentation or ./mutopia should not build.
 EOF
-
-CXX="$ac_cv_prog_CXX" bin/make_version >> lib/out/config.hh
-
-touch make/out/Site.make
-
-# 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
-)
-
-cat << END
-Finished configuring. For making everything, do:
-
-       make all
-
-If you only want help on the make targets, do a
-
-       make help
-
-
-END
-
-    
-#if test $shared_b = yes; then
-#    echo "NOTE: you are building the *shared* library. You should 
-#fi