]> git.donarmstrong.com Git - lilypond.git/blobdiff - configure.in
release: 0.1.23
[lilypond.git] / configure.in
index ac091d7d15584b5b801155880f55c62ad5b8fb88..0efe69bab076960a54551c967100c3553830756e 100644 (file)
@@ -1,79 +1,77 @@
 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_INIT(flower/choleski.cc)
 
-    AC_MSG_RESULT($$1)
-])
 
-AC_INIT(flower/choleski.cc)
+if test x$srcdir != x.; then
+  echo Please look in the INSTALL instructions for
+  echo directions for multi-architecture building
+    
+  AC_LILY_WARN(This package does not support --srcdir!)
+fi
 
+# if given here, these vars are initted at the checking point.
+if test x$host = xNONE; then
+    OUTDIR_NAME=${OUTDIR_NAME-"out"}
+else
+    OUTDIR_NAME=${OUTDIR_NAME-"out-$host"}
+fi
 
-AC_LANG_CPLUSPLUS
 printing_b=no
 checking_b=yes
 debug_b=yes
 optimise_b=no
 profile_b=no
-    
+
+AC_LANG_CPLUSPLUS
+
 AC_ARG_ENABLE(printing,
-    [  enable-printing        set debug printing],
+    [  enable-printing         turn on debug printing],
     [printing_b=$enableval])
 
        
 AC_ARG_ENABLE(checking,
-    [  disable-checking       set runtime checks],
+    [  enable-checking         set runtime checks (assert calls). Default: on],
     [checking_b=$enableval] )
 
-
-
-AC_ARG_ENABLE(debug,
-    [  disable-debug          set debug info],
+AC_ARG_ENABLE(debugging,
+    [  enable-debugging        set debug info. Default: on],
     [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(texprefix,
-    [  texprefix=DIR  set the tex-directory to put the lilypond subdir in.],
+AC_ARG_ENABLE(mingw-prefix,
+    [  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)],
     [TEXPREFIX=$enableval],
     [TEXPREFIX=auto] )
-   
+    
+AC_ARG_ENABLE(tex-dir,
+    [  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. (obsolete)],
+     [MFDIR=$enableval],
+     [MFDIR=auto])
+
+AC_ARG_ENABLE(out-dir,
+    [  out-dir                 set the directory for machine generated files. Default out or out-HOST],
+    [OUTDIR_NAME=$enableval]
+    [])
+
 if test $profile_b = yes; then
     EXTRA_LIBES="-pg"
     DEFINES="$DEFINES -pg"
@@ -90,117 +88,161 @@ 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 
+    ICFLAGS="-I$MINGWPREFIX/include"
+    ILDFLAGS="-$MINGWPREFIX/lib"
+fi
+
 if test $optimise_b = yes; then
     DEFINES="$DEFINES -O2 -DSTRING_UTILS_INLINED"
 fi
+
+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
+
 dnl COMPILEINFO="$HOST $host $TARGET $target"
 AUTOHEADER="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
+
 AC_PROG_CXX
 AC_PROG_RANLIB
 AC_PROG_INSTALL
+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-texprefix)
-else 
+AC_CHECK_SEARCH_RESULT($FIND, \`find\'. Please use --enable-tex-dir)
+
     
+AC_SUBST(OUTDIR_NAME)
+AC_SUBST(CXXFLAGS)
+AC_SUBST(CPPFLAGS)
 AC_SUBST(CXX)
+AC_SUBST(ICFLAGS)
+AC_SUBST(ILDFLAGS)
 AC_SUBST(DEFINES)
 AC_SUBST(COMPILEINFO)
 AC_SUBST(AUTOHEADER)
 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(EXTRA_LIBES)
 
 AC_CHECK_PROGS(BISON, bison, error)
 AC_CHECK_PROGS(FLEX, flex, error)
 AC_CHECK_PROGS(MAKE, make, error)
+AC_PATH_PROG(PERL, perl, error)
+AC_PATH_PROG(PYTHON, python, 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)
+if test "x$TEXPREFIX" = xauto ; then
+    AC_TEX_PREFIX(TEXPREFIX)
 else
-       $MAKE -v| grep GNU >& /dev/null
-       if test "$?" = 1
-       then
-               AC_MSG_WARN(Please install *GNU* make)
-       fi
+ find_texprefix=$TEXPREFIX
 fi
 
-
-if test $BISON = "error" 
-then
-       AC_MSG_WARN(can't find bison. Please install Bison (1.24 or better))
+if test "x$MFDIR" = xauto; then
+    AC_MF_SUBDIR(MFDIR)
 fi
-
-if test $PODMAN = "error" 
-then
-       AC_MSG_WARN(can't find pod. You should install Perl (version 5 or better))
+    
+if test "x$TEXDIR" = xauto ; then
+    AC_TEX_SUBDIR(TEXDIR)
 fi
 
-if test $FLEX = "error" 
-then
-       AC_MSG_WARN(can't find flex. Please install Flex (2.5 or better))
+
+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($PODMAN, pod,  You should install Perl, version 5 or better)
+AC_CHECK_SEARCH_RESULT( $FLEX,  flex, Please install Flex, 2.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
+    bison_version=`$BISON --version| sed 's/^.*version 1.//g' `
+    if test $bison_version -lt 25; then
+       AC_LILY_WARN(Your bison is too old (1.$bison_version). Please install 1.25)
+    fi 
 fi
 
-if $CXX --version | grep '2\.7' >& /dev/null
+if $CXX --version | grep '2\.7' > /dev/null
 then
        true
 else
-       AC_MSG_WARN(can't find g++ 2.7)
+       AC_LILY_WARN(can't find g++ 2.7)
 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
-    )
-
-
-
-dnl URG!!!!!!
-eval "DIR_DATADIR=$datadir"
-DIR_DATADIR="$DIR_DATADIR/lilypond"
-AC_MSG_CHECKING
-
-cat << EOF > lib/out/config.hh
+       AC_LILY_WARN(can't find flex header. Please install Flex headers correctly))
 
-/* automatically generated by configure */
-/* include this file only once! */
-
-#define  DIR_DATADIR "$DIR_DATADIR"
-
-EOF
+for a in `find . -type d -and -not -name 'out*' -print`; do
+    if test ! -d  $a/$OUTDIR_NAME; then
+       mkdir $a/$OUTDIR_NAME
+    fi
+done
 
-CXX="$ac_cv_prog_CXX" bin/make_version >> lib/out/config.hh
+AC_CONFIG_SUBDIRS(flower)
 
-touch make/out/Site.make
+    
+AC_OUTPUT(make/$OUTDIR_NAME/Configure_variables.make:make/Configure_variables.make.in
+    Makefile:make/Toplevel.make.in)
 
-# 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
-)
+touch make/$OUTDIR_NAME/Site.make
 
 cat << END
-Finished configuring. For making everything, do:
+For making everything, do:
 
-       make all
+    make               # GNU make
 
-If you only want help on the make targets, do a
+or if you used --outdir=blabla
 
-       make help
+    make OUTDIR_NAME=blabla
+    
+If you want to make site-wide extensions to the makefiles, please use
 
+    make/$OUTDIR_NAME/Site.make
+    
 END
+
+if test x$warn_b = "xyes" ; then
+cat <<EOF
+    
+    **************************************************
+    Warning: configure encountered warnings or errors.
+    Please try to resolve these, and rerun configure 
+    before sending a bugreport.
+    If you cannot resolve some warnings, the make 
+    process may still be succesful, but be warned.
+    **************************************************
+    
+EOF
+fi
+