/[PAMELA software]/yoda/configure
ViewVC logotype

Diff of /yoda/configure

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3 by kusanagi, Thu Jul 8 12:48:11 2004 UTC revision 5.0 by kusanagi, Mon Aug 29 09:45:00 2005 UTC
# Line 463  ac_includes_default="\ Line 463  ac_includes_default="\
463  # include <unistd.h>  # include <unistd.h>
464  #endif"  #endif"
465    
466  ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO AMTAR install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot build build_cpu build_vendor build_os host host_cpu host_vendor host_os CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE F77 FFLAGS ac_ct_F77 FLIBS CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE EGREP LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB CPP CXXCPP LIBTOOL HAS_DOXYFILE ROOT_INCLUDES ROOT_LDFLAGS ROOTCINT LIBOBJS LTLIBOBJS'  ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar build build_cpu build_vendor build_os host host_cpu host_vendor host_os CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE F77 FFLAGS ac_ct_F77 FLIBS CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE EGREP LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB CPP CXXCPP LIBTOOL HAS_DOXYFILE ROOT_INCLUDES ROOT_LDFLAGS ROOTCINT LOG4CXX_INCLUDES LOG4CXX_LDFLAGS LOG4CXX_LIBRARY LIBOBJS LTLIBOBJS'
467  ac_subst_files=''  ac_subst_files=''
468    
469  # Initialize some variables set by options.  # Initialize some variables set by options.
# Line 1032  Optional Features: Line 1032  Optional Features:
1032    --enable-fast-install[=PKGS]    --enable-fast-install[=PKGS]
1033                            optimize for fast installation [default=yes]                            optimize for fast installation [default=yes]
1034    --disable-libtool-lock  avoid locking (might break parallel builds)    --disable-libtool-lock  avoid locking (might break parallel builds)
1035    --enable-gprof          enable memory profiling with gprof
1036    
1037  Optional Packages:  Optional Packages:
1038    --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]    --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
# Line 1042  Optional Packages: Line 1043  Optional Packages:
1043    --with-tags[=TAGS]    --with-tags[=TAGS]
1044                            include additional configurations [automatic]                            include additional configurations [automatic]
1045  --with-root=path    Use the specified ROOT directory  --with-root=path    Use the specified ROOT directory
1046  --with-log4cpp=path Use the specified directroy for log4cpp  --with-log4cxx=path Use the specified directroy for log4cxx
1047    
1048  Some influential environment variables:  Some influential environment variables:
1049    CC          C compiler command    CC          C compiler command
# Line 1497  ac_compiler_gnu=$ac_cv_c_compiler_gnu Line 1498  ac_compiler_gnu=$ac_cv_c_compiler_gnu
1498    
1499    
1500    
1501  am__api_version="1.8"  am__api_version="1.9"
1502  ac_aux_dir=  ac_aux_dir=
1503  for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do  for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
1504    if test -f $ac_dir/install-sh; then    if test -f $ac_dir/install-sh; then
# Line 1674  echo "$as_me: WARNING: \`missing' script Line 1675  echo "$as_me: WARNING: \`missing' script
1675  fi  fi
1676    
1677  if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then  if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
1678    # Keeping the `.' argument allows $(mkdir_p) to be used without    # We used to keeping the `.' as first argument, in order to
1679    # argument.  Indeed, we sometimes output rules like    # allow $(mkdir_p) to be used without argument.  As in
1680    #   $(mkdir_p) $(somedir)    #   $(mkdir_p) $(somedir)
1681    # where $(somedir) is conditionally defined.    # where $(somedir) is conditionally defined.  However this is wrong
1682    # (`test -n '$(somedir)' && $(mkdir_p) $(somedir)' is a more    # for two reasons:
1683    # expensive solution, as it forces Make to start a sub-shell.)    #  1. if the package is installed by a user who cannot write `.'
1684    mkdir_p='mkdir -p -- .'    #     make install will fail,
1685      #  2. the above comment should most certainly read
1686      #     $(mkdir_p) $(DESTDIR)$(somedir)
1687      #     so it does not work when $(somedir) is undefined and
1688      #     $(DESTDIR) is not.
1689      #  To support the latter case, we have to write
1690      #     test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
1691      #  so the `.' trick is pointless.
1692      mkdir_p='mkdir -p --'
1693  else  else
1694    # On NextStep and OpenStep, the `mkdir' command does not    # On NextStep and OpenStep, the `mkdir' command does not
1695    # recognize any option.  It will interpret all options as    # recognize any option.  It will interpret all options as
# Line 1796  fi Line 1805  fi
1805    
1806  # Define the identity of the package.  # Define the identity of the package.
1807   PACKAGE=yoda   PACKAGE=yoda
1808   VERSION=0.1.0   VERSION=4.2.4
1809    
1810    
1811  cat >>confdefs.h <<_ACEOF  cat >>confdefs.h <<_ACEOF
# Line 1824  AUTOHEADER=${AUTOHEADER-"${am_missing_ru Line 1833  AUTOHEADER=${AUTOHEADER-"${am_missing_ru
1833    
1834  MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}  MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
1835    
   
 AMTAR=${AMTAR-"${am_missing_run}tar"}  
   
