Minor improvements in the build procedure of musrfit:

- removed most of the not used checks
- introduced a new check for Minuit2 in ROOT
- building of static libraries is disabled by default now
- disabled the F77-checks related to libtool
  (when support for Minuit will become available in musrfit checks for Fortran compilers will be added explicitly)

Some tests under different environments are still needed...
This commit is contained in:
Bastian M. Wojek
2009-12-27 21:08:16 +00:00
parent 199ff918f0
commit a270d81853
2 changed files with 93 additions and 74 deletions

View File

@ -68,7 +68,7 @@ AC_DEFUN([ROOT_PATH],
ROOTSOVERSION=`dirname $ROOTVERSION`
if test $1 ; then
AC_MSG_CHECKING(wether ROOT version >= [$1])
AC_MSG_CHECKING(whether ROOT version >= [$1])
vers=`$ROOTCONF --version | tr './' ' ' | awk 'BEGIN { FS = " "; } { printf "%d", ($''1 * 1000 + $''2) * 1000 + $''3;}'`
requ=`echo $1 | tr './' ' ' | awk 'BEGIN { FS = " "; } { printf "%d", ($''1 * 1000 + $''2) * 1000 + $''3;}'`
if test $vers -lt $requ ; then