]> git.donarmstrong.com Git - lilypond.git/blobdiff - configure.in
release: 0.1.63
[lilypond.git] / configure.in
index b6a82463650f11da50ee6fab28fa49a31fbfcd5c..6baa1002a9fae1e8c8fadf7ab1c824a9a146da40 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_PREFIX, [
-    
+AC_INIT(flower/choleski.cc)
+AC_CONFIG_HEADER($CONFIGFILE.hh:config.hh.in) #ugh flower/out/
+AC_CONFIG_AUX_DIR(bin)
+AC_CANONICAL_HOST
 
-    AC_MSG_CHECKING(TeX/MF root dir directory)    
 
-    find_root_prefix="$prefix"
-    
+. $srcdir/VERSION
+FULL_VERSION=$MAJOR_VERSION.$MINOR_VERSION.$PATCH_LEVEL
+if test x$MY_PATCH_LEVEL != x; then
+       FULL_VERSION=$FULL_VERSION.$MY_PATCH_LEVEL
+fi
 
-    test "x$find_root_prefix" = xNONE && find_root_prefix="$ac_default_prefix"
-    find_texpostfix="";
-    for postfix in "/lib/tex/" "/lib/texmf" "/lib" "/tex" "/texmf"; do
-       find_texprefix="$find_root_prefix$postfix"
-       if test -d $find_texprefix; then
-           find_texpostfix=$postfix
-           break;
-       fi
-    done
-    
-    if test "x$find_texpostfix" = x; then
-       find_texpostfix='/lib/texmf/tex'
-       AC_MSG_WARN(Cannot determine the TeX-directory. Please use --enable-tex-prefix)
-    fi
-
-    find_texprefix="$find_root_prefix/$find_texpostfix"
-
-    # only assign if variablename not empty
-    if test x != "x$1"; then
-       $1='${prefix}'/"$find_texpostfix"
-    fi
-    AC_MSG_RESULT($find_texprefix)
-
-])
-
-# find a directory inside a prefix, 
-# $1 the prefix (expanded version)
-# $2 variable to assign
-# $3 the directory name 
-# $4 description
-AC_DEFUN(AC_FIND_DIR_IN_PREFIX, [
-    
-    AC_MSG_CHECKING($4 directory)    
-    find_dirdir=`(cd $1; 
-      $FIND ./ -type d -a -name $3 -print |sort|head -1|sed 's#^\./##')`
-    
 
-    if test "x$find_dirdir" = x; then
-       find_dirdir="/$3";
-       AC_MSG_WARN(Cannot determine $4 subdirectory. Please set from command-line)
-       true
-    fi
-    $2=$find_dirdir
-    AC_MSG_RESULT($1/$find_dirdir)
-])
-
-AC_DEFUN(AC_TEX_SUBDIR, [
-dnl    AC_REQUIRE([AC_TEX_PREFIX])
-    AC_FIND_DIR_IN_PREFIX($find_texprefix, $1, tex,TeX input)
-    $1="$TEXPREFIX/$$1"
-])
-
-AC_DEFUN(AC_MF_SUBDIR, [
-dnl     AC_REQUIRE([AC_TEX_PREFIX])
-    AC_FIND_DIR_IN_PREFIX($find_texprefix, $1, source, MF input)
-    $1="$TEXPREFIX/$$1"
-])
-   
-AC_INIT(flower/choleski.cc)
+. $srcdir/flower/VERSION
+FULL_FLOWER_VERSION=$MAJOR_VERSION.$MINOR_VERSION.$PATCH_LEVEL
+
+# libtool.info ...
+# **Never** try to set library version numbers so that they correspond
+# to the release number of your package.  This is an abuse that only
+# fosters misunderstanding of the purpose of library versions.
 
+REVISION=$PATCH_LEVEL
+# CURRENT=$MINOR_VERSION
+CURRENT=`expr $MINOR_VERSION + 1`
+# AGE=$(expr $MAJOR_VERSION + 1)
+AGE=$MAJOR_VERSION
+AC_SUBST(CURRENT)
+AC_SUBST(REVISION)
+AC_SUBST(AGE)
 