1836  install_sh=${install_sh-"$am_aux_dir/install-sh"}  install_sh=${install_sh-"$am_aux_dir/install-sh"}
1837    
1838  # Installed binaries are usually stripped using `strip' when the user  # Installed binaries are usually stripped using `strip' when the user
# Line 1919  INSTALL_STRIP_PROGRAM="\${SHELL} \$(inst Line 1925  INSTALL_STRIP_PROGRAM="\${SHELL} \$(inst
1925    
1926  # We need awk for the "check" target.  The system "awk" is bad on  # We need awk for the "check" target.  The system "awk" is bad on
1927  # some platforms.  # some platforms.
1928    # Always define AMTAR for backward compatibility.
1929    
1930    AMTAR=${AMTAR-"${am_missing_run}tar"}
1931    
1932    am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'
1933    
1934    
1935    
1936    
1937    
# Line 3050  else Line 3063  else
3063         grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&         grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
3064         ${MAKE-make} -s -f confmf > /dev/null 2>&1; then         ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
3065        # icc doesn't choke on unknown options, it will just issue warnings        # icc doesn't choke on unknown options, it will just issue warnings
3066        # (even with -Werror).  So we grep stderr for any message        # or remarks (even with -Werror).  So we grep stderr for any message
3067        # that says an option was ignored.        # that says an option was ignored or not supported.
3068        if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else        # When given -MP, icc 7.0 and 7.1 complain thusly:
3069          #   icc: Command line warning: ignoring option '-M'; no argument required
3070          # The diagnosis changed in icc 8.0:
3071          #   icc: Command line remark: option '-MP' not supported
3072          if (grep 'ignoring option' conftest.err ||
3073              grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
3074          am_cv_CC_dependencies_compiler_type=$depmode          am_cv_CC_dependencies_compiler_type=$depmode
3075          break          break
3076        fi        fi
# Line 3176  fi Line 3194  fi
3194    
3195    
3196  # Provide some information about the compiler.  # Provide some information about the compiler.
3197  echo "$as_me:3179:" \  echo "$as_me:3197:" \
3198       "checking for Fortran 77 compiler version" >&5       "checking for Fortran 77 compiler version" >&5
3199  ac_compiler=`set X $ac_compile; echo $2`  ac_compiler=`set X $ac_compile; echo $2`
3200  { (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5  { (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
# Line 3373  _ACEOF Line 3391  _ACEOF
3391  # flags.  # flags.
3392  ac_save_FFLAGS=$FFLAGS  ac_save_FFLAGS=$FFLAGS
3393  FFLAGS="$FFLAGS $ac_verb"  FFLAGS="$FFLAGS $ac_verb"
3394  (eval echo $as_me:3376: \"$ac_link\") >&5  (eval echo $as_me:3394: \"$ac_link\") >&5
3395  ac_f77_v_output=`eval $ac_link 5>&1 2>&1 | grep -v 'Driving:'`  ac_f77_v_output=`eval $ac_link 5>&1 2>&1 | grep -v 'Driving:'`
3396  echo "$ac_f77_v_output" >&5  echo "$ac_f77_v_output" >&5
3397  FFLAGS=$ac_save_FFLAGS  FFLAGS=$ac_save_FFLAGS
# Line 3451  _ACEOF Line 3469  _ACEOF
3469  # flags.  # flags.
3470  ac_save_FFLAGS=$FFLAGS  ac_save_FFLAGS=$FFLAGS
3471  FFLAGS="$FFLAGS $ac_cv_prog_f77_v"  FFLAGS="$FFLAGS $ac_cv_prog_f77_v"
3472  (eval echo $as_me:3454: \"$ac_link\") >&5  (eval echo $as_me:3472: \"$ac_link\") >&5
3473  ac_f77_v_output=`eval $ac_link 5>&1 2>&1 | grep -v 'Driving:'`  ac_f77_v_output=`eval $ac_link 5>&1 2>&1 | grep -v 'Driving:'`
3474  echo "$ac_f77_v_output" >&5  echo "$ac_f77_v_output" >&5
3475  FFLAGS=$ac_save_FFLAGS  FFLAGS=$ac_save_FFLAGS
# Line 4051  else Line 4069  else
4069         grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&         grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
4070         ${MAKE-make} -s -f confmf > /dev/null 2>&1; then         ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
4071        # icc doesn't choke on unknown options, it will just issue warnings        # icc doesn't choke on unknown options, it will just issue warnings
4072        # (even with -Werror).  So we grep stderr for any message        # or remarks (even with -Werror).  So we grep stderr for any message
4073        # that says an option was ignored.        # that says an option was ignored or not supported.
4074        if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else        # When given -MP, icc 7.0 and 7.1 complain thusly:
4075          #   icc: Command line warning: ignoring option '-M'; no argument required
4076          # The diagnosis changed in icc 8.0:
4077          #   icc: Command line remark: option '-MP' not supported
4078          if (grep 'ignoring option' conftest.err ||
4079              grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
4080          am_cv_CXX_dependencies_compiler_type=$depmode          am_cv_CXX_dependencies_compiler_type=$depmode
4081          break          break
4082        fi        fi
# Line 4443  bsdi4*) Line 4466  bsdi4*)
4466    ;;    ;;
4467    
4468  cygwin*)  cygwin*)
4469    # win32_libid is a shell function defined in ltmain.sh    # func_win32_libid is a shell function defined in ltmain.sh
4470    lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'    lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
4471    lt_cv_file_magic_cmd='win32_libid'    lt_cv_file_magic_cmd='func_win32_libid'
4472    ;;    ;;
4473    
4474  mingw* | pw32*)  mingw* | pw32*)
4475    # Base MSYS/MinGW do not provide the 'file' command needed by    # Base MSYS/MinGW do not provide the 'file' command needed by
4476    # win32_libid shell function, so use a weaker test based on 'objdump'.    # func_win32_libid shell function, so use a weaker test based on 'objdump'.
4477    lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?'    lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?'
4478    lt_cv_file_magic_cmd='$OBJDUMP -f'    lt_cv_file_magic_cmd='$OBJDUMP -f'
4479    ;;    ;;
# Line 4510  irix5* | irix6* | nonstopux*) Line 4533  irix5* | irix6* | nonstopux*)
4533  # This must be Linux ELF.  # This must be Linux ELF.
4534  linux*)  linux*)
4535    case $host_cpu in    case $host_cpu in
4536    alpha*|hppa*|i*86|ia64*|m68*|mips*|powerpc*|sparc*|s390*|sh*|x86_64)    alpha*|hppa*|i*86|ia64*|m68*|mips*|powerpc*|sparc*|s390*|sh*|x86_64*)
4537      lt_cv_deplibs_check_method=pass_all ;;      lt_cv_deplibs_check_method=pass_all ;;
4538    *)    *)
4539      # glibc up to 2.1.1 does not perform some relocations on ARM      # glibc up to 2.1.1 does not perform some relocations on ARM
# Line 4638  ia64-*-hpux*) Line 4661  ia64-*-hpux*)
4661    ;;    ;;
4662  *-*-irix6*)  *-*-irix6*)
4663    # Find out which ABI we are using.    # Find out which ABI we are using.
4664    echo '#line 4641 "configure"' > conftest.$ac_ext    echo '#line 4664 "configure"' > conftest.$ac_ext
4665    if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5    if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4666    (eval $ac_compile) 2>&5    (eval $ac_compile) 2>&5
4667    ac_status=$?    ac_status=$?
# Line 4676  ia64-*-hpux*) Line 4699  ia64-*-hpux*)
4699  x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*)  x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*)
4700    # Find out which ABI we are using.    # Find out which ABI we are using.
4701    echo 'int i;' > conftest.$ac_ext    echo 'int i;' > conftest.$ac_ext
4702      lt_cv_cc_lib64_suffix=no
4703    if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5    if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4704    (eval $ac_compile) 2>&5    (eval $ac_compile) 2>&5
4705    ac_status=$?    ac_status=$?
4706    echo "$as_me:$LINENO: \$? = $ac_status" >&5    echo "$as_me:$LINENO: \$? = $ac_status" >&5
4707    (exit $ac_status); }; then    (exit $ac_status); }; then
4708      case "`/usr/bin/file conftest.o`" in      case "`/usr/bin/file conftest.$ac_objext`" in
4709      *32-bit*)      *32-bit*)
4710        case $host in        case $host in
4711          x86_64-*linux*)          x86_64-*linux*)
# Line 4702  x86_64-*linux*|ppc*-*linux*|powerpc*-*li Line 4726  x86_64-*linux*|ppc*-*linux*|powerpc*-*li
4726        case $host in        case $host in
4727          x86_64-*linux*)          x86_64-*linux*)
4728            LD="${LD-ld} -m elf_x86_64"            LD="${LD-ld} -m elf_x86_64"
4729              lt_cv_cc_lib64_suffix=yes
4730            ;;            ;;
4731          ppc*-*linux*|powerpc*-*linux*)          ppc*-*linux*|powerpc*-*linux*)
4732            LD="${LD-ld} -m elf64ppc"            LD="${LD-ld} -m elf64ppc"
4733              lt_cv_cc_lib64_suffix=yes
4734            ;;            ;;
4735          s390*-*linux*)          s390*-*linux*)
4736            LD="${LD-ld} -m elf64_s390"            LD="${LD-ld} -m elf64_s390"
4737              lt_cv_cc_lib64_suffix=yes
4738            ;;            ;;
4739          sparc*-*linux*)          sparc*-*linux*)
4740            LD="${LD-ld} -m elf64_sparc"            LD="${LD-ld} -m elf64_sparc"
4741              lt_cv_cc_lib64_suffix=yes
4742            ;;            ;;
4743        esac        esac
4744        ;;        ;;
# Line 5664  if test "${lt_cv_sys_max_cmd_len+set}" = Line 5692  if test "${lt_cv_sys_max_cmd_len+set}" =
5692    echo $ECHO_N "(cached) $ECHO_C" >&6    echo $ECHO_N "(cached) $ECHO_C" >&6
5693  else  else
5694      i=0      i=0
5695    testring="ABCD"    teststring="ABCD"
5696    
5697    case $build_os in    case $build_os in
5698    msdosdjgpp*)    msdosdjgpp*)
# Line 5703  else Line 5731  else
5731      # If test is not a shell built-in, we'll probably end up computing a      # If test is not a shell built-in, we'll probably end up computing a
5732      # maximum length that is only half of the actual maximum length, but      # maximum length that is only half of the actual maximum length, but
5733      # we can't tell.      # we can't tell.
5734      while (test "X"`$CONFIG_SHELL $0 --fallback-echo "X$testring" 2>/dev/null` \      while (test "X"`$CONFIG_SHELL $0 --fallback-echo "X$teststring" 2>/dev/null` \
5735                 = "XX$testring") >/dev/null 2>&1 &&                 = "XX$teststring") >/dev/null 2>&1 &&
5736              new_result=`expr "X$testring" : ".*" 2>&1` &&              new_result=`expr "X$teststring" : ".*" 2>&1` &&
5737              lt_cv_sys_max_cmd_len=$new_result &&              lt_cv_sys_max_cmd_len=$new_result &&
5738              test $i != 17 # 1/2 MB should be enough              test $i != 17 # 1/2 MB should be enough
5739      do      do
5740        i=`expr $i + 1`        i=`expr $i + 1`
5741        testring=$testring$testring        teststring=$teststring$teststring
5742      done      done
5743      testring=      teststring=
5744      # Add a significant safety factor because C++ compilers can tack on massive      # Add a significant safety factor because C++ compilers can tack on massive
5745      # amounts of additional arguments before passing them to the linker.      # amounts of additional arguments before passing them to the linker.
5746      # It appears as though 1/2 is a usable value.      # It appears as though 1/2 is a usable value.
# Line 6543  else Line 6571  else
6571     -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \     -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
6572     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
6573     -e 's:$: $lt_compiler_flag:'`     -e 's:$: $lt_compiler_flag:'`
6574     (eval echo "\"\$as_me:6546: $lt_compile\"" >&5)     (eval echo "\"\$as_me:6574: $lt_compile\"" >&5)
6575     (eval "$lt_compile" 2>conftest.err)     (eval "$lt_compile" 2>conftest.err)
6576     ac_status=$?     ac_status=$?
6577     cat conftest.err >&5     cat conftest.err >&5
6578     echo "$as_me:6550: \$? = $ac_status" >&5     echo "$as_me:6578: \$? = $ac_status" >&5
6579     if (exit $ac_status) && test -s "$ac_outfile"; then     if (exit $ac_status) && test -s "$ac_outfile"; then
6580       # The compiler can only warn and ignore the option if not recognized       # The compiler can only warn and ignore the option if not recognized
6581       # So say no if there are warnings       # So say no if there are warnings
# Line 6776  else Line 6804  else
6804     -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \     -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
6805     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
6806     -e 's:$: $lt_compiler_flag:'`     -e 's:$: $lt_compiler_flag:'`
6807     (eval echo "\"\$as_me:6779: $lt_compile\"" >&5)     (eval echo "\"\$as_me:6807: $lt_compile\"" >&5)
6808     (eval "$lt_compile" 2>conftest.err)     (eval "$lt_compile" 2>conftest.err)
6809     ac_status=$?     ac_status=$?
6810     cat conftest.err >&5     cat conftest.err >&5
6811     echo "$as_me:6783: \$? = $ac_status" >&5     echo "$as_me:6811: \$? = $ac_status" >&5
6812     if (exit $ac_status) && test -s "$ac_outfile"; then     if (exit $ac_status) && test -s "$ac_outfile"; then
6813       # The compiler can only warn and ignore the option if not recognized       # The compiler can only warn and ignore the option if not recognized
6814       # So say no if there are warnings       # So say no if there are warnings
# Line 6836  else Line 6864  else
6864     -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \     -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
6865     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
6866     -e 's:$: $lt_compiler_flag:'`     -e 's:$: $lt_compiler_flag:'`
6867     (eval echo "\"\$as_me:6839: $lt_compile\"" >&5)     (eval echo "\"\$as_me:6867: $lt_compile\"" >&5)
6868     (eval "$lt_compile" 2>out/conftest.err)     (eval "$lt_compile" 2>out/conftest.err)
6869     ac_status=$?     ac_status=$?
6870     cat out/conftest.err >&5     cat out/conftest.err >&5
6871     echo "$as_me:6843: \$? = $ac_status" >&5     echo "$as_me:6871: \$? = $ac_status" >&5
6872     if (exit $ac_status) && test -s out/conftest2.$ac_objext     if (exit $ac_status) && test -s out/conftest2.$ac_objext
6873     then     then
6874       # The compiler can only warn and ignore the option if not recognized       # The compiler can only warn and ignore the option if not recognized
# Line 7052  EOF Line 7080  EOF
7080        ;;        ;;
7081    
7082    linux*)    linux*)
7083      if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
7084          tmp_archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'          tmp_archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
7085          archive_cmds="$tmp_archive_cmds"          archive_cmds="$tmp_archive_cmds"
7086        supports_anon_versioning=no        supports_anon_versioning=no
# Line 7354  if test -z "$aix_libpath"; then aix_libp Line 7382  if test -z "$aix_libpath"; then aix_libp
7382        # Tell ltmain to make .lib files, not .a files.        # Tell ltmain to make .lib files, not .a files.
7383        libext=lib        libext=lib
7384        # Tell ltmain to make .dll files, not .so files.        # Tell ltmain to make .dll files, not .so files.
7385        shrext=".dll"        shrext_cmds=".dll"
7386        # FIXME: Setting linknames here is a bad hack.        # FIXME: Setting linknames here is a bad hack.
7387        archive_cmds='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames='        archive_cmds='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames='
7388        # The linker will automatically build a .lib file if we build a DLL.        # The linker will automatically build a .lib file if we build a DLL.
# Line 7810  echo $ECHO_N "checking dynamic linker ch Line 7838  echo $ECHO_N "checking dynamic linker ch
7838  library_names_spec=  library_names_spec=
7839  libname_spec='lib$name'  libname_spec='lib$name'
7840  soname_spec=  soname_spec=
7841  shrext=".so"  shrext_cmds=".so"
7842  postinstall_cmds=  postinstall_cmds=
7843  postuninstall_cmds=  postuninstall_cmds=
7844  finish_cmds=  finish_cmds=
# Line 7923  bsdi4*) Line 7951  bsdi4*)
7951    
7952  cygwin* | mingw* | pw32*)  cygwin* | mingw* | pw32*)
7953    version_type=windows    version_type=windows
7954    shrext=".dll"    shrext_cmds=".dll"
7955    need_version=no    need_version=no
7956    need_lib_prefix=no    need_lib_prefix=no
7957    
# Line 7988  darwin* | rhapsody*) Line 8016  darwin* | rhapsody*)
8016    soname_spec='${libname}${release}${major}$shared_ext'    soname_spec='${libname}${release}${major}$shared_ext'
8017    shlibpath_overrides_runpath=yes    shlibpath_overrides_runpath=yes
8018    shlibpath_var=DYLD_LIBRARY_PATH    shlibpath_var=DYLD_LIBRARY_PATH
8019    shrext='$(test .$module = .yes && echo .so || echo .dylib)'    shrext_cmds='$(test .$module = .yes && echo .so || echo .dylib)'
8020    # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same.    # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same.
8021    if test "$GCC" = yes; then    if test "$GCC" = yes; then
8022      sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"`      sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"`
# Line 8071  hpux9* | hpux10* | hpux11*) Line 8099  hpux9* | hpux10* | hpux11*)
8099    need_version=no    need_version=no
8100    case "$host_cpu" in    case "$host_cpu" in
8101    ia64*)    ia64*)
8102      shrext='.so'      shrext_cmds='.so'
8103      hardcode_into_libs=yes      hardcode_into_libs=yes
8104      dynamic_linker="$host_os dld.so"      dynamic_linker="$host_os dld.so"
8105      shlibpath_var=LD_LIBRARY_PATH      shlibpath_var=LD_LIBRARY_PATH
# Line 8086  hpux9* | hpux10* | hpux11*) Line 8114  hpux9* | hpux10* | hpux11*)
8114      sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec      sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
8115      ;;      ;;
8116     hppa*64*)     hppa*64*)
8117       shrext='.sl'       shrext_cmds='.sl'
8118       hardcode_into_libs=yes       hardcode_into_libs=yes
8119       dynamic_linker="$host_os dld.sl"       dynamic_linker="$host_os dld.sl"
8120       shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH       shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
# Line 8097  hpux9* | hpux10* | hpux11*) Line 8125  hpux9* | hpux10* | hpux11*)
8125       sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec       sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
8126       ;;       ;;
8127     *)     *)
8128      shrext='.sl'      shrext_cmds='.sl'
8129      dynamic_linker="$host_os dld.sl"      dynamic_linker="$host_os dld.sl"
8130      shlibpath_var=SHLIB_PATH      shlibpath_var=SHLIB_PATH
8131      shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH      shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
# Line 8166  linux*) Line 8194  linux*)
8194    # before this can be enabled.    # before this can be enabled.
8195    hardcode_into_libs=yes    hardcode_into_libs=yes
8196    
8197      libsuff=
8198      if test "$lt_cv_cc_lib64_suffix" = "yes"; then
8199        libsuff=64
8200      fi
8201    
8202    # Append ld.so.conf contents to the search path    # Append ld.so.conf contents to the search path
8203    if test -f /etc/ld.so.conf; then    if test -f /etc/ld.so.conf; then
8204      ld_extra=`$SED -e 's/:,\t/ /g;s/=^=*$//;s/=^= * / /g' /etc/ld.so.conf`      lt_ld_extra=`$SED -e 's/:,\t/ /g;s/=^=*$//;s/=^= * / /g' /etc/ld.so.conf | tr '\n' ' '`
8205      sys_lib_dlsearch_path_spec="/lib /usr/lib $ld_extra"      sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/X11R6/lib${libsuff} $lt_ld_extra"
8206        sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/X11R6/lib${libsuff} /usr/local/lib${libsuff} $lt_ld_extra"
8207    fi    fi
8208    
8209    # We used to test for /lib/ld.so.1 and disable shared libraries on    # We used to test for /lib/ld.so.1 and disable shared libraries on
# Line 8251  openbsd*) Line 8285  openbsd*)
8285    
8286  os2*)  os2*)
8287    libname_spec='$name'    libname_spec='$name'
8288    shrext=".dll"    shrext_cmds=".dll"
8289    need_lib_prefix=no    need_lib_prefix=no
8290    library_names_spec='$libname${shared_ext} $libname.a'    library_names_spec='$libname${shared_ext} $libname.a'
8291    dynamic_linker='OS/2 ld.exe'    dynamic_linker='OS/2 ld.exe'
# Line 9020  else Line 9054  else
9054    lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2    lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
9055    lt_status=$lt_dlunknown    lt_status=$lt_dlunknown
9056    cat > conftest.$ac_ext <<EOF    cat > conftest.$ac_ext <<EOF
9057  #line 9023 "configure"  #line 9057 "configure"
9058  #include "confdefs.h"  #include "confdefs.h"
9059    
9060  #if HAVE_DLFCN_H  #if HAVE_DLFCN_H
# Line 9118  else Line 9152  else
9152    lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2    lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
9153    lt_status=$lt_dlunknown    lt_status=$lt_dlunknown
9154    cat > conftest.$ac_ext <<EOF    cat > conftest.$ac_ext <<EOF
9155  #line 9121 "configure"  #line 9155 "configure"
9156  #include "confdefs.h"  #include "confdefs.h"
9157    
9158  #if HAVE_DLFCN_H  #if HAVE_DLFCN_H
# Line 9243  aix3*) Line 9277  aix3*)
9277    fi    fi
9278    ;;    ;;
9279    
9280  aix4*)  aix4* | aix5*)
9281    if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then    if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
9282      test "$enable_shared" = yes && enable_static=no      test "$enable_shared" = yes && enable_static=no
9283    fi    fi
# Line 9309  if test -f "$ltmain"; then Line 9343  if test -f "$ltmain"; then
9343    # Now quote all the things that may contain metacharacters while being    # Now quote all the things that may contain metacharacters while being
9344    # careful not to overquote the AC_SUBSTed values.  We take copies of the    # careful not to overquote the AC_SUBSTed values.  We take copies of the
9345    # variables and quote the copies for generation of the libtool script.    # variables and quote the copies for generation of the libtool script.
9346    for var in echo old_CC old_CFLAGS AR AR_FLAGS AS EGREP RANLIB LN_S LTCC NM \    for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC NM \
9347      SED SHELL STRIP \      SED SHELL STRIP \
9348      libname_spec library_names_spec soname_spec extract_expsyms_cmds \      libname_spec library_names_spec soname_spec extract_expsyms_cmds \
9349      old_striplib striplib file_magic_cmd finish_cmds finish_eval \      old_striplib striplib file_magic_cmd finish_cmds finish_eval \
# Line 9500  DLLTOOL="$DLLTOOL" Line 9534  DLLTOOL="$DLLTOOL"
9534  OBJDUMP="$OBJDUMP"  OBJDUMP="$OBJDUMP"
9535    
9536  # Used on cygwin: assembler.  # Used on cygwin: assembler.
9537  AS=$lt_AS  AS="$AS"
9538    
9539  # The name of the directory that contains temporary libtool files.  # The name of the directory that contains temporary libtool files.
9540  objdir=$objdir  objdir=$objdir
# Line 9519  objext="$ac_objext" Line 9553  objext="$ac_objext"
9553  libext="$libext"  libext="$libext"
9554    
9555  # Shared library suffix (normally ".so").  # Shared library suffix (normally ".so").
9556  shrext='$shrext'  shrext_cmds='$shrext_cmds'
9557    
9558  # Executable file suffix (normally "").  # Executable file suffix (normally "").
9559  exeext="$exeext"  exeext="$exeext"
# Line 10434  if test -z "$aix_libpath"; then aix_libp Line 10468  if test -z "$aix_libpath"; then aix_libp
10468        # explicitly linking system object files so we need to strip them        # explicitly linking system object files so we need to strip them
10469        # from the output so that they don't get included in the library        # from the output so that they don't get included in the library
10470        # dependencies.        # dependencies.
10471        output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | egrep "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'        output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
10472        ;;        ;;
10473      *)      *)
10474        if test "$GXX" = yes; then        if test "$GXX" = yes; then
# Line 11297  else Line 11331  else
11331     -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \     -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
11332     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
11333     -e 's:$: $lt_compiler_flag:'`     -e 's:$: $lt_compiler_flag:'`
11334     (eval echo "\"\$as_me:11300: $lt_compile\"" >&5)     (eval echo "\"\$as_me:11334: $lt_compile\"" >&5)
11335     (eval "$lt_compile" 2>conftest.err)     (eval "$lt_compile" 2>conftest.err)
11336     ac_status=$?     ac_status=$?
11337     cat conftest.err >&5     cat conftest.err >&5
11338     echo "$as_me:11304: \$? = $ac_status" >&5     echo "$as_me:11338: \$? = $ac_status" >&5
11339     if (exit $ac_status) && test -s "$ac_outfile"; then     if (exit $ac_status) && test -s "$ac_outfile"; then
11340       # The compiler can only warn and ignore the option if not recognized       # The compiler can only warn and ignore the option if not recognized
11341       # So say no if there are warnings       # So say no if there are warnings
# Line 11357  else Line 11391  else
11391     -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \     -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
11392     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
11393     -e 's:$: $lt_compiler_flag:'`     -e 's:$: $lt_compiler_flag:'`
11394     (eval echo "\"\$as_me:11360: $lt_compile\"" >&5)     (eval echo "\"\$as_me:11394: $lt_compile\"" >&5)
11395     (eval "$lt_compile" 2>out/conftest.err)     (eval "$lt_compile" 2>out/conftest.err)
11396     ac_status=$?     ac_status=$?
11397     cat out/conftest.err >&5     cat out/conftest.err >&5
11398     echo "$as_me:11364: \$? = $ac_status" >&5     echo "$as_me:11398: \$? = $ac_status" >&5
11399     if (exit $ac_status) && test -s out/conftest2.$ac_objext     if (exit $ac_status) && test -s out/conftest2.$ac_objext
11400     then     then
11401       # The compiler can only warn and ignore the option if not recognized       # The compiler can only warn and ignore the option if not recognized
# Line 11508  echo $ECHO_N "checking dynamic linker ch Line 11542  echo $ECHO_N "checking dynamic linker ch
11542  library_names_spec=  library_names_spec=
11543  libname_spec='lib$name'  libname_spec='lib$name'
11544  soname_spec=  soname_spec=
11545  shrext=".so"  shrext_cmds=".so"
11546  postinstall_cmds=  postinstall_cmds=
11547  postuninstall_cmds=  postuninstall_cmds=
11548  finish_cmds=  finish_cmds=
# Line 11621  bsdi4*) Line 11655  bsdi4*)
11655    
11656  cygwin* | mingw* | pw32*)  cygwin* | mingw* | pw32*)
11657    version_type=windows    version_type=windows
11658    shrext=".dll"    shrext_cmds=".dll"
11659    need_version=no    need_version=no
11660    need_lib_prefix=no    need_lib_prefix=no
11661    
# Line 11686  darwin* | rhapsody*) Line 11720  darwin* | rhapsody*)
11720    soname_spec='${libname}${release}${major}$shared_ext'    soname_spec='${libname}${release}${major}$shared_ext'
11721    shlibpath_overrides_runpath=yes    shlibpath_overrides_runpath=yes
11722    shlibpath_var=DYLD_LIBRARY_PATH    shlibpath_var=DYLD_LIBRARY_PATH
11723    shrext='$(test .$module = .yes && echo .so || echo .dylib)'    shrext_cmds='$(test .$module = .yes && echo .so || echo .dylib)'
11724    # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same.    # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same.
11725    if test "$GCC" = yes; then    if test "$GCC" = yes; then
11726      sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"`      sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"`
# Line 11769  hpux9* | hpux10* | hpux11*) Line 11803  hpux9* | hpux10* | hpux11*)
11803    need_version=no    need_version=no
11804    case "$host_cpu" in    case "$host_cpu" in
11805    ia64*)    ia64*)
11806      shrext='.so'      shrext_cmds='.so'
11807      hardcode_into_libs=yes      hardcode_into_libs=yes
11808      dynamic_linker="$host_os dld.so"      dynamic_linker="$host_os dld.so"
11809      shlibpath_var=LD_LIBRARY_PATH      shlibpath_var=LD_LIBRARY_PATH
# Line 11784  hpux9* | hpux10* | hpux11*) Line 11818  hpux9* | hpux10* | hpux11*)
11818      sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec      sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
11819      ;;      ;;
11820     hppa*64*)     hppa*64*)
11821       shrext='.sl'       shrext_cmds='.sl'
11822       hardcode_into_libs=yes       hardcode_into_libs=yes
11823       dynamic_linker="$host_os dld.sl"       dynamic_linker="$host_os dld.sl"
11824       shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH       shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
# Line 11795  hpux9* | hpux10* | hpux11*) Line 11829  hpux9* | hpux10* | hpux11*)
11829       sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec       sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
11830       ;;       ;;
11831     *)     *)
11832      shrext='.sl'      shrext_cmds='.sl'
11833      dynamic_linker="$host_os dld.sl"      dynamic_linker="$host_os dld.sl"
11834      shlibpath_var=SHLIB_PATH      shlibpath_var=SHLIB_PATH
11835      shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH      shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
# Line 11864  linux*) Line 11898  linux*)
11898    # before this can be enabled.    # before this can be enabled.
11899    hardcode_into_libs=yes    hardcode_into_libs=yes
11900    
11901      libsuff=
11902      if test "$lt_cv_cc_lib64_suffix" = "yes"; then
11903        libsuff=64
11904      fi
11905    
11906    # Append ld.so.conf contents to the search path    # Append ld.so.conf contents to the search path
11907    if test -f /etc/ld.so.conf; then    if test -f /etc/ld.so.conf; then
11908      ld_extra=`$SED -e 's/:,\t/ /g;s/=^=*$//;s/=^= * / /g' /etc/ld.so.conf`      lt_ld_extra=`$SED -e 's/:,\t/ /g;s/=^=*$//;s/=^= * / /g' /etc/ld.so.conf | tr '\n' ' '`
11909      sys_lib_dlsearch_path_spec="/lib /usr/lib $ld_extra"      sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/X11R6/lib${libsuff} $lt_ld_extra"
11910        sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/X11R6/lib${libsuff} /usr/local/lib${libsuff} $lt_ld_extra"
11911    fi    fi
11912    
11913    # We used to test for /lib/ld.so.1 and disable shared libraries on    # We used to test for /lib/ld.so.1 and disable shared libraries on
# Line 11949  openbsd*) Line 11989  openbsd*)
11989    
11990  os2*)  os2*)
11991    libname_spec='$name'    libname_spec='$name'
11992    shrext=".dll"    shrext_cmds=".dll"
11993    need_lib_prefix=no    need_lib_prefix=no
11994    library_names_spec='$libname${shared_ext} $libname.a'    library_names_spec='$libname${shared_ext} $libname.a'
11995    dynamic_linker='OS/2 ld.exe'    dynamic_linker='OS/2 ld.exe'
# Line 12718  else Line 12758  else
12758    lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2    lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
12759    lt_status=$lt_dlunknown    lt_status=$lt_dlunknown
12760    cat > conftest.$ac_ext <<EOF    cat > conftest.$ac_ext <<EOF
12761  #line 12721 "configure"  #line 12761 "configure"
12762  #include "confdefs.h"  #include "confdefs.h"
12763    
12764  #if HAVE_DLFCN_H  #if HAVE_DLFCN_H
# Line 12816  else Line 12856  else
12856    lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2    lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
12857    lt_status=$lt_dlunknown    lt_status=$lt_dlunknown
12858    cat > conftest.$ac_ext <<EOF    cat > conftest.$ac_ext <<EOF
12859  #line 12819 "configure"  #line 12859 "configure"
12860  #include "confdefs.h"  #include "confdefs.h"
12861    
12862  #if HAVE_DLFCN_H  #if HAVE_DLFCN_H
# Line 12933  if test -f "$ltmain"; then Line 12973  if test -f "$ltmain"; then
12973    # Now quote all the things that may contain metacharacters while being    # Now quote all the things that may contain metacharacters while being
12974    # careful not to overquote the AC_SUBSTed values.  We take copies of the    # careful not to overquote the AC_SUBSTed values.  We take copies of the
12975    # variables and quote the copies for generation of the libtool script.    # variables and quote the copies for generation of the libtool script.
12976    for var in echo old_CC old_CFLAGS AR AR_FLAGS AS EGREP RANLIB LN_S LTCC NM \    for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC NM \
12977      SED SHELL STRIP \      SED SHELL STRIP \
12978      libname_spec library_names_spec soname_spec extract_expsyms_cmds \      libname_spec library_names_spec soname_spec extract_expsyms_cmds \
12979      old_striplib striplib file_magic_cmd finish_cmds finish_eval \      old_striplib striplib file_magic_cmd finish_cmds finish_eval \
# Line 13076  DLLTOOL="$DLLTOOL" Line 13116  DLLTOOL="$DLLTOOL"
13116  OBJDUMP="$OBJDUMP"  OBJDUMP="$OBJDUMP"
13117    
13118  # Used on cygwin: assembler.  # Used on cygwin: assembler.
13119  AS=$lt_AS  AS="$AS"
13120    
13121  # The name of the directory that contains temporary libtool files.  # The name of the directory that contains temporary libtool files.
13122  objdir=$objdir  objdir=$objdir
# Line 13095  objext="$ac_objext" Line 13135  objext="$ac_objext"
13135  libext="$libext"  libext="$libext"
13136    
13137  # Shared library suffix (normally ".so").  # Shared library suffix (normally ".so").
13138  shrext='$shrext'  shrext_cmds='$shrext_cmds'
13139    
13140  # Executable file suffix (normally "").  # Executable file suffix (normally "").
13141  exeext="$exeext"  exeext="$exeext"
# Line 13417  aix3*) Line 13457  aix3*)
13457      postinstall_cmds='$RANLIB $lib'      postinstall_cmds='$RANLIB $lib'
13458    fi    fi
13459    ;;    ;;
13460  aix4*)  aix4* | aix5*)
13461    test "$enable_shared" = yes && enable_static=no    test "$enable_shared" = yes && enable_static=no
13462    ;;    ;;
13463  esac  esac
# Line 13643  else Line 13683  else
13683     -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \     -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
13684     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
13685     -e 's:$: $lt_compiler_flag:'`     -e 's:$: $lt_compiler_flag:'`
13686     (eval echo "\"\$as_me:13646: $lt_compile\"" >&5)     (eval echo "\"\$as_me:13686: $lt_compile\"" >&5)
13687     (eval "$lt_compile" 2>conftest.err)     (eval "$lt_compile" 2>conftest.err)
13688     ac_status=$?     ac_status=$?
13689     cat conftest.err >&5     cat conftest.err >&5
13690     echo "$as_me:13650: \$? = $ac_status" >&5     echo "$as_me:13690: \$? = $ac_status" >&5
13691     if (exit $ac_status) && test -s "$ac_outfile"; then     if (exit $ac_status) && test -s "$ac_outfile"; then
13692       # The compiler can only warn and ignore the option if not recognized       # The compiler can only warn and ignore the option if not recognized
13693       # So say no if there are warnings       # So say no if there are warnings
# Line 13703  else Line 13743  else
13743     -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \     -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
13744     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
13745     -e 's:$: $lt_compiler_flag:'`     -e 's:$: $lt_compiler_flag:'`
13746     (eval echo "\"\$as_me:13706: $lt_compile\"" >&5)     (eval echo "\"\$as_me:13746: $lt_compile\"" >&5)
13747     (eval "$lt_compile" 2>out/conftest.err)     (eval "$lt_compile" 2>out/conftest.err)
13748     ac_status=$?     ac_status=$?
13749     cat out/conftest.err >&5     cat out/conftest.err >&5
13750     echo "$as_me:13710: \$? = $ac_status" >&5     echo "$as_me:13750: \$? = $ac_status" >&5
13751     if (exit $ac_status) && test -s out/conftest2.$ac_objext     if (exit $ac_status) && test -s out/conftest2.$ac_objext
13752     then     then
13753       # The compiler can only warn and ignore the option if not recognized       # The compiler can only warn and ignore the option if not recognized
# Line 13919  EOF Line 13959  EOF
13959        ;;        ;;
13960    
13961    linux*)    linux*)
13962      if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
13963          tmp_archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'          tmp_archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
13964          archive_cmds_F77="$tmp_archive_cmds"          archive_cmds_F77="$tmp_archive_cmds"
13965        supports_anon_versioning=no        supports_anon_versioning=no
# Line 14201  if test -z "$aix_libpath"; then aix_libp Line 14241  if test -z "$aix_libpath"; then aix_libp
14241        # Tell ltmain to make .lib files, not .a files.        # Tell ltmain to make .lib files, not .a files.
14242        libext=lib        libext=lib
14243        # Tell ltmain to make .dll files, not .so files.        # Tell ltmain to make .dll files, not .so files.
14244        shrext=".dll"        shrext_cmds=".dll"
14245        # FIXME: Setting linknames here is a bad hack.        # FIXME: Setting linknames here is a bad hack.
14246        archive_cmds_F77='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames='        archive_cmds_F77='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames='
14247        # The linker will automatically build a .lib file if we build a DLL.        # The linker will automatically build a .lib file if we build a DLL.
# Line 14657  echo $ECHO_N "checking dynamic linker ch Line 14697  echo $ECHO_N "checking dynamic linker ch
14697  library_names_spec=  library_names_spec=
14698  libname_spec='lib$name'  libname_spec='lib$name'
14699  soname_spec=  soname_spec=
14700  shrext=".so"  shrext_cmds=".so"
14701  postinstall_cmds=  postinstall_cmds=
14702  postuninstall_cmds=  postuninstall_cmds=
14703  finish_cmds=  finish_cmds=
# Line 14770  bsdi4*) Line 14810  bsdi4*)
14810    
14811  cygwin* | mingw* | pw32*)  cygwin* | mingw* | pw32*)
14812    version_type=windows    version_type=windows
14813    shrext=".dll"    shrext_cmds=".dll"
14814    need_version=no    need_version=no
14815    need_lib_prefix=no    need_lib_prefix=no
14816    
# Line 14835  darwin* | rhapsody*) Line 14875  darwin* | rhapsody*)
14875    soname_spec='${libname}${release}${major}$shared_ext'    soname_spec='${libname}${release}${major}$shared_ext'
14876    shlibpath_overrides_runpath=yes    shlibpath_overrides_runpath=yes
14877    shlibpath_var=DYLD_LIBRARY_PATH    shlibpath_var=DYLD_LIBRARY_PATH
14878    shrext='$(test .$module = .yes && echo .so || echo .dylib)'    shrext_cmds='$(test .$module = .yes && echo .so || echo .dylib)'
14879    # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same.    # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same.
14880    if test "$GCC" = yes; then    if test "$GCC" = yes; then
14881      sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"`      sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"`
# Line 14918  hpux9* | hpux10* | hpux11*) Line 14958  hpux9* | hpux10* | hpux11*)
14958    need_version=no    need_version=no
14959    case "$host_cpu" in    case "$host_cpu" in
14960    ia64*)    ia64*)
14961      shrext='.so'      shrext_cmds='.so'
14962      hardcode_into_libs=yes      hardcode_into_libs=yes
14963      dynamic_linker="$host_os dld.so"      dynamic_linker="$host_os dld.so"
14964      shlibpath_var=LD_LIBRARY_PATH      shlibpath_var=LD_LIBRARY_PATH
# Line 14933  hpux9* | hpux10* | hpux11*) Line 14973  hpux9* | hpux10* | hpux11*)
14973      sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec      sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
14974      ;;      ;;
14975     hppa*64*)     hppa*64*)
14976       shrext='.sl'       shrext_cmds='.sl'
14977       hardcode_into_libs=yes       hardcode_into_libs=yes
14978       dynamic_linker="$host_os dld.sl"       dynamic_linker="$host_os dld.sl"
14979       shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH       shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
# Line 14944  hpux9* | hpux10* | hpux11*) Line 14984  hpux9* | hpux10* | hpux11*)
14984       sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec       sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
14985       ;;       ;;
14986     *)     *)
14987      shrext='.sl'      shrext_cmds='.sl'
14988      dynamic_linker="$host_os dld.sl"      dynamic_linker="$host_os dld.sl"
14989      shlibpath_var=SHLIB_PATH      shlibpath_var=SHLIB_PATH
14990      shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH      shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
# Line 15013  linux*) Line 15053  linux*)
15053    # before this can be enabled.    # before this can be enabled.
15054    hardcode_into_libs=yes    hardcode_into_libs=yes
15055    
15056      libsuff=
15057      if test "$lt_cv_cc_lib64_suffix" = "yes"; then
15058        libsuff=64
15059      fi
15060    
15061    # Append ld.so.conf contents to the search path    # Append ld.so.conf contents to the search path
15062    if test -f /etc/ld.so.conf; then    if test -f /etc/ld.so.conf; then
15063      ld_extra=`$SED -e 's/:,\t/ /g;s/=^=*$//;s/=^= * / /g' /etc/ld.so.conf`      lt_ld_extra=`$SED -e 's/:,\t/ /g;s/=^=*$//;s/=^= * / /g' /etc/ld.so.conf | tr '\n' ' '`
15064      sys_lib_dlsearch_path_spec="/lib /usr/lib $ld_extra"      sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/X11R6/lib${libsuff} $lt_ld_extra"
15065        sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/X11R6/lib${libsuff} /usr/local/lib${libsuff} $lt_ld_extra"
15066    fi    fi
15067    
15068    # We used to test for /lib/ld.so.1 and disable shared libraries on    # We used to test for /lib/ld.so.1 and disable shared libraries on
# Line 15098  openbsd*) Line 15144  openbsd*)
15144    
15145  os2*)  os2*)
15146    libname_spec='$name'    libname_spec='$name'
15147    shrext=".dll"    shrext_cmds=".dll"
15148    need_lib_prefix=no    need_lib_prefix=no
15149    library_names_spec='$libname${shared_ext} $libname.a'    library_names_spec='$libname${shared_ext} $libname.a'
15150    dynamic_linker='OS/2 ld.exe'    dynamic_linker='OS/2 ld.exe'
# Line 15277  if test -f "$ltmain"; then Line 15323  if test -f "$ltmain"; then
15323    # Now quote all the things that may contain metacharacters while being    # Now quote all the things that may contain metacharacters while being
15324    # careful not to overquote the AC_SUBSTed values.  We take copies of the    # careful not to overquote the AC_SUBSTed values.  We take copies of the
15325    # variables and quote the copies for generation of the libtool script.    # variables and quote the copies for generation of the libtool script.
15326    for var in echo old_CC old_CFLAGS AR AR_FLAGS AS EGREP RANLIB LN_S LTCC NM \    for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC NM \
15327      SED SHELL STRIP \      SED SHELL STRIP \
15328      libname_spec library_names_spec soname_spec extract_expsyms_cmds \      libname_spec library_names_spec soname_spec extract_expsyms_cmds \
15329      old_striplib striplib file_magic_cmd finish_cmds finish_eval \      old_striplib striplib file_magic_cmd finish_cmds finish_eval \
# Line 15420  DLLTOOL="$DLLTOOL" Line 15466  DLLTOOL="$DLLTOOL"
15466  OBJDUMP="$OBJDUMP"  OBJDUMP="$OBJDUMP"
15467    
15468  # Used on cygwin: assembler.  # Used on cygwin: assembler.
15469  AS=$lt_AS  AS="$AS"
15470    
15471  # The name of the directory that contains temporary libtool files.  # The name of the directory that contains temporary libtool files.
15472  objdir=$objdir  objdir=$objdir
# Line 15439  objext="$ac_objext" Line 15485  objext="$ac_objext"
15485  libext="$libext"  libext="$libext"
15486    
15487  # Shared library suffix (normally ".so").  # Shared library suffix (normally ".so").
15488  shrext='$shrext'  shrext_cmds='$shrext_cmds'
15489    
15490  # Executable file suffix (normally "").  # Executable file suffix (normally "").
15491  exeext="$exeext"  exeext="$exeext"
# Line 15737  else Line 15783  else
15783     -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \     -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
15784     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
15785     -e 's:$: $lt_compiler_flag:'`     -e 's:$: $lt_compiler_flag:'`
15786     (eval echo "\"\$as_me:15740: $lt_compile\"" >&5)     (eval echo "\"\$as_me:15786: $lt_compile\"" >&5)
15787     (eval "$lt_compile" 2>conftest.err)     (eval "$lt_compile" 2>conftest.err)
15788     ac_status=$?     ac_status=$?
15789     cat conftest.err >&5     cat conftest.err >&5
15790     echo "$as_me:15744: \$? = $ac_status" >&5     echo "$as_me:15790: \$? = $ac_status" >&5
15791     if (exit $ac_status) && test -s "$ac_outfile"; then     if (exit $ac_status) && test -s "$ac_outfile"; then
15792       # The compiler can only warn and ignore the option if not recognized       # The compiler can only warn and ignore the option if not recognized
15793       # So say no if there are warnings       # So say no if there are warnings
# Line 15970  else Line 16016  else
16016     -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \     -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
16017     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
16018     -e 's:$: $lt_compiler_flag:'`     -e 's:$: $lt_compiler_flag:'`
16019     (eval echo "\"\$as_me:15973: $lt_compile\"" >&5)     (eval echo "\"\$as_me:16019: $lt_compile\"" >&5)
16020     (eval "$lt_compile" 2>conftest.err)     (eval "$lt_compile" 2>conftest.err)
16021     ac_status=$?     ac_status=$?
16022     cat conftest.err >&5     cat conftest.err >&5
16023     echo "$as_me:15977: \$? = $ac_status" >&5     echo "$as_me:16023: \$? = $ac_status" >&5
16024     if (exit $ac_status) && test -s "$ac_outfile"; then     if (exit $ac_status) && test -s "$ac_outfile"; then
16025       # The compiler can only warn and ignore the option if not recognized       # The compiler can only warn and ignore the option if not recognized
16026       # So say no if there are warnings       # So say no if there are warnings
# Line 16030  else Line 16076  else
16076     -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \     -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
16077     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \     -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
16078     -e 's:$: $lt_compiler_flag:'`     -e 's:$: $lt_compiler_flag:'`
16079     (eval echo "\"\$as_me:16033: $lt_compile\"" >&5)     (eval echo "\"\$as_me:16079: $lt_compile\"" >&5)
16080     (eval "$lt_compile" 2>out/conftest.err)     (eval "$lt_compile" 2>out/conftest.err)
16081     ac_status=$?     ac_status=$?
16082     cat out/conftest.err >&5     cat out/conftest.err >&5
16083     echo "$as_me:16037: \$? = $ac_status" >&5     echo "$as_me:16083: \$? = $ac_status" >&5
16084     if (exit $ac_status) && test -s out/conftest2.$ac_objext     if (exit $ac_status) && test -s out/conftest2.$ac_objext
16085     then     then
16086       # The compiler can only warn and ignore the option if not recognized       # The compiler can only warn and ignore the option if not recognized
# Line 16246  EOF Line 16292  EOF
16292        ;;        ;;
16293    
16294    linux*)    linux*)
16295      if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
16296          tmp_archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'          tmp_archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
16297          archive_cmds_GCJ="$tmp_archive_cmds"          archive_cmds_GCJ="$tmp_archive_cmds"
16298        supports_anon_versioning=no        supports_anon_versioning=no
# Line 16548  if test -z "$aix_libpath"; then aix_libp Line 16594  if test -z "$aix_libpath"; then aix_libp
16594        # Tell ltmain to make .lib files, not .a files.        # Tell ltmain to make .lib files, not .a files.
16595        libext=lib        libext=lib
16596        # Tell ltmain to make .dll files, not .so files.        # Tell ltmain to make .dll files, not .so files.
16597        shrext=".dll"        shrext_cmds=".dll"
16598        # FIXME: Setting linknames here is a bad hack.        # FIXME: Setting linknames here is a bad hack.
16599        archive_cmds_GCJ='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames='        archive_cmds_GCJ='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames='
16600        # The linker will automatically build a .lib file if we build a DLL.        # The linker will automatically build a .lib file if we build a DLL.
# Line 17004  echo $ECHO_N "checking dynamic linker ch Line 17050  echo $ECHO_N "checking dynamic linker ch
17050  library_names_spec=  library_names_spec=
17051  libname_spec='lib$name'  libname_spec='lib$name'
17052  soname_spec=  soname_spec=
17053  shrext=".so"  shrext_cmds=".so"
17054  postinstall_cmds=  postinstall_cmds=
17055  postuninstall_cmds=  postuninstall_cmds=
17056  finish_cmds=  finish_cmds=
# Line 17117  bsdi4*) Line 17163  bsdi4*)
17163    
17164  cygwin* | mingw* | pw32*)  cygwin* | mingw* | pw32*)
17165    version_type=windows    version_type=windows
17166    shrext=".dll"    shrext_cmds=".dll"
17167    need_version=no    need_version=no
17168    need_lib_prefix=no    need_lib_prefix=no
17169    
# Line 17182  darwin* | rhapsody*) Line 17228  darwin* | rhapsody*)
17228    soname_spec='${libname}${release}${major}$shared_ext'    soname_spec='${libname}${release}${major}$shared_ext'
17229    shlibpath_overrides_runpath=yes    shlibpath_overrides_runpath=yes
17230    shlibpath_var=DYLD_LIBRARY_PATH    shlibpath_var=DYLD_LIBRARY_PATH
17231    shrext='$(test .$module = .yes && echo .so || echo .dylib)'    shrext_cmds='$(test .$module = .yes && echo .so || echo .dylib)'
17232    # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same.    # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same.
17233    if test "$GCC" = yes; then    if test "$GCC" = yes; then
17234      sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"`      sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"`
# Line 17265  hpux9* | hpux10* | hpux11*) Line 17311  hpux9* | hpux10* | hpux11*)
17311    need_version=no    need_version=no
17312    case "$host_cpu" in    case "$host_cpu" in
17313    ia64*)    ia64*)
17314      shrext='.so'      shrext_cmds='.so'
17315      hardcode_into_libs=yes      hardcode_into_libs=yes
17316      dynamic_linker="$host_os dld.so"      dynamic_linker="$host_os dld.so"
17317      shlibpath_var=LD_LIBRARY_PATH      shlibpath_var=LD_LIBRARY_PATH
# Line 17280  hpux9* | hpux10* | hpux11*) Line 17326  hpux9* | hpux10* | hpux11*)
17326      sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec      sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
17327      ;;      ;;
17328     hppa*64*)     hppa*64*)
17329       shrext='.sl'       shrext_cmds='.sl'
17330       hardcode_into_libs=yes       hardcode_into_libs=yes
17331       dynamic_linker="$host_os dld.sl"       dynamic_linker="$host_os dld.sl"
17332       shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH       shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
# Line 17291  hpux9* | hpux10* | hpux11*) Line 17337  hpux9* | hpux10* | hpux11*)
17337       sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec       sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
17338       ;;       ;;
17339     *)     *)
17340      shrext='.sl'      shrext_cmds='.sl'
17341      dynamic_linker="$host_os dld.sl"      dynamic_linker="$host_os dld.sl"
17342      shlibpath_var=SHLIB_PATH      shlibpath_var=SHLIB_PATH
17343      shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH      shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
# Line 17360  linux*) Line 17406  linux*)
17406    # before this can be enabled.    # before this can be enabled.
17407    hardcode_into_libs=yes    hardcode_into_libs=yes
17408    
17409      libsuff=
17410      if test "$lt_cv_cc_lib64_suffix" = "yes"; then
17411        libsuff=64
17412      fi
17413    
17414    # Append ld.so.conf contents to the search path    # Append ld.so.conf contents to the search path
17415    if test -f /etc/ld.so.conf; then    if test -f /etc/ld.so.conf; then
17416      ld_extra=`$SED -e 's/:,\t/ /g;s/=^=*$//;s/=^= * / /g' /etc/ld.so.conf`      lt_ld_extra=`$SED -e 's/:,\t/ /g;s/=^=*$//;s/=^= * / /g' /etc/ld.so.conf | tr '\n' ' '`
17417      sys_lib_dlsearch_path_spec="/lib /usr/lib $ld_extra"      sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/X11R6/lib${libsuff} $lt_ld_extra"
17418        sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/X11R6/lib${libsuff} /usr/local/lib${libsuff} $lt_ld_extra"
17419    fi    fi
17420    
17421    # We used to test for /lib/ld.so.1 and disable shared libraries on    # We used to test for /lib/ld.so.1 and disable shared libraries on
# Line 17445  openbsd*) Line 17497  openbsd*)
17497    
17498  os2*)  os2*)
17499    libname_spec='$name'    libname_spec='$name'
17500    shrext=".dll"    shrext_cmds=".dll"
17501    need_lib_prefix=no    need_lib_prefix=no
17502    library_names_spec='$libname${shared_ext} $libname.a'    library_names_spec='$libname${shared_ext} $libname.a'
17503    dynamic_linker='OS/2 ld.exe'    dynamic_linker='OS/2 ld.exe'
# Line 18214  else Line 18266  else
18266    lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2    lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
18267    lt_status=$lt_dlunknown    lt_status=$lt_dlunknown
18268    cat > conftest.$ac_ext <<EOF    cat > conftest.$ac_ext <<EOF
18269  #line 18217 "configure"  #line 18269 "configure"
18270  #include "confdefs.h"  #include "confdefs.h"
18271    
18272  #if HAVE_DLFCN_H  #if HAVE_DLFCN_H
# Line 18312  else Line 18364  else
18364    lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2    lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
18365    lt_status=$lt_dlunknown    lt_status=$lt_dlunknown
18366    cat > conftest.$ac_ext <<EOF    cat > conftest.$ac_ext <<EOF
18367  #line 18315 "configure"  #line 18367 "configure"
18368  #include "confdefs.h"  #include "confdefs.h"
18369    
18370  #if HAVE_DLFCN_H  #if HAVE_DLFCN_H
# Line 18429  if test -f "$ltmain"; then Line 18481  if test -f "$ltmain"; then
18481    # Now quote all the things that may contain metacharacters while being    # Now quote all the things that may contain metacharacters while being
18482    # careful not to overquote the AC_SUBSTed values.  We take copies of the    # careful not to overquote the AC_SUBSTed values.  We take copies of the
18483    # variables and quote the copies for generation of the libtool script.    # variables and quote the copies for generation of the libtool script.
18484    for var in echo old_CC old_CFLAGS AR AR_FLAGS AS EGREP RANLIB LN_S LTCC NM \    for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC NM \
18485      SED SHELL STRIP \      SED SHELL STRIP \
18486      libname_spec library_names_spec soname_spec extract_expsyms_cmds \      libname_spec library_names_spec soname_spec extract_expsyms_cmds \
18487      old_striplib striplib file_magic_cmd finish_cmds finish_eval \      old_striplib striplib file_magic_cmd finish_cmds finish_eval \
# Line 18572  DLLTOOL="$DLLTOOL" Line 18624  DLLTOOL="$DLLTOOL"
18624  OBJDUMP="$OBJDUMP"  OBJDUMP="$OBJDUMP"
18625    
18626  # Used on cygwin: assembler.  # Used on cygwin: assembler.
18627  AS=$lt_AS  AS="$AS"
18628    
18629  # The name of the directory that contains temporary libtool files.  # The name of the directory that contains temporary libtool files.
18630  objdir=$objdir  objdir=$objdir
# Line 18591  objext="$ac_objext" Line 18643  objext="$ac_objext"
18643  libext="$libext"  libext="$libext"
18644    
18645  # Shared library suffix (normally ".so").  # Shared library suffix (normally ".so").
18646  shrext='$shrext'  shrext_cmds='$shrext_cmds'
18647    
18648  # Executable file suffix (normally "").  # Executable file suffix (normally "").
18649  exeext="$exeext"  exeext="$exeext"
# Line 18874  if test -f "$ltmain"; then Line 18926  if test -f "$ltmain"; then
18926    # Now quote all the things that may contain metacharacters while being    # Now quote all the things that may contain metacharacters while being
18927    # careful not to overquote the AC_SUBSTed values.  We take copies of the    # careful not to overquote the AC_SUBSTed values.  We take copies of the
18928    # variables and quote the copies for generation of the libtool script.    # variables and quote the copies for generation of the libtool script.
18929    for var in echo old_CC old_CFLAGS AR AR_FLAGS AS EGREP RANLIB LN_S LTCC NM \    for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC NM \
18930      SED SHELL STRIP \      SED SHELL STRIP \
18931      libname_spec library_names_spec soname_spec extract_expsyms_cmds \      libname_spec library_names_spec soname_spec extract_expsyms_cmds \
18932      old_striplib striplib file_magic_cmd finish_cmds finish_eval \      old_striplib striplib file_magic_cmd finish_cmds finish_eval \
# Line 19017  DLLTOOL="$DLLTOOL" Line 19069  DLLTOOL="$DLLTOOL"
19069  OBJDUMP="$OBJDUMP"  OBJDUMP="$OBJDUMP"
19070    
19071  # Used on cygwin: assembler.  # Used on cygwin: assembler.
19072  AS=$lt_AS  AS="$AS"
19073    
19074  # The name of the directory that contains temporary libtool files.  # The name of the directory that contains temporary libtool files.
19075  objdir=$objdir  objdir=$objdir
# Line 19036  objext="$ac_objext" Line 19088  objext="$ac_objext"
19088  libext="$libext"  libext="$libext"
19089    
19090  # Shared library suffix (normally ".so").  # Shared library suffix (normally ".so").
19091  shrext='$shrext'  shrext_cmds='$shrext_cmds'
19092    
19093  # Executable file suffix (normally "").  # Executable file suffix (normally "").
19094  exeext="$exeext"  exeext="$exeext"
# Line 19407  test -z "$INSTALL_SCRIPT" && INSTALL_SCR Line 19459  test -z "$INSTALL_SCRIPT" && INSTALL_SCR
19459  test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'  test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
19460    
19461    
 if test -n "$ac_tool_prefix"; then  
   # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.  
 set dummy ${ac_tool_prefix}ranlib; ac_word=$2  
 echo "$as_me:$LINENO: checking for $ac_word" >&5  
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6  
 if test "${ac_cv_prog_RANLIB+set}" = set; then  
   echo $ECHO_N "(cached) $ECHO_C" >&6  
 else  
   if test -n "$RANLIB"; then  
   ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.  
 else  
 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR  
 for as_dir in $PATH  
 do  
   IFS=$as_save_IFS  
   test -z "$as_dir" && as_dir=.  
   for ac_exec_ext in '' $ac_executable_extensions; do  
   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then  
     ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"  
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5  
     break 2  
   fi  
 done  
 done  
   
 fi  
 fi  
 RANLIB=$ac_cv_prog_RANLIB  
 if test -n "$RANLIB"; then  
   echo "$as_me:$LINENO: result: $RANLIB" >&5  
 echo "${ECHO_T}$RANLIB" >&6  
 else  
   echo "$as_me:$LINENO: result: no" >&5  
 echo "${ECHO_T}no" >&6  
 fi  
   
 fi  
 if test -z "$ac_cv_prog_RANLIB"; then  
   ac_ct_RANLIB=$RANLIB  
   # Extract the first word of "ranlib", so it can be a program name with args.  
 set dummy ranlib; ac_word=$2  
 echo "$as_me:$LINENO: checking for $ac_word" >&5  
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6  
 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then  
   echo $ECHO_N "(cached) $ECHO_C" >&6  
 else  
   if test -n "$ac_ct_RANLIB"; then  
   ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.  
 else  
 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR  
 for as_dir in $PATH  
 do  
   IFS=$as_save_IFS  
   test -z "$as_dir" && as_dir=.  
   for ac_exec_ext in '' $ac_executable_extensions; do  
   if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then  
     ac_cv_prog_ac_ct_RANLIB="ranlib"  
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5  
     break 2  
   fi  
 done  
 done  
   
   test -z "$ac_cv_prog_ac_ct_RANLIB" && ac_cv_prog_ac_ct_RANLIB=":"  
 fi  
 fi  
 ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB  
 if test -n "$ac_ct_RANLIB"; then  
   echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5  
 echo "${ECHO_T}$ac_ct_RANLIB" >&6  
 else  
   echo "$as_me:$LINENO: result: no" >&5  
 echo "${ECHO_T}no" >&6  
 fi  
   
   RANLIB=$ac_ct_RANLIB  
 else  
   RANLIB="$ac_cv_prog_RANLIB"  
 fi  
   
19462    
19463    
19464  echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5  echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
# Line 19572  MAKEINFO=${MAKEINFO-"${am_missing_run}ma Line 19544  MAKEINFO=${MAKEINFO-"${am_missing_run}ma
19544    
19545    
19546    
19547    
19548  # Check whether --with-root or --without-root was given.  # Check whether --with-root or --without-root was given.
19549  if test "${with_root+set}" = set; then  if test "${with_root+set}" = set; then
19550    withval="$with_root"    withval="$with_root"
# Line 19580  fi; Line 19553  fi;
19553    
19554  ROOT_LIBRARY="${ROOTSYS}/lib"  ROOT_LIBRARY="${ROOTSYS}/lib"
19555    
19556  ROOT_LDFLAGS="${ROOT_LIBRARY}/libHist.so  ${ROOT_LIBRARY}/libMatrix.so  ${ROOT_LIBRARY}/libTree.so ${ROOT_LIBRARY}/libCore.so ${ROOT_LIBRARY}/libCint.so -ldl"  ROOT_LDFLAGS="                                                          \
19557    ${ROOT_LIBRARY}/libCint.so          ${ROOT_LIBRARY}/libCore.so          \
19558    ${ROOT_LIBRARY}/libMatrix.so        ${ROOT_LIBRARY}/libHist.so          \
19559    ${ROOT_LIBRARY}/libTree.so          ${ROOT_LIBRARY}/libGraf.so          \
19560    ${ROOT_LIBRARY}/libGraf3d.so        ${ROOT_LIBRARY}/libGpad.so          \
19561    ${ROOT_LIBRARY}/libGui.so           ${ROOT_LIBRARY}/libMinuit.so        \
19562    ${ROOT_LIBRARY}/libHistPainter.so   ${ROOT_LIBRARY}/libTreePlayer.so    \
19563    ${ROOT_LIBRARY}/libTreeViewer.so    ${ROOT_LIBRARY}/libProof.so         \
19564    ${ROOT_LIBRARY}/libProofGui.so      ${ROOT_LIBRARY}/libPhysics.so       \
19565    ${ROOT_LIBRARY}/libRint.so          ${ROOT_LIBRARY}/libHtml.so          \
19566    ${ROOT_LIBRARY}/libEG.so            ${ROOT_LIBRARY}/libGeom.so          \
19567    ${ROOT_LIBRARY}/libGeomPainter.so   ${ROOT_LIBRARY}/libVMC.so           \
19568    ${ROOT_LIBRARY}/libFumili.so        ${ROOT_LIBRARY}/libMLP.so           \
19569    ${ROOT_LIBRARY}/libGedOld.so        ${ROOT_LIBRARY}/libGed.so           \
19570    ${ROOT_LIBRARY}/libQuadp.so                 \
19571    ${ROOT_LIBRARY}/libGX11.so          ${ROOT_LIBRARY}/libGX11TTF.so       \
19572    ${ROOT_LIBRARY}/libX3d.so                  \
19573    ${ROOT_LIBRARY}/libASImage.so       \
19574    ${ROOT_LIBRARY}/libThread.so        \
19575     -ldl"
19576    
19577    
19578  ROOT_INCLUDES="-I${ROOTSYS}/include"  ROOT_INCLUDES="-I${ROOTSYS}/include"
19579    
# Line 19588  ROOT_INCLUDES="-I${ROOTSYS}/include" Line 19581  ROOT_INCLUDES="-I${ROOTSYS}/include"
19581  ROOTCINT=${ROOTSYS}/bin/rootcint  ROOTCINT=${ROOTSYS}/bin/rootcint
19582    
19583    
19584    echo "$as_me:$LINENO: checking for gprof" >&5
19585    echo $ECHO_N "checking for gprof... $ECHO_C" >&6
19586    # Check whether --enable-gprof or --disable-gprof was given.
19587    if test "${enable_gprof+set}" = set; then
19588      enableval="$enable_gprof"
19589      gprof=$enableval
19590    else
19591      gprof=no
19592    fi;
19593    if test "$gprof" != no
19594    then
19595        CXXFLAGS="-pg $CXXFLAGS"
19596        echo "$as_me:$LINENO: result: enabled" >&5
19597    echo "${ECHO_T}enabled" >&6
19598    else
19599        echo "$as_me:$LINENO: result: no" >&5
19600    echo "${ECHO_T}no" >&6
19601    fi
19602    
19603    
19604    # Check whether --with-log4cxx or --without-log4cxx was given.
19605    if test "${with_log4cxx+set}" = set; then
19606      withval="$with_log4cxx"
19607      LOG4CXX=$with_log4cxx
19608    fi;
19609    LOG4CXX_INCLUDES="-I${LOG4CXX}/include"
19610    
19611    #------------------------------------------------------------
19612    
19613  # Check whether --with-log4cppp or --without-log4cppp was given.  # Check whether --with-log4cxx or --without-log4cxx was given.
19614  if test "${with_log4cppp+set}" = set; then  if test "${with_log4cxx+set}" = set; then
19615    withval="$with_log4cppp"    withval="$with_log4cxx"
19616    LOG4CPP=$with_log4cpp    LOG4CXX=$with_log4cxx
19617  fi;  fi;
19618    
19619    LOG4CXX_LIBRARY="${LOG4CXX}/lib"
19620    LOG4CXX_INCLUDES="-I${LOG4CXX}/include"
19621    LOG4CXX_LDFLAGS=" ${LOG4CXX_LIBRARY}/liblog4cxx.so "
19622    
19623    
19624    
19625    
19626    #------------------------------------------------------------
19627    
19628    
19629    
19630  echo "$as_me:$LINENO: checking for ANSI C header files" >&5  echo "$as_me:$LINENO: checking for ANSI C header files" >&5
19631  echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6  echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
19632  if test "${ac_cv_header_stdc+set}" = set; then  if test "${ac_cv_header_stdc+set}" = set; then
# Line 19763  fi Line 19795  fi
19795    
19796    
19797    
19798                                                                                                                                                                                                ac_config_files="$ac_config_files Makefile Doxyfile event/Makefile event/mcmd/Makefile event/tmtc/Makefile event/log/Makefile event/arrDump/Makefile event/tabDump/Makefile event/varDump/Makefile event/physics/Makefile event/physics/tracker/Makefile event/physics/anticounter/Makefile event/physics/calorimeter/Makefile techmodel/Makefile techmodel/forroutines/Makefile techmodel/forroutines/tracker/Makefile techmodel/forroutines/tracker/readraw/Makefile techmodel/forroutines/anticounter/Makefile techmodel/physics/Makefile"                                                                                                                                                                                                                                                                                                    ac_config_files="$ac_config_files Makefile Doxyfile event/Makefile event/mcmd/Makefile event/tmtc/Makefile event/log/Makefile event/arrDump/Makefile event/tabDump/Makefile event/varDump/Makefile event/tsbt/Makefile event/tsbb/Makefile event/endrun/Makefile event/physics/Makefile event/physics/tracker/Makefile event/physics/anticounter/Makefile event/physics/calorimeter/Makefile event/physics/neutronDetector/Makefile event/physics/trigger/Makefile event/physics/tof/Makefile event/physics/S4/Makefile techmodel/Makefile techmodel/forroutines/tracker/Makefile techmodel/forroutines/tracker/readraw/Makefile techmodel/forroutines/anticounter/Makefile techmodel/forroutines/calorimeter/Makefile techmodel/forroutines/tof/Makefile techmodel/forroutines/trigger/Makefile techmodel/forroutines/Makefile techmodel/physics/Makefile"
19799  cat >confcache <<\_ACEOF  cat >confcache <<\_ACEOF
19800  # This file is a shell script that caches the results of configure  # This file is a shell script that caches the results of configure
19801  # tests run on this system so they can be shared between configure  # tests run on this system so they can be shared between configure
# Line 20329  do Line 20361  do
20361    "event/arrDump/Makefile" ) CONFIG_FILES="$CONFIG_FILES event/arrDump/Makefile" ;;    "event/arrDump/Makefile" ) CONFIG_FILES="$CONFIG_FILES event/arrDump/Makefile" ;;
20362    "event/tabDump/Makefile" ) CONFIG_FILES="$CONFIG_FILES event/tabDump/Makefile" ;;    "event/tabDump/Makefile" ) CONFIG_FILES="$CONFIG_FILES event/tabDump/Makefile" ;;
20363    "event/varDump/Makefile" ) CONFIG_FILES="$CONFIG_FILES event/varDump/Makefile" ;;    "event/varDump/Makefile" ) CONFIG_FILES="$CONFIG_FILES event/varDump/Makefile" ;;
20364      "event/tsbt/Makefile" ) CONFIG_FILES="$CONFIG_FILES event/tsbt/Makefile" ;;
20365      "event/tsbb/Makefile" ) CONFIG_FILES="$CONFIG_FILES event/tsbb/Makefile" ;;
20366      "event/endrun/Makefile" ) CONFIG_FILES="$CONFIG_FILES event/endrun/Makefile" ;;
20367    "event/physics/Makefile" ) CONFIG_FILES="$CONFIG_FILES event/physics/Makefile" ;;    "event/physics/Makefile" ) CONFIG_FILES="$CONFIG_FILES event/physics/Makefile" ;;
20368    "event/physics/tracker/Makefile" ) CONFIG_FILES="$CONFIG_FILES event/physics/tracker/Makefile" ;;    "event/physics/tracker/Makefile" ) CONFIG_FILES="$CONFIG_FILES event/physics/tracker/Makefile" ;;
20369    "event/physics/anticounter/Makefile" ) CONFIG_FILES="$CONFIG_FILES event/physics/anticounter/Makefile" ;;    "event/physics/anticounter/Makefile" ) CONFIG_FILES="$CONFIG_FILES event/physics/anticounter/Makefile" ;;
20370    "event/physics/calorimeter/Makefile" ) CONFIG_FILES="$CONFIG_FILES event/physics/calorimeter/Makefile" ;;    "event/physics/calorimeter/Makefile" ) CONFIG_FILES="$CONFIG_FILES event/physics/calorimeter/Makefile" ;;
20371      "event/physics/neutronDetector/Makefile" ) CONFIG_FILES="$CONFIG_FILES event/physics/neutronDetector/Makefile" ;;
20372      "event/physics/trigger/Makefile" ) CONFIG_FILES="$CONFIG_FILES event/physics/trigger/Makefile" ;;
20373      "event/physics/tof/Makefile" ) CONFIG_FILES="$CONFIG_FILES event/physics/tof/Makefile" ;;
20374      "event/physics/S4/Makefile" ) CONFIG_FILES="$CONFIG_FILES event/physics/S4/Makefile" ;;
20375    "techmodel/Makefile" ) CONFIG_FILES="$CONFIG_FILES techmodel/Makefile" ;;    "techmodel/Makefile" ) CONFIG_FILES="$CONFIG_FILES techmodel/Makefile" ;;
   "techmodel/forroutines/Makefile" ) CONFIG_FILES="$CONFIG_FILES techmodel/forroutines/Makefile" ;;  