-# if given here, these vars are initted at the checking point.
+# turn off shared libraries by default (may be enabled using --enable-shared)
+#AM_DISABLE_SHARED
+#AM_PROG_LIBTOOL
+
+# ugh, automake: we want (and check for) bison
+AC_PROG_YACC
+
+# ugh, automake: we want (and check for) flex
+# AC_PROG_LEX
+# urg: automake 1.3: hope this doesn't break 1.2 ac_cv_pro_lex_root hack...
+
+# AC_DECL_YYTEXT
+# ugh, ugh
+ac_cv_prog_lex_root=lex.yy
+
+# -O is necessary to get inlining
+OPTIMIZE="-O"
 printing_b=no
 checking_b=yes
-debug_b=yes
-optimise_b=no
+optimise_b=tja
 profile_b=no
-    
+CONFIGSUFFIX=
+debug_b=yes
+     
+
+
 AC_LANG_CPLUSPLUS
 
 AC_ARG_ENABLE(printing,
-    [  enable-printing         turn on debug printing],
+    [  enable-printing         turn on debug printing. Default: off],
     [printing_b=$enableval])
 
-       
 AC_ARG_ENABLE(checking,
-    [  disable-checking        set runtime checks (assert calls)],
+    [  enable-checking         set runtime checks (assert calls). Default: on],
     [checking_b=$enableval] )
 
-AC_ARG_ENABLE(debugging,
-    [  disable-debugging       set debug info ],
-    [debug_b=$enableval])
-
 AC_ARG_ENABLE(optimise,
-    [  enable-optimise         use maximal speed optimisations],
+    [  enable-optimise         use maximal speed optimisations. Default: off],
     [optimise_b=$enableval])
     
 AC_ARG_ENABLE(profiling, 
-    [  enable-profiling        compile with gprof support],
+    [  enable-profiling        compile with gprof support. Default: off],
     [profile_b=$enableval])
     
+AC_ARG_ENABLE(debugging,
+    [  enable-debugging        set debug info. Default: on],
+    [debug_b=$enableval])
+
 AC_ARG_ENABLE(mingw-prefix,
-    [  mingw-prefix=DIR        set the mingw32 directory (standalone windows32 exes)],
+    [  enable-mingw-prefix=DIR        set the mingw32 directory (standalone windows32 exes)],
     [MINGWPREFIX=$enableval],
     [MINGWPREFIX=no])
     
 AC_ARG_ENABLE(tex-prefix,
-    [  tex-prefix=DIR          set the tex-directory to find TeX subdirectories. (default: PREFIX)],
+    [  enable-tex-prefix=DIR          set the tex-directory to find TeX subdirectories. (default: PREFIX)],
     [TEXPREFIX=$enableval],
     [TEXPREFIX=auto] )
     
 AC_ARG_ENABLE(tex-dir,
-    [  tex-dir=DIR             set the directory to put LilyPond  TeX files in. ],
+    [  enable-tex-dir=DIR             set the directory to put LilyPond TeX files in. ],
     [TEXDIR=$enableval],
     [TEXDIR=auto] )
 
 AC_ARG_ENABLE(mf-dir,
-    [  mf-dir=DIR              set the directory to put LilyPond MetaFont files in.],
-    [MFDIR=$enableval],
-    [MFDIR=auto] )
+     [  enable-mf-dir=DIR             set the directory to put LilyPond MetaFont files in. ],
+     [MFDIR=$enableval],
+     [MFDIR=auto])
+
+AC_ARG_ENABLE(config,
+     [  enable-config=FILE            put configure settings in config-FILE.make],
+     [CONFIGSUFFIX=$enableval])
+     
+
+if test "$printing_b" = no; then
+    # ugh
+    AC_DEFINE(NPRINT)
+    DEFINES="$DEFINES -DNPRINT"
+fi
+    
+if test "$checking_b" = no; then
+    # ugh
+    AC_DEFINE(NDEBUG)
+    DEFINES="$DEFINES -DNDEBUG"
+fi
+
+if test "$optimise_b" = yes; then
+    DEFINES="$DEFINES -finline-functions -DSTRING_UTILS_INLINED"
+    OPTIMIZE="-O2"
+    AC_DEFINE(STRINGS_UTILS_INLINED)
+fi
+
+if test "$optimise_b" = no; then
+    OPTIMIZE=""
+fi
 
 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
 
 # however, C++ support in mingw32 v 0.1.4 is still flaky
 if test x$MINGWPREFIX != xno; then 