20376    "techmodel/forroutines/tracker/Makefile" ) CONFIG_FILES="$CONFIG_FILES techmodel/forroutines/tracker/Makefile" ;;    "techmodel/forroutines/tracker/Makefile" ) CONFIG_FILES="$CONFIG_FILES techmodel/forroutines/tracker/Makefile" ;;
20377    "techmodel/forroutines/tracker/readraw/Makefile" ) CONFIG_FILES="$CONFIG_FILES techmodel/forroutines/tracker/readraw/Makefile" ;;    "techmodel/forroutines/tracker/readraw/Makefile" ) CONFIG_FILES="$CONFIG_FILES techmodel/forroutines/tracker/readraw/Makefile" ;;
20378    "techmodel/forroutines/anticounter/Makefile" ) CONFIG_FILES="$CONFIG_FILES techmodel/forroutines/anticounter/Makefile" ;;    "techmodel/forroutines/anticounter/Makefile" ) CONFIG_FILES="$CONFIG_FILES techmodel/forroutines/anticounter/Makefile" ;;
20379      "techmodel/forroutines/calorimeter/Makefile" ) CONFIG_FILES="$CONFIG_FILES techmodel/forroutines/calorimeter/Makefile" ;;
20380      "techmodel/forroutines/tof/Makefile" ) CONFIG_FILES="$CONFIG_FILES techmodel/forroutines/tof/Makefile" ;;
20381      "techmodel/forroutines/trigger/Makefile" ) CONFIG_FILES="$CONFIG_FILES techmodel/forroutines/trigger/Makefile" ;;
20382      "techmodel/forroutines/Makefile" ) CONFIG_FILES="$CONFIG_FILES techmodel/forroutines/Makefile" ;;
20383    "techmodel/physics/Makefile" ) CONFIG_FILES="$CONFIG_FILES techmodel/physics/Makefile" ;;    "techmodel/physics/Makefile" ) CONFIG_FILES="$CONFIG_FILES techmodel/physics/Makefile" ;;
20384    "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;    "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
20385    "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;    "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
# Line 20437  s,@AUTOCONF@,$AUTOCONF,;t t Line 20479  s,@AUTOCONF@,$AUTOCONF,;t t
20479  s,@AUTOMAKE@,$AUTOMAKE,;t t  s,@AUTOMAKE@,$AUTOMAKE,;t t
20480  s,@AUTOHEADER@,$AUTOHEADER,;t t  s,@AUTOHEADER@,$AUTOHEADER,;t t
20481  s,@MAKEINFO@,$MAKEINFO,;t t  s,@MAKEINFO@,$MAKEINFO,;t t
 s,@AMTAR@,$AMTAR,;t t  
20482  s,@install_sh@,$install_sh,;t t  s,@install_sh@,$install_sh,;t t
20483  s,@STRIP@,$STRIP,;t t  s,@STRIP@,$STRIP,;t t
20484  s,@ac_ct_STRIP@,$ac_ct_STRIP,;t t  s,@ac_ct_STRIP@,$ac_ct_STRIP,;t t
# Line 20446  s,@mkdir_p@,$mkdir_p,;t t Line 20487  s,@mkdir_p@,$mkdir_p,;t t
20487  s,@AWK@,$AWK,;t t  s,@AWK@,$AWK,;t t
20488  s,@SET_MAKE@,$SET_MAKE,;t t  s,@SET_MAKE@,$SET_MAKE,;t t
20489  s,@am__leading_dot@,$am__leading_dot,;t t  s,@am__leading_dot@,$am__leading_dot,;t t
20490    s,@AMTAR@,$AMTAR,;t t
20491    s,@am__tar@,$am__tar,;t t
20492    s,@am__untar@,$am__untar,;t t
20493  s,@build@,$build,;t t  s,@build@,$build,;t t
20494  s,@build_cpu@,$build_cpu,;t t  s,@build_cpu@,$build_cpu,;t t
20495  s,@build_vendor@,$build_vendor,;t t  s,@build_vendor@,$build_vendor,;t t
# Line 20494  s,@HAS_DOXYFILE@,$HAS_DOXYFILE,;t t Line 20538  s,@HAS_DOXYFILE@,$HAS_DOXYFILE,;t t
20538  s,@ROOT_INCLUDES@,$ROOT_INCLUDES,;t t  s,@ROOT_INCLUDES@,$ROOT_INCLUDES,;t t
20539  s,@ROOT_LDFLAGS@,$ROOT_LDFLAGS,;t t  s,@ROOT_LDFLAGS@,$ROOT_LDFLAGS,;t t
20540  s,@ROOTCINT@,$ROOTCINT,;t t  s,@ROOTCINT@,$ROOTCINT,;t t
20541    s,@LOG4CXX_INCLUDES@,$LOG4CXX_INCLUDES,;t t
20542    s,@LOG4CXX_LDFLAGS@,$LOG4CXX_LDFLAGS,;t t
20543    s,@LOG4CXX_LIBRARY@,$LOG4CXX_LIBRARY,;t t
20544  s,@LIBOBJS@,$LIBOBJS,;t t  s,@LIBOBJS@,$LIBOBJS,;t t
20545  s,@LTLIBOBJS@,$LTLIBOBJS,;t t  s,@LTLIBOBJS@,$LTLIBOBJS,;t t
20546  CEOF  CEOF
# Line 21118  echo X"$mf" | Line 21165  echo X"$mf" |
21165    else    else
21166      continue      continue
21167    fi    fi
21168    grep '^DEP_FILES *= *[^ #]' < "$mf" > /dev/null || continue    # Extract the definition of DEPDIR, am__include, and am__quote
21169    # Extract the definition of DEP_FILES from the Makefile without    # from the Makefile without running `make'.
   # running `make'.  