@@ -146,14 +142,28 @@ if test x$MINGWPREFIX != xno; then
     ILDFLAGS="-$MINGWPREFIX/lib"
 fi
 
-if test $optimise_b = yes; then
-    DEFINES="$DEFINES -O2 -DSTRING_UTILS_INLINED"
+if test "x$OSTYPE" = "xWindows_NT"; then
+    LN=cp # hard link does not work under cygnus-nt (yet?)
+    ZIP="zip -r -9" #
+else
+    LN=ln
+    ZIP="zip -r -9"
 fi
 
+if test "$CONFIGSUFFIX" != "" ; then
+    CONFIGFILE=config-$CONFIGSUFFIX
+else
+    CONFIGFILE=config
+fi
+     
+
+
 dnl COMPILEINFO="$HOST $host $TARGET $target"
-AUTOHEADER="This file was automatically generated by configure"
+AUTOGENERATE="This file was automatically generated by configure"
 CPPFLAGS=${CPPFLAGS:-""}       # we don't want -g -O junk
-CXXFLAGS=${CXXFLAGS:-""}       # we don't want -g -O junk
+# CXXFLAGS=${CXXFLAGS:-""}     # we don't want -g -O junk
+CXXFLAGS="$DEFINES $OPTIMIZE"
+LDFLAGS=$EXTRA_LIBES
 
 AC_PROG_CXX
 AC_PROG_RANLIB
@@ -162,127 +172,128 @@ AC_CHECK_PROGS(TAR, tar, error)
 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-tex-dir)