21170    DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`    DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
21171    test -z "$DEPDIR" && continue    test -z "$DEPDIR" && continue
21172      am__include=`sed -n 's/^am__include = //p' < "$mf"`
21173      test -z "am__include" && continue
21174      am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
21175    # When using ansi2knr, U may be empty or an underscore; expand it    # When using ansi2knr, U may be empty or an underscore; expand it
21176    U=`sed -n 's/^U = //p' < "$mf"`    U=`sed -n 's/^U = //p' < "$mf"`
21177    test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR"    # Find all dependency output files, they are included files with
21178    # We invoke sed twice because it is the simplest approach to    # $(DEPDIR) in their names.  We invoke sed twice because it is the
21179    # changing $(DEPDIR) to its actual value in the expansion.    # simplest approach to changing $(DEPDIR) to its actual value in the
21180    for file in `sed -n '    # expansion.
21181      /^DEP_FILES = .*\\\\$/ {    for file in `sed -n "
21182        s/^DEP_FILES = //      s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
       :loop  
         s/\\\\$//  
         p  
         n  
         /\\\\$/ b loop  
       p  
     }  
     /^DEP_FILES = / s/^DEP_FILES = //p' < "$mf" | \  
21183         sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do         sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
21184      # Make sure the directory exists.      # Make sure the directory exists.
21185      test -f "$dirpart/$file" && continue      test -f "$dirpart/$file" && continue

Legend:
Removed from v.1.3  
changed lines
  Added in v.5.0

  ViewVC Help
Powered by ViewVC 1.1.23