+AC_CHECK_SEARCH_RESULT($FIND, \`find\'. Please use --enable-tex-dir)
+
+AC_FUNC_MEMCMP
+AC_FUNC_VPRINTF
+AC_CHECK_FUNCS(memmem snprintf )
+
+AC_DEFINE_UNQUOTED(TOPLEVEL_VERSION, "${FULL_VERSION}")
+AC_DEFINE_UNQUOTED(FLOWER_VERSION, "${FULL_FLOWER_VERSION}")
+# ugh: produces "${prefix}/share/lilypond"
+# DIR_DATADIR=$datadir/lilypond
+# ugh: produces "NONE/share/lilypond"
+# DIR_DATADIR=$prefix/share/lilypond
+
+DIR_DATADIR=$prefix/share/lilypond
+if test x$prefix = xNONE; then
+       DIR_DATADIR=/usr/local/share/lilypond
 fi
+AC_DEFINE_UNQUOTED(DIR_DATADIR, "${DIR_DATADIR}")
+
+absolute_builddir="`pwd`"
     
 AC_SUBST(CXXFLAGS)
 AC_SUBST(CPPFLAGS)
+AC_SUBST(LDFLAGS)
 AC_SUBST(CXX)
 AC_SUBST(ICFLAGS)
 AC_SUBST(ILDFLAGS)
 AC_SUBST(DEFINES)
+AC_SUBST(RANLIB)
 AC_SUBST(COMPILEINFO)
-AC_SUBST(AUTOHEADER)
+AC_SUBST(AUTOGENERATE)
 AC_SUBST(BISON)
 AC_SUBST(FLEX)
+AC_SUBST(LN)
+AC_SUBST(PERL)
+AC_SUBST(PYTHON)
+AC_SUBST(ZIP)
 AC_SUBST(TEXPREFIX)
 AC_SUBST(TEXDIR)
 AC_SUBST(MFDIR)
+AC_SUBST(DIR_DATADIR)
+AC_SUBST(absolute_builddir)
 AC_SUBST(EXTRA_LIBES)
-
+AC_SUBST(CONFIGSUFFIX)
 AC_CHECK_PROGS(BISON, bison, error)
 AC_CHECK_PROGS(FLEX, flex, error)
 AC_CHECK_PROGS(MAKE, make, error)
-AC_CHECK_PROGS(PODMAN, pod2man, error)
+AC_PATH_PROG(PERL, perl, error)
+AC_PATH_PROG(PYTHON, python, error)
+AC_CHECK_PROGS(POD2HTML, pod2html, error)
+AC_CHECK_PROGS(POD2MAN, pod2man, error)
+
 
-    
 if test "x$TEXPREFIX" = xauto ; then
     AC_TEX_PREFIX(TEXPREFIX)
 else
  find_texprefix=$TEXPREFIX
 fi
-    
-if test "x$TEXDIR" = xauto ; then
-    AC_TEX_SUBDIR(TEXDIR)
-fi
 
 if test "x$MFDIR" = xauto; then
     AC_MF_SUBDIR(MFDIR)
 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) 
+if test "x$TEXDIR" = xauto ; then
+    AC_TEX_SUBDIR(TEXDIR)
+fi
+
+
+# AC_JUNK_ARGS( [if test "x$MFDIR" = xauto; then
+#      AC_MF_SUBDIR(MFDIR)
+#  fi]
+# )
+
+AC_CHECK_SEARCH_RESULT($MAKE, GNU make,  You should install GNU make)
+AC_CHECK_SEARCH_RESULT($BISON, bison,  Please install Bison, 1.25 or better)
+AC_CHECK_SEARCH_RESULT($PERL, perl, You should install Perl, version 5 or better)
+AC_CHECK_SEARCH_RESULT($PYTHON, python, You should install Python)
+AC_CHECK_SEARCH_RESULT($FLEX,  flex, Please install Flex, 2.5 or better)
+AC_CHECK_SEARCH_RESULT($POD2MAN, pod, You should install Perl, version 5 or better)
+
+
+if test $MAKE != "error" ; then
+    $MAKE -v| grep GNU > /dev/null
+    if test "$?" = 1
+    then
+           AC_LILY_WARN(Please install *GNU* make) 
     fi 
 fi 
     
-if test $BISON = "error" 
-then
-       AC_MSG_WARN(can't find bison. Please install Bison (1.25 or better))
-else
+if test $BISON != "error"; then
     bison_version=`$BISON --version| sed 's/^.*version 1.//g' `
     if test $bison_version -lt 25; then
-       AC_MSG_WARN(Your bison is too old (1.$bison_version). Please install 1.25)
+       AC_LILY_WARN(Your bison is too old (1.$bison_version). Please install 1.25)
     fi 
 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 "$INSTALL" = "bin/install-sh"; then
+    export INSTALL="\$\(depth\)/bin/install-sh"
 fi
 
-if $CXX --version | grep '2\.7' > /dev/null
+# ugh autoconf
+changequote(<<, >>)dnl
+if $CXX --version | grep '2\.[78]' > /dev/null ||
+    $CXX --version | grep 'egcs' > /dev/null
+changequote([, ])dnl
 then
        true
 else
-       AC_MSG_WARN(can't find g++ 2.7)
+       AC_LILY_WARN(can't find g++ 2.7, 2.8 or egcs)
 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)
-
-
+       AC_LILY_WARN(can't find flex header. Please install Flex headers correctly))
 
-dnl URG!!!!!!
-eval "DIR_DATADIR=$datadir"
-DIR_DATADIR="$DIR_DATADIR/lilypond"
-AC_MSG_CHECKING
+touch stamp-h.in
 
-cat << EOF > lib/out/config.hh
 
-/* automatically generated by configure */
-/* include this file only once! */
 
-#define  DIR_DATADIR "$DIR_DATADIR"
+# first do Foobar/Makefile then Foobar/include/Makefile
+AC_OUTPUT($CONFIGFILE.make:config.make.in)
 
-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
-)
-
-echo '# WARNING : Automatically generated from make/Toplevel.make.in' | cat -  make/Toplevel.make.in > Makefile
-
-cat << END
-For making everything, do:
-
-    make               # GNU make
-
-If you want to make site-wide extensions to the makefiles, please use
-
-    make/out/Site.make
-    
-END
+rm -f Makefile
+cp make/Toplevel.make.in ./Makefile
+chmod 444 Makefile