1m4trace:/usr/share/aclocal-1.11/amversion.m4:17: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.11' 2dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to 3dnl require some minimum version. Point them to the right macro. 4m4_if([$1], [1.11.6], [], 5 [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl 6]) 7m4trace:/usr/share/aclocal-1.11/amversion.m4:36: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.11.6])dnl 8m4_ifndef([AC_AUTOCONF_VERSION], 9 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl 10_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) 11m4trace:/usr/share/aclocal-1.11/auxdir.m4:49: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly. 12AC_PREREQ([2.50])dnl 13# expand $ac_aux_dir to an absolute path 14am_aux_dir=`cd $ac_aux_dir && pwd` 15]) 16m4trace:/usr/share/aclocal-1.11/cond.m4:15: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl 17 ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], 18 [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl 19AC_SUBST([$1_TRUE])dnl 20AC_SUBST([$1_FALSE])dnl 21_AM_SUBST_NOTMAKE([$1_TRUE])dnl 22_AM_SUBST_NOTMAKE([$1_FALSE])dnl 23m4_define([_AM_COND_VALUE_$1], [$2])dnl 24if $2; then 25 $1_TRUE= 26 $1_FALSE='#' 27else 28 $1_TRUE='#' 29 $1_FALSE= 30fi 31AC_CONFIG_COMMANDS_PRE( 32[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then 33 AC_MSG_ERROR([[conditional "$1" was never defined. 34Usually this means the macro was only invoked conditionally.]]) 35fi])]) 36m4trace:/usr/share/aclocal-1.11/depend.m4:28: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl 37AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl 38AC_REQUIRE([AM_MAKE_INCLUDE])dnl 39AC_REQUIRE([AM_DEP_TRACK])dnl 40 41ifelse([$1], CC, [depcc="$CC" am_compiler_list=], 42 [$1], CXX, [depcc="$CXX" am_compiler_list=], 43 [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], 44 [$1], UPC, [depcc="$UPC" am_compiler_list=], 45 [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], 46 [depcc="$$1" am_compiler_list=]) 47 48AC_CACHE_CHECK([dependency style of $depcc], 49 [am_cv_$1_dependencies_compiler_type], 50[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then 51 # We make a subdir and do the tests there. Otherwise we can end up 52 # making bogus files that we don't know about and never remove. For 53 # instance it was reported that on HP-UX the gcc test will end up 54 # making a dummy file named `D' -- because `-MD' means `put the output 55 # in D'. 56 rm -rf conftest.dir 57 mkdir conftest.dir 58 # Copy depcomp to subdir because otherwise we won't find it if we're 59 # using a relative directory. 60 cp "$am_depcomp" conftest.dir 61 cd conftest.dir 62 # We will build objects and dependencies in a subdirectory because 63 # it helps to detect inapplicable dependency modes. For instance 64 # both Tru64's cc and ICC support -MD to output dependencies as a 65 # side effect of compilation, but ICC will put the dependencies in 66 # the current directory while Tru64 will put them in the object 67 # directory. 68 mkdir sub 69 70 am_cv_$1_dependencies_compiler_type=none 71 if test "$am_compiler_list" = ""; then 72 am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` 73 fi 74 am__universal=false 75 m4_case([$1], [CC], 76 [case " $depcc " in #( 77 *\ -arch\ *\ -arch\ *) am__universal=true ;; 78 esac], 79 [CXX], 80 [case " $depcc " in #( 81 *\ -arch\ *\ -arch\ *) am__universal=true ;; 82 esac]) 83 84 for depmode in $am_compiler_list; do 85 # Setup a source with many dependencies, because some compilers 86 # like to wrap large dependency lists on column 80 (with \), and 87 # we should not choose a depcomp mode which is confused by this. 88 # 89 # We need to recreate these files for each test, as the compiler may 90 # overwrite some of them when testing with obscure command lines. 91 # This happens at least with the AIX C compiler. 92 : > sub/conftest.c 93 for i in 1 2 3 4 5 6; do 94 echo '#include "conftst'$i'.h"' >> sub/conftest.c 95 # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with 96 # Solaris 8's {/usr,}/bin/sh. 97 touch sub/conftst$i.h 98 done 99 echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf 100 101 # We check with `-c' and `-o' for the sake of the "dashmstdout" 102 # mode. It turns out that the SunPro C++ compiler does not properly 103 # handle `-M -o', and we need to detect this. Also, some Intel 104 # versions had trouble with output in subdirs 105 am__obj=sub/conftest.${OBJEXT-o} 106 am__minus_obj="-o $am__obj" 107 case $depmode in 108 gcc) 109 # This depmode causes a compiler race in universal mode. 110 test "$am__universal" = false || continue 111 ;; 112 nosideeffect) 113 # after this tag, mechanisms are not by side-effect, so they'll 114 # only be used when explicitly requested 115 if test "x$enable_dependency_tracking" = xyes; then 116 continue 117 else 118 break 119 fi 120 ;; 121 msvc7 | msvc7msys | msvisualcpp | msvcmsys) 122 # This compiler won't grok `-c -o', but also, the minuso test has 123 # not run yet. These depmodes are late enough in the game, and 124 # so weak that their functioning should not be impacted. 125 am__obj=conftest.${OBJEXT-o} 126 am__minus_obj= 127 ;; 128 none) break ;; 129 esac 130 if depmode=$depmode \ 131 source=sub/conftest.c object=$am__obj \ 132 depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ 133 $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ 134 >/dev/null 2>conftest.err && 135 grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && 136 grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && 137 grep $am__obj sub/conftest.Po > /dev/null 2>&1 && 138 ${MAKE-make} -s -f confmf > /dev/null 2>&1; then 139 # icc doesn't choke on unknown options, it will just issue warnings 140 # or remarks (even with -Werror). So we grep stderr for any message 141 # that says an option was ignored or not supported. 142 # When given -MP, icc 7.0 and 7.1 complain thusly: 143 # icc: Command line warning: ignoring option '-M'; no argument required 144 # The diagnosis changed in icc 8.0: 145 # icc: Command line remark: option '-MP' not supported 146 if (grep 'ignoring option' conftest.err || 147 grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else 148 am_cv_$1_dependencies_compiler_type=$depmode 149 break 150 fi 151 fi 152 done 153 154 cd .. 155 rm -rf conftest.dir 156else 157 am_cv_$1_dependencies_compiler_type=none 158fi 159]) 160AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) 161AM_CONDITIONAL([am__fastdep$1], [ 162 test "x$enable_dependency_tracking" != xno \ 163 && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) 164]) 165m4trace:/usr/share/aclocal-1.11/depend.m4:164: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl 166AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl 167]) 168m4trace:/usr/share/aclocal-1.11/depend.m4:172: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking, 169[ --disable-dependency-tracking speeds up one-time build 170 --enable-dependency-tracking do not reject slow dependency extractors]) 171if test "x$enable_dependency_tracking" != xno; then 172 am_depcomp="$ac_aux_dir/depcomp" 173 AMDEPBACKSLASH='\' 174 am__nodep='_no' 175fi 176AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) 177AC_SUBST([AMDEPBACKSLASH])dnl 178_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl 179AC_SUBST([am__nodep])dnl 180_AM_SUBST_NOTMAKE([am__nodep])dnl 181]) 182m4trace:/usr/share/aclocal-1.11/depout.m4:14: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ 183 # Autoconf 2.62 quotes --file arguments for eval, but not when files 184 # are listed without --file. Let's play safe and only enable the eval 185 # if we detect the quoting. 186 case $CONFIG_FILES in 187 *\'*) eval set x "$CONFIG_FILES" ;; 188 *) set x $CONFIG_FILES ;; 189 esac 190 shift 191 for mf 192 do 193 # Strip MF so we end up with the name of the file. 194 mf=`echo "$mf" | sed -e 's/:.*$//'` 195 # Check whether this is an Automake generated Makefile or not. 196 # We used to match only the files named `Makefile.in', but 197 # some people rename them; so instead we look at the file content. 198 # Grep'ing the first line is not enough: some people post-process 199 # each Makefile.in and add a new line on top of each file to say so. 200 # Grep'ing the whole file is not good either: AIX grep has a line 201 # limit of 2048, but all sed's we know have understand at least 4000. 202 if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then 203 dirpart=`AS_DIRNAME("$mf")` 204 else 205 continue 206 fi 207 # Extract the definition of DEPDIR, am__include, and am__quote 208 # from the Makefile without running `make'. 209 DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` 210 test -z "$DEPDIR" && continue 211 am__include=`sed -n 's/^am__include = //p' < "$mf"` 212 test -z "am__include" && continue 213 am__quote=`sed -n 's/^am__quote = //p' < "$mf"` 214 # When using ansi2knr, U may be empty or an underscore; expand it 215 U=`sed -n 's/^U = //p' < "$mf"` 216 # Find all dependency output files, they are included files with 217 # $(DEPDIR) in their names. We invoke sed twice because it is the 218 # simplest approach to changing $(DEPDIR) to its actual value in the 219 # expansion. 220 for file in `sed -n " 221 s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ 222 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do 223 # Make sure the directory exists. 224 test -f "$dirpart/$file" && continue 225 fdir=`AS_DIRNAME(["$file"])` 226 AS_MKDIR_P([$dirpart/$fdir]) 227 # echo "creating $dirpart/$file" 228 echo '# dummy' > "$dirpart/$file" 229 done 230 done 231} 232]) 233m4trace:/usr/share/aclocal-1.11/depout.m4:75: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], 234 [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], 235 [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) 236]) 237m4trace:/usr/share/aclocal-1.11/header.m4:12: -1- AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)]) 238m4trace:/usr/share/aclocal-1.11/header.m4:12: -1- AC_DEFUN([AM_CONFIG_HEADER], [AC_DIAGNOSE([obsolete], [The macro `AM_CONFIG_HEADER' is obsolete. 239You should run autoupdate.])dnl 240AC_CONFIG_HEADERS($@)]) 241m4trace:/usr/share/aclocal-1.11/init.m4:26: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.62])dnl 242dnl Autoconf wants to disallow AM_ names. We explicitly allow 243dnl the ones we care about. 244m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl 245AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl 246AC_REQUIRE([AC_PROG_INSTALL])dnl 247if test "`cd $srcdir && pwd`" != "`pwd`"; then 248 # Use -I$(srcdir) only when $(srcdir) != ., so that make's output 249 # is not polluted with repeated "-I." 250 AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl 251 # test to see if srcdir already configured 252 if test -f $srcdir/config.status; then 253 AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) 254 fi 255fi 256 257# test whether we have cygpath 258if test -z "$CYGPATH_W"; then 259 if (cygpath --version) >/dev/null 2>/dev/null; then 260 CYGPATH_W='cygpath -w' 261 else 262 CYGPATH_W=echo 263 fi 264fi 265AC_SUBST([CYGPATH_W]) 266 267# Define the identity of the package. 268dnl Distinguish between old-style and new-style calls. 269m4_ifval([$2], 270[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl 271 AC_SUBST([PACKAGE], [$1])dnl 272 AC_SUBST([VERSION], [$2])], 273[_AM_SET_OPTIONS([$1])dnl 274dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. 275m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, 276 [m4_fatal([AC_INIT should be called with package and version arguments])])dnl 277 AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl 278 AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl 279 280_AM_IF_OPTION([no-define],, 281[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) 282 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl 283 284# Some tools Automake needs. 285AC_REQUIRE([AM_SANITY_CHECK])dnl 286AC_REQUIRE([AC_ARG_PROGRAM])dnl 287AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) 288AM_MISSING_PROG(AUTOCONF, autoconf) 289AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) 290AM_MISSING_PROG(AUTOHEADER, autoheader) 291AM_MISSING_PROG(MAKEINFO, makeinfo) 292AC_REQUIRE([AM_PROG_INSTALL_SH])dnl 293AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl 294AC_REQUIRE([AM_PROG_MKDIR_P])dnl 295# We need awk for the "check" target. The system "awk" is bad on 296# some platforms. 297AC_REQUIRE([AC_PROG_AWK])dnl 298AC_REQUIRE([AC_PROG_MAKE_SET])dnl 299AC_REQUIRE([AM_SET_LEADING_DOT])dnl 300_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], 301 [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], 302 [_AM_PROG_TAR([v7])])]) 303_AM_IF_OPTION([no-dependencies],, 304[AC_PROVIDE_IFELSE([AC_PROG_CC], 305 [_AM_DEPENDENCIES(CC)], 306 [define([AC_PROG_CC], 307 defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl 308AC_PROVIDE_IFELSE([AC_PROG_CXX], 309 [_AM_DEPENDENCIES(CXX)], 310 [define([AC_PROG_CXX], 311 defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl 312AC_PROVIDE_IFELSE([AC_PROG_OBJC], 313 [_AM_DEPENDENCIES(OBJC)], 314 [define([AC_PROG_OBJC], 315 defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl 316]) 317_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl 318dnl The `parallel-tests' driver may need to know about EXEEXT, so add the 319dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro 320dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. 321AC_CONFIG_COMMANDS_PRE(dnl 322[m4_provide_if([_AM_COMPILER_EXEEXT], 323 [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl 324]) 325m4trace:/usr/share/aclocal-1.11/init.m4:126: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. 326_am_arg=$1 327_am_stamp_count=1 328for _am_header in $config_headers :; do 329 case $_am_header in 330 $_am_arg | $_am_arg:* ) 331 break ;; 332 * ) 333 _am_stamp_count=`expr $_am_stamp_count + 1` ;; 334 esac 335done 336echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) 337m4trace:/usr/share/aclocal-1.11/install-sh.m4:14: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl 338if test x"${install_sh}" != xset; then 339 case $am_aux_dir in 340 *\ * | *\ *) 341 install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; 342 *) 343 install_sh="\${SHELL} $am_aux_dir/install-sh" 344 esac 345fi 346AC_SUBST(install_sh)]) 347m4trace:/usr/share/aclocal-1.11/lead-dot.m4:12: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null 348mkdir .tst 2>/dev/null 349if test -d .tst; then 350 am__leading_dot=. 351else 352 am__leading_dot=_ 353fi 354rmdir .tst 2>/dev/null 355AC_SUBST([am__leading_dot])]) 356m4trace:/usr/share/aclocal-1.11/make.m4:14: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} 357cat > confinc << 'END' 358am__doit: 359 @echo this is the am__doit target 360.PHONY: am__doit 361END 362# If we don't find an include directive, just comment out the code. 363AC_MSG_CHECKING([for style of include used by $am_make]) 364am__include="#" 365am__quote= 366_am_result=none 367# First try GNU make style include. 368echo "include confinc" > confmf 369# Ignore all kinds of additional output from `make'. 370case `$am_make -s -f confmf 2> /dev/null` in #( 371*the\ am__doit\ target*) 372 am__include=include 373 am__quote= 374 _am_result=GNU 375 ;; 376esac 377# Now try BSD make style include. 378if test "$am__include" = "#"; then 379 echo '.include "confinc"' > confmf 380 case `$am_make -s -f confmf 2> /dev/null` in #( 381 *the\ am__doit\ target*) 382 am__include=.include 383 am__quote="\"" 384 _am_result=BSD 385 ;; 386 esac 387fi 388AC_SUBST([am__include]) 389AC_SUBST([am__quote]) 390AC_MSG_RESULT([$_am_result]) 391rm -f confinc confmf 392]) 393m4trace:/usr/share/aclocal-1.11/minuso.m4:14: -1- AC_DEFUN([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC_C_O])dnl 394AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl 395AC_REQUIRE_AUX_FILE([compile])dnl 396# FIXME: we rely on the cache variable name because 397# there is no other way. 398set dummy $CC 399am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']` 400eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o 401if test "$am_t" != yes; then 402 # Losing compiler, so override with the script. 403 # FIXME: It is wrong to rewrite CC. 404 # But if we don't then we get into trouble of one sort or another. 405 # A longer-term fix would be to have automake use am__CC in this case, 406 # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" 407 CC="$am_aux_dir/compile $CC" 408fi 409dnl Make sure AC_PROG_CC is never called again, or it will override our 410dnl setting of CC. 411m4_define([AC_PROG_CC], 412 [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])]) 413]) 414m4trace:/usr/share/aclocal-1.11/missing.m4:14: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) 415$1=${$1-"${am_missing_run}$2"} 416AC_SUBST($1)]) 417m4trace:/usr/share/aclocal-1.11/missing.m4:24: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl 418AC_REQUIRE_AUX_FILE([missing])dnl 419if test x"${MISSING+set}" != xset; then 420 case $am_aux_dir in 421 *\ * | *\ *) 422 MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; 423 *) 424 MISSING="\${SHELL} $am_aux_dir/missing" ;; 425 esac 426fi 427# Use eval to expand $SHELL 428if eval "$MISSING --run true"; then 429 am_missing_run="$MISSING --run " 430else 431 am_missing_run= 432 AC_MSG_WARN([`missing' script is too old or missing]) 433fi 434]) 435m4trace:/usr/share/aclocal-1.11/mkdirp.m4:14: -1- AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl 436AC_REQUIRE([AC_PROG_MKDIR_P])dnl 437dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, 438dnl while keeping a definition of mkdir_p for backward compatibility. 439dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. 440dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of 441dnl Makefile.ins that do not define MKDIR_P, so we do our own 442dnl adjustment using top_builddir (which is defined more often than 443dnl MKDIR_P). 444AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl 445case $mkdir_p in 446 [[\\/$]]* | ?:[[\\/]]*) ;; 447 */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; 448esac 449]) 450m4trace:/usr/share/aclocal-1.11/options.m4:14: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) 451m4trace:/usr/share/aclocal-1.11/options.m4:20: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)]) 452m4trace:/usr/share/aclocal-1.11/options.m4:26: -1- AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) 453m4trace:/usr/share/aclocal-1.11/options.m4:32: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) 454m4trace:/usr/share/aclocal-1.11/runlog.m4:14: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD 455 ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD 456 ac_status=$? 457 echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD 458 (exit $ac_status); }]) 459m4trace:/usr/share/aclocal-1.11/sanity.m4:14: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) 460# Just in case 461sleep 1 462echo timestamp > conftest.file 463# Reject unsafe characters in $srcdir or the absolute working directory 464# name. Accept space and tab only in the latter. 465am_lf=' 466' 467case `pwd` in 468 *[[\\\"\#\$\&\'\`$am_lf]]*) 469 AC_MSG_ERROR([unsafe absolute working directory name]);; 470esac 471case $srcdir in 472 *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) 473 AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; 474esac 475 476# Do `set' in a subshell so we don't clobber the current shell's 477# arguments. Must try -L first in case configure is actually a 478# symlink; some systems play weird games with the mod time of symlinks 479# (eg FreeBSD returns the mod time of the symlink's containing 480# directory). 481if ( 482 set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` 483 if test "$[*]" = "X"; then 484 # -L didn't work. 485 set X `ls -t "$srcdir/configure" conftest.file` 486 fi 487 rm -f conftest.file 488 if test "$[*]" != "X $srcdir/configure conftest.file" \ 489 && test "$[*]" != "X conftest.file $srcdir/configure"; then 490 491 # If neither matched, then we have a broken ls. This can happen 492 # if, for instance, CONFIG_SHELL is bash and it inherits a 493 # broken ls alias from the environment. This has actually 494 # happened. Such a system could not be considered "sane". 495 AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken 496alias in your environment]) 497 fi 498 499 test "$[2]" = conftest.file 500 ) 501then 502 # Ok. 503 : 504else 505 AC_MSG_ERROR([newly created file is older than distributed files! 506Check your system clock]) 507fi 508AC_MSG_RESULT(yes)]) 509m4trace:/usr/share/aclocal-1.11/silent.m4:14: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], 510[ --enable-silent-rules less verbose build output (undo: `make V=1') 511 --disable-silent-rules verbose build output (undo: `make V=0')]) 512case $enable_silent_rules in 513yes) AM_DEFAULT_VERBOSITY=0;; 514no) AM_DEFAULT_VERBOSITY=1;; 515*) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; 516esac 517dnl 518dnl A few `make' implementations (e.g., NonStop OS and NextStep) 519dnl do not support nested variable expansions. 520dnl See automake bug#9928 and bug#10237. 521am_make=${MAKE-make} 522AC_CACHE_CHECK([whether $am_make supports nested variables], 523 [am_cv_make_support_nested_variables], 524 [if AS_ECHO([['TRUE=$(BAR$(V)) 525BAR0=false 526BAR1=true 527V=1 528am__doit: 529 @$(TRUE) 530.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then 531 am_cv_make_support_nested_variables=yes 532else 533 am_cv_make_support_nested_variables=no 534fi]) 535if test $am_cv_make_support_nested_variables = yes; then 536 dnl Using `$V' instead of `$(V)' breaks IRIX make. 537 AM_V='$(V)' 538 AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' 539else 540 AM_V=$AM_DEFAULT_VERBOSITY 541 AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY 542fi 543AC_SUBST([AM_V])dnl 544AM_SUBST_NOTMAKE([AM_V])dnl 545AC_SUBST([AM_DEFAULT_V])dnl 546AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl 547AC_SUBST([AM_DEFAULT_VERBOSITY])dnl 548AM_BACKSLASH='\' 549AC_SUBST([AM_BACKSLASH])dnl 550_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl 551]) 552m4trace:/usr/share/aclocal-1.11/strip.m4:19: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl 553# Installed binaries are usually stripped using `strip' when the user 554# run `make install-strip'. However `strip' might not be the right 555# tool to use in cross-compilation environments, therefore Automake 556# will honor the `STRIP' environment variable to overrule this program. 557dnl Don't test for $cross_compiling = yes, because it might be `maybe'. 558if test "$cross_compiling" != no; then 559 AC_CHECK_TOOL([STRIP], [strip], :) 560fi 561INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" 562AC_SUBST([INSTALL_STRIP_PROGRAM])]) 563m4trace:/usr/share/aclocal-1.11/substnot.m4:14: -1- AC_DEFUN([_AM_SUBST_NOTMAKE]) 564m4trace:/usr/share/aclocal-1.11/substnot.m4:19: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) 565m4trace:/usr/share/aclocal-1.11/tar.m4:24: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used 566# in the wild :-( We should find a proper way to deprecate it ... 567AC_SUBST([AMTAR], ['$${TAR-tar}']) 568m4_if([$1], [v7], 569 [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], 570 [m4_case([$1], [ustar],, [pax],, 571 [m4_fatal([Unknown tar format])]) 572AC_MSG_CHECKING([how to create a $1 tar archive]) 573# Loop over all known methods to create a tar archive until one works. 574_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' 575_am_tools=${am_cv_prog_tar_$1-$_am_tools} 576# Do not fold the above two line into one, because Tru64 sh and 577# Solaris sh will not grok spaces in the rhs of `-'. 578for _am_tool in $_am_tools 579do 580 case $_am_tool in 581 gnutar) 582 for _am_tar in tar gnutar gtar; 583 do 584 AM_RUN_LOG([$_am_tar --version]) && break 585 done 586 am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' 587 am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' 588 am__untar="$_am_tar -xf -" 589 ;; 590 plaintar) 591 # Must skip GNU tar: if it does not support --format= it doesn't create 592 # ustar tarball either. 593 (tar --version) >/dev/null 2>&1 && continue 594 am__tar='tar chf - "$$tardir"' 595 am__tar_='tar chf - "$tardir"' 596 am__untar='tar xf -' 597 ;; 598 pax) 599 am__tar='pax -L -x $1 -w "$$tardir"' 600 am__tar_='pax -L -x $1 -w "$tardir"' 601 am__untar='pax -r' 602 ;; 603 cpio) 604 am__tar='find "$$tardir" -print | cpio -o -H $1 -L' 605 am__tar_='find "$tardir" -print | cpio -o -H $1 -L' 606 am__untar='cpio -i -H $1 -d' 607 ;; 608 none) 609 am__tar=false 610 am__tar_=false 611 am__untar=false 612 ;; 613 esac 614 615 # If the value was cached, stop now. We just wanted to have am__tar 616 # and am__untar set. 617 test -n "${am_cv_prog_tar_$1}" && break 618 619 # tar/untar a dummy directory, and stop if the command works 620 rm -rf conftest.dir 621 mkdir conftest.dir 622 echo GrepMe > conftest.dir/file 623 AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) 624 rm -rf conftest.dir 625 if test -s conftest.tar; then 626 AM_RUN_LOG([$am__untar <conftest.tar]) 627 grep GrepMe conftest.dir/file >/dev/null 2>&1 && break 628 fi 629done 630rm -rf conftest.dir 631 632AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) 633AC_MSG_RESULT([$am_cv_prog_tar_$1])]) 634AC_SUBST([am__tar]) 635AC_SUBST([am__untar]) 636]) 637m4trace:acinclude.m4:2: -1- AC_DEFUN([AC_TYPE_SOCKLEN_T], [AC_CACHE_CHECK([for socklen_t], ac_cv_type_socklen_t, 638[ 639 AC_TRY_COMPILE( 640 [#include <sys/types.h> 641 #include <sys/socket.h>], 642 [socklen_t len = 42; return 0;], 643 ac_cv_type_socklen_t=yes, 644 ac_cv_type_socklen_t=no) 645]) 646 if test $ac_cv_type_socklen_t != yes; then 647 AC_DEFINE(socklen_t, int) 648 fi 649]) 650m4trace:acinclude.m4:20: -1- AC_DEFUN([AC_COMPILE_CHECK_SIZEOF], [changequote(<<, >>)dnl 651dnl The name to #define. 652define(<<AC_TYPE_NAME>>, translit(sizeof_$1, [a-z *], [A-Z_P]))dnl 653dnl The cache variable name. 654define(<<AC_CV_NAME>>, translit(ac_cv_sizeof_$1, [ *], [_p]))dnl 655changequote([, ])dnl 656AC_MSG_CHECKING(size of $1) 657AC_CACHE_VAL(AC_CV_NAME, 658[for ac_size in 4 8 1 2 16 $2 ; do # List sizes in rough order of prevalence. 659 AC_TRY_COMPILE([#include "confdefs.h" 660#include <sys/types.h> 661$2 662], [switch (0) case 0: case (sizeof ($1) == $ac_size):;], AC_CV_NAME=$ac_size) 663 if test x$AC_CV_NAME != x ; then break; fi 664done 665]) 666if test x$AC_CV_NAME = x ; then 667 AC_MSG_ERROR([cannot determine a size for $1]) 668fi 669AC_MSG_RESULT($AC_CV_NAME) 670AC_DEFINE_UNQUOTED(AC_TYPE_NAME, $AC_CV_NAME, [The number of bytes in type $1]) 671undefine([AC_TYPE_NAME])dnl 672undefine([AC_CV_NAME])dnl 673]) 674m4trace:acinclude.m4:49: -1- AC_DEFUN([AC_CREATE_STDINT_H], [# ------ AC CREATE STDINT H ------------------------------------- 675AC_MSG_CHECKING([for stdint-types....]) 676ac_stdint_h=`echo ifelse($1, , _stdint.h, $1)` 677if test "$ac_stdint_h" = "stdint.h" ; then 678 AC_MSG_RESULT("(are you sure you want them in ./stdint.h?)") 679elif test "$ac_stdint_h" = "inttypes.h" ; then 680 AC_MSG_RESULT("(are you sure you want them in ./inttypes.h?)") 681else 682 AC_MSG_RESULT("(putting them into $ac_stdint_h)") 683fi 684 685inttype_headers=`echo inttypes.h sys/inttypes.h sys/inttypes.h $2 \ 686| sed -e 's/,/ /g'` 687 688 ac_cv_header_stdint_x="no-file" 689 ac_cv_header_stdint_o="no-file" 690 ac_cv_header_stdint_u="no-file" 691 for i in stdint.h $inttype_headers ; do 692 unset ac_cv_type_uintptr_t 693 unset ac_cv_type_uint64_t 694 _AC_CHECK_TYPE_NEW(uintptr_t,[ac_cv_header_stdint_x=$i],dnl 695 continue,[#include <$i>]) 696 AC_CHECK_TYPE(uint64_t,[and64="(uint64_t too)"],[and64=""],[#include<$i>]) 697 AC_MSG_RESULT(... seen our uintptr_t in $i $and64) 698 break; 699 done 700 if test "$ac_cv_header_stdint_x" = "no-file" ; then 701 for i in stdint.h $inttype_headers ; do 702 unset ac_cv_type_uint32_t 703 unset ac_cv_type_uint64_t 704 AC_CHECK_TYPE(uint32_t,[ac_cv_header_stdint_o=$i],dnl 705 continue,[#include <$i>]) 706 AC_CHECK_TYPE(uint64_t,[and64="(uint64_t too)"],[and64=""],[#include<$i>]) 707 AC_MSG_RESULT(... seen our uint32_t in $i $and64) 708 break; 709 done 710 if test "$ac_cv_header_stdint_o" = "no-file" ; then 711 for i in sys/types.h $inttype_headers ; do 712 unset ac_cv_type_u_int32_t 713 unset ac_cv_type_u_int64_t 714 AC_CHECK_TYPE(u_int32_t,[ac_cv_header_stdint_u=$i],dnl 715 continue,[#include <$i>]) 716 AC_CHECK_TYPE(uint64_t,[and64="(u_int64_t too)"],[and64=""],[#include<$i>]) 717 AC_MSG_RESULT(... seen our u_int32_t in $i $and64) 718 break; 719 done 720 fi 721 fi 722 723# ----------------- DONE inttypes.h checks MAYBE C basic types -------- 724 725if test "$ac_cv_header_stdint_x" = "no-file" ; then 726 AC_COMPILE_CHECK_SIZEOF(char) 727 AC_COMPILE_CHECK_SIZEOF(short) 728 AC_COMPILE_CHECK_SIZEOF(int) 729 AC_COMPILE_CHECK_SIZEOF(long) 730 AC_COMPILE_CHECK_SIZEOF(void*) 731 ac_cv_header_stdint_test="yes" 732else 733 ac_cv_header_stdint_test="no" 734fi 735 736# ----------------- DONE inttypes.h checks START header ------------- 737_ac_stdint_h=AS_TR_CPP(_$ac_stdint_h) 738AC_MSG_RESULT(creating $ac_stdint_h : $_ac_stdint_h) 739echo "#ifndef" $_ac_stdint_h >$ac_stdint_h 740echo "#define" $_ac_stdint_h "1" >>$ac_stdint_h 741echo "#ifndef" _GENERATED_STDINT_H >>$ac_stdint_h 742echo "#define" _GENERATED_STDINT_H '"'$PACKAGE $VERSION'"' >>$ac_stdint_h 743if test "$GCC" = "yes" ; then 744 echo "/* generated using a gnu compiler version" `$CC --version` "*/" \ 745 >>$ac_stdint_h 746else 747 echo "/* generated using $CC */" >>$ac_stdint_h 748fi 749echo "" >>$ac_stdint_h 750 751if test "$ac_cv_header_stdint_x" != "no-file" ; then 752 ac_cv_header_stdint="$ac_cv_header_stdint_x" 753elif test "$ac_cv_header_stdint_o" != "no-file" ; then 754 ac_cv_header_stdint="$ac_cv_header_stdint_o" 755elif test "$ac_cv_header_stdint_u" != "no-file" ; then 756 ac_cv_header_stdint="$ac_cv_header_stdint_u" 757else 758 ac_cv_header_stdint="stddef.h" 759fi 760 761# ----------------- See if int_least and int_fast types are present 762unset ac_cv_type_int_least32_t 763unset ac_cv_type_int_fast32_t 764AC_CHECK_TYPE(int_least32_t,,,[#include <$ac_cv_header_stdint>]) 765AC_CHECK_TYPE(int_fast32_t,,,[#include<$ac_cv_header_stdint>]) 766 767if test "$ac_cv_header_stdint" != "stddef.h" ; then 768if test "$ac_cv_header_stdint" != "stdint.h" ; then 769AC_MSG_RESULT(..adding include stddef.h) 770 echo "#include <stddef.h>" >>$ac_stdint_h 771fi ; fi 772AC_MSG_RESULT(..adding include $ac_cv_header_stdint) 773 echo "#include <$ac_cv_header_stdint>" >>$ac_stdint_h 774echo "" >>$ac_stdint_h 775 776# ----------------- DONE header START basic int types ------------- 777if test "$ac_cv_header_stdint_x" = "no-file" ; then 778 AC_MSG_RESULT(... need to look at C basic types) 779dnl ac_cv_header_stdint_test="yes" # moved up before creating the file 780else 781 AC_MSG_RESULT(... seen good stdint.h inttypes) 782dnl ac_cv_header_stdint_test="no" # moved up before creating the file 783fi 784 785if test "$ac_cv_header_stdint_u" != "no-file" ; then 786 AC_MSG_RESULT(... seen bsd/sysv typedefs) 787 cat >>$ac_stdint_h <<EOF 788 789/* int8_t int16_t int32_t defined by inet code, redeclare the u_intXX types */ 790typedef u_int8_t uint8_t; 791typedef u_int16_t uint16_t; 792typedef u_int32_t uint32_t; 793EOF 794 cat >>$ac_stdint_h <<EOF 795 796/* glibc compatibility */ 797#ifndef __int8_t_defined 798#define __int8_t_defined 799#endif 800EOF 801fi 802 803ac_cv_sizeof_x="$ac_cv_sizeof_char:$ac_cv_sizeof_short" 804ac_cv_sizeof_X="$ac_cv_sizeof_x:$ac_cv_sizeof_int" 805ac_cv_sizeof_X="$ac_cv_sizeof_X:$ac_cv_sizeof_voidp:$ac_cv_sizeof_long" 806if test "$ac_cv_header_stdint" = "stddef.h" ; then 807# we must guess all the basic types. Apart from byte-adressable system, 808# there a few 32-bit-only dsp-systems. nibble-addressable systems are way off. 809 cat >>$ac_stdint_h <<EOF 810/* ------------ BITSPECIFIC INTTYPES SECTION --------------- */ 811EOF 812 t="typedefs for a" 813 case "$ac_cv_sizeof_X" in 814 1:2:2:2:4) AC_MSG_RESULT(..adding $t normal 16-bit system) 815 cat >>$ac_stdint_h <<EOF 816/* a normal 16-bit system */ 817typedef unsigned char uint8_t; 818typedef unsigned short uint16_t; 819typedef unsigned long uint32_t; 820#ifndef __int8_t_defined 821#define __int8_t_defined 822typedef char int8_t; 823typedef short int16_t; 824typedef long int32_t; 825#endif 826EOF 827;; 828 1:2:2:4:4) AC_MSG_RESULT(..adding $t 32-bit system derived from a 16-bit) 829 cat >>$ac_stdint_h <<EOF 830/* a 32-bit system derived from a 16-bit */ 831typedef unsigned char uint8_t; 832typedef unsigned short uint16_t; 833typedef unsigned int uint32_t; 834#ifndef __int8_t_defined 835#define __int8_t_defined 836typedef char int8_t; 837typedef short int16_t; 838typedef int int32_t; 839#endif 840EOF 841;; 842 1:2:4:4:4) AC_MSG_RESULT(..adding $t normal 32-bit system) 843 cat >>$ac_stdint_h <<EOF 844/* a normal 32-bit system */ 845typedef unsigned char uint8_t; 846typedef unsigned short uint16_t; 847typedef unsigned int uint32_t; 848#ifndef __int8_t_defined 849#define __int8_t_defined 850typedef char int8_t; 851typedef short int16_t; 852typedef int int32_t; 853#endif 854EOF 855;; 856 1:2:4:4:8) AC_MSG_RESULT(..adding $t 32-bit system prepared for 64-bit) 857 cat >>$ac_stdint_h <<EOF 858 859/* a 32-bit system prepared for 64-bit */ 860typedef unsigned char uint8_t; 861typedef unsigned short uint16_t; 862typedef unsigned int uint32_t; 863#ifndef __int8_t_defined 864#define __int8_t_defined 865typedef char int8_t; 866typedef short int16_t; 867typedef int int32_t; 868#endif 869EOF 870;; 871 1:2:4:8:8) AC_MSG_RESULT(..adding $t normal 64-bit system) 872 cat >>$ac_stdint_h <<EOF 873 874/* a normal 64-bit system */ 875typedef unsigned char uint8_t; 876typedef unsigned short uint16_t; 877typedef unsigned int uint32_t; 878#ifndef __int8_t_defined 879#define __int8_t_defined 880typedef char int8_t; 881typedef short int16_t; 882typedef int int32_t; 883#endif 884EOF 885;; 886 1:2:4:8:4) AC_MSG_RESULT(..adding $t 64-bit system derived from a 32-bit) 887 cat >>$ac_stdint_h <<EOF 888 889/* a 64-bit system derived from a 32-bit system */ 890typedef unsigned char uint8_t; 891typedef unsigned short uint16_t; 892typedef unsigned int uint32_t; 893#ifndef __int8_t_defined 894#define __int8_t_defined 895typedef char int8_t; 896typedef short int16_t; 897typedef int int32_t; 898#endif 899EOF 900;; 901 *) 902 AC_MSG_ERROR([ $ac_cv_sizeof_X dnl 903 what is that a system? contact the author, quick! http://ac-archive.sf.net]) 904 exit 1 905;; 906 esac 907fi 908 909# ------------- DONE basic int types START int64_t types ------------ 910if test "$ac_cv_type_uint64_t" = "yes" 911then AC_MSG_RESULT(... seen good uint64_t) 912 cat >>$ac_stdint_h <<EOF 913 914/* system headers have good uint64_t */ 915#ifndef _HAVE_UINT64_T 916#define _HAVE_UINT64_T 917#endif 918EOF 919 920elif test "$ac_cv_type_u_int64_t" = "yes" 921then AC_MSG_RESULT(..adding typedef u_int64_t uint64_t) 922 cat >>$ac_stdint_h <<EOF 923 924/* system headers have an u_int64_t */ 925#ifndef _HAVE_UINT64_T 926#define _HAVE_UINT64_T 927typedef u_int64_t uint64_t; 928#endif 929EOF 930else AC_MSG_RESULT(..adding generic uint64_t runtime checks) 931 cat >>$ac_stdint_h <<EOF 932 933/* -------------------- 64 BIT GENERIC SECTION -------------------- */ 934/* here are some common heuristics using compiler runtime specifics */ 935#if defined __STDC_VERSION__ && defined __STDC_VERSION__ > 199901L 936 937#ifndef _HAVE_UINT64_T 938#define _HAVE_UINT64_T 939typedef long long int64_t; 940typedef unsigned long long uint64_t; 941#endif 942 943#elif !defined __STRICT_ANSI__ 944#if defined _MSC_VER || defined __WATCOMC__ || defined __BORLANDC__ 945 946#ifndef _HAVE_UINT64_T 947#define _HAVE_UINT64_T 948typedef __int64 int64_t; 949typedef unsigned __int64 uint64_t; 950#endif 951 952#elif defined __GNUC__ || defined __MWERKS__ || defined __ELF__ 953dnl /* note: all ELF-systems seem to have loff-support which needs 64-bit */ 954 955#if !defined _NO_LONGLONG 956#ifndef _HAVE_UINT64_T 957#define _HAVE_UINT64_T 958typedef long long int64_t; 959typedef unsigned long long uint64_t; 960#endif 961#endif 962 963#elif defined __alpha || (defined __mips && defined _ABIN32) 964 965#if !defined _NO_LONGLONG 966#ifndef _HAVE_UINT64_T 967#define _HAVE_UINT64_T 968typedef long int64_t; 969typedef unsigned long uint64_t; 970#endif 971#endif 972 /* compiler/cpu type ... or just ISO C99 */ 973#endif 974#endif 975EOF 976 977# plus a default 64-bit for systems that are likely to be 64-bit ready 978 case "$ac_cv_sizeof_x:$ac_cv_sizeof_voidp:$ac_cv_sizeof_long" in 979 1:2:8:8) AC_MSG_RESULT(..adding uint64_t default, normal 64-bit system) 980cat >>$ac_stdint_h <<EOF 981/* DEFAULT: */ 982/* seen normal 64-bit system, CC has sizeof(long and void*) == 8 bytes */ 983#ifndef _HAVE_UINT64_T 984#define _HAVE_UINT64_T 985typedef long int64_t; 986typedef unsigned long uint64_t; 987#endif 988EOF 989;; 990 1:2:4:8) AC_MSG_RESULT(..adding uint64_t default, typedef to long) 991cat >>$ac_stdint_h <<EOF 992/* DEFAULT: */ 993/* seen 32-bit system prepared for 64-bit, CC has sizeof(long) == 8 bytes */ 994#ifndef _HAVE_UINT64_T 995#define _HAVE_UINT64_T 996typedef long int64_t; 997typedef unsigned long uint64_t; 998#endif 999EOF 1000;; 1001 1:2:8:4) AC_MSG_RESULT(..adding uint64_t default, typedef long long) 1002cat >>$ac_stdint_h <<EOF 1003/* DEFAULT: */ 1004/* seen 64-bit derived from a 32-bit, CC has sizeof(long) == 4 bytes */ 1005#ifndef _HAVE_UINT64_T 1006#define _HAVE_UINT64_T 1007typedef long long int64_t; 1008typedef unsigned long long uint64_t; 1009#endif 1010EOF 1011;; 1012 *) 1013cat >>$ac_stdint_h <<EOF 1014/* NOTE: */ 1015/* the configure-checks for the basic types did not make us believe */ 1016/* that we could add a fallback to a 'long long' typedef to int64_t */ 1017EOF 1018 esac 1019fi 1020 1021# ------------- DONE int64_t types START intptr types ------------ 1022if test "$ac_cv_header_stdint_x" = "no-file" ; then 1023 cat >>$ac_stdint_h <<EOF 1024 1025/* -------------------------- INPTR SECTION --------------------------- */ 1026EOF 1027 case "$ac_cv_sizeof_x:$ac_cv_sizeof_voidp" in 1028 1:2:2) 1029 a="int16_t" ; cat >>$ac_stdint_h <<EOF 1030/* we tested sizeof(void*) to be of 2 chars, hence we declare it 16-bit */ 1031 1032typedef uint16_t uintptr_t; 1033typedef int16_t intptr_t; 1034EOF 1035;; 1036 1:2:4) 1037 a="int32_t" ; cat >>$ac_stdint_h <<EOF 1038/* we tested sizeof(void*) to be of 4 chars, hence we declare it 32-bit */ 1039 1040typedef uint32_t uintptr_t; 1041typedef int32_t intptr_t; 1042EOF 1043;; 1044 1:2:8) 1045 a="int64_t" ; cat >>$ac_stdint_h <<EOF 1046/* we tested sizeof(void*) to be of 8 chars, hence we declare it 64-bit */ 1047 1048typedef uint64_t uintptr_t; 1049typedef int64_t intptr_t; 1050EOF 1051;; 1052 *) 1053 a="long" ; cat >>$ac_stdint_h <<EOF 1054/* we tested sizeof(void*) but got no guess, hence we declare it as if long */ 1055 1056typedef unsigned long uintptr_t; 1057typedef long intptr_t; 1058EOF 1059;; 1060 esac 1061AC_MSG_RESULT(..adding typedef $a intptr_t) 1062fi 1063 1064# ------------- DONE intptr types START int_least types ------------ 1065if test "$ac_cv_type_int_least32_t" = "no"; then 1066AC_MSG_RESULT(..adding generic int_least-types) 1067 cat >>$ac_stdint_h <<EOF 1068 1069/* --------------GENERIC INT_LEAST ------------------ */ 1070 1071typedef int8_t int_least8_t; 1072typedef int16_t int_least16_t; 1073typedef int32_t int_least32_t; 1074#ifdef _HAVE_INT64_T 1075typedef int64_t int_least64_t; 1076#endif 1077 1078typedef uint8_t uint_least8_t; 1079typedef uint16_t uint_least16_t; 1080typedef uint32_t uint_least32_t; 1081#ifdef _HAVE_INT64_T 1082typedef uint64_t uint_least64_t; 1083#endif 1084EOF 1085fi 1086 1087# ------------- DONE intptr types START int_least types ------------ 1088if test "$ac_cv_type_int_fast32_t" = "no"; then 1089AC_MSG_RESULT(..adding generic int_fast-types) 1090 cat >>$ac_stdint_h <<EOF 1091 1092/* --------------GENERIC INT_FAST ------------------ */ 1093 1094typedef int8_t int_fast8_t; 1095typedef int32_t int_fast16_t; 1096typedef int32_t int_fast32_t; 1097#ifdef _HAVE_INT64_T 1098typedef int64_t int_fast64_t; 1099#endif 1100 1101typedef uint8_t uint_fast8_t; 1102typedef uint32_t uint_fast16_t; 1103typedef uint32_t uint_fast32_t; 1104#ifdef _HAVE_INT64_T 1105typedef uint64_t uint_fast64_t; 1106#endif 1107EOF 1108fi 1109 1110if test "$ac_cv_header_stdint_x" = "no-file" ; then 1111 cat >>$ac_stdint_h <<EOF 1112 1113#ifdef _HAVE_INT64_T 1114typedef int64_t intmax_t; 1115typedef uint64_t uintmax_t; 1116#else 1117typedef long int intmax_t; 1118typedef unsigned long uintmax_t; 1119#endif 1120EOF 1121fi 1122 1123AC_MSG_RESULT(... DONE $ac_stdint_h) 1124 cat >>$ac_stdint_h <<EOF 1125 1126 /* once */ 1127#endif 1128#endif 1129EOF 1130]) 1131m4trace:acinclude.m4:518: -1- AC_DEFUN([AX_PREFIX_CONFIG_H], [AC_REQUIRE([AC_CONFIG_HEADER]) 1132AC_CONFIG_COMMANDS([ifelse($1,,$PACKAGE-config.h,$1)],[dnl 1133AS_VAR_PUSHDEF([_OUT],[ac_prefix_conf_OUT])dnl 1134AS_VAR_PUSHDEF([_DEF],[ac_prefix_conf_DEF])dnl 1135AS_VAR_PUSHDEF([_PKG],[ac_prefix_conf_PKG])dnl 1136AS_VAR_PUSHDEF([_LOW],[ac_prefix_conf_LOW])dnl 1137AS_VAR_PUSHDEF([_UPP],[ac_prefix_conf_UPP])dnl 1138AS_VAR_PUSHDEF([_INP],[ac_prefix_conf_INP])dnl 1139m4_pushdef([_script],[conftest.prefix])dnl 1140m4_pushdef([_symbol],[m4_cr_Letters[]m4_cr_digits[]_])dnl 1141_OUT=`echo ifelse($1, , $PACKAGE-config.h, $1)` 1142_DEF=`echo _$_OUT | sed -e "y:m4_cr_letters:m4_cr_LETTERS[]:" -e "s/@<:@^m4_cr_Letters@:>@/_/g"` 1143_PKG=`echo ifelse($2, , $PACKAGE, $2)` 1144_LOW=`echo _$_PKG | sed -e "y:m4_cr_LETTERS-:m4_cr_letters[]_:"` 1145_UPP=`echo $_PKG | sed -e "y:m4_cr_letters-:m4_cr_LETTERS[]_:" -e "/^@<:@m4_cr_digits@:>@/s/^/_/"` 1146_INP=`echo ifelse($3, , _, $3)` 1147if test "$ac_prefix_conf_INP" = "_"; then 1148 for ac_file in : $CONFIG_HEADERS; do test "_$ac_file" = _: && continue 1149 test -f "$ac_prefix_conf_INP" && continue 1150 case $ac_file in 1151 *.h) test -f $ac_file && _INP=$ac_file ;; 1152 *) 1153 esac 1154 done 1155fi 1156if test "$_INP" = "_"; then 1157 case "$_OUT" in 1158 */*) _INP=`basename "$_OUT"` 1159 ;; 1160 *-*) _INP=`echo "$_OUT" | sed -e "s/@<:@_symbol@:>@*-//"` 1161 ;; 1162 *) _INP=config.h 1163 ;; 1164 esac 1165fi 1166if test -z "$_PKG" ; then 1167 AC_MSG_ERROR([no prefix for _PREFIX_PKG_CONFIG_H]) 1168else 1169 if test ! -f "$_INP" ; then if test -f "$srcdir/$_INP" ; then 1170 _INP="$srcdir/$_INP" 1171 fi fi 1172 AC_MSG_NOTICE(creating $_OUT - prefix $_UPP for $_INP defines) 1173 if test -f $_INP ; then 1174 echo "s/@%:@undef *\\(@<:@m4_cr_LETTERS[]_@:>@\\)/@%:@undef $_UPP""_\\1/" > _script 1175 # no! these are things like socklen_t, const, vfork 1176 # echo "s/@%:@undef *\\(@<:@m4_cr_letters@:>@\\)/@%:@undef $_LOW""_\\1/" >> _script 1177 echo "s/@%:@def[]ine *\\(@<:@m4_cr_LETTERS[]_@:>@@<:@_symbol@:>@*\\)\\(.*\\)/@%:@ifndef $_UPP""_\\1 \\" >> _script 1178 echo "@%:@def[]ine $_UPP""_\\1 \\2 \\" >> _script 1179 echo "@%:@endif/" >>_script 1180 # no! these are things like socklen_t, const, vfork 1181 # echo "s/@%:@def[]ine *\\(@<:@m4_cr_letters@:>@@<:@_symbol@:>@*\\)\\(.*\\)/@%:@ifndef $_LOW""_\\1 \\" >> _script 1182 # echo "@%:@define $_LOW""_\\1 \\2 \\" >> _script 1183 # echo "@%:@endif/" >> _script 1184 # now executing _script on _DEF input to create _OUT output file 1185 echo "@%:@ifndef $_DEF" >$tmp/pconfig.h 1186 echo "@%:@def[]ine $_DEF 1" >>$tmp/pconfig.h 1187 echo ' ' >>$tmp/pconfig.h 1188 echo /'*' $_OUT. Generated automatically at end of configure. '*'/ >>$tmp/pconfig.h 1189 1190 sed -f _script $_INP >>$tmp/pconfig.h 1191 echo ' ' >>$tmp/pconfig.h 1192 echo '/* once:' $_DEF '*/' >>$tmp/pconfig.h 1193 echo "@%:@endif" >>$tmp/pconfig.h 1194 if cmp -s $_OUT $tmp/pconfig.h 2>/dev/null; then 1195 AC_MSG_NOTICE([$_OUT is unchanged]) 1196 else 1197 ac_dir=`AS_DIRNAME(["$_OUT"])` 1198 AS_MKDIR_P(["$ac_dir"]) 1199 rm -f "$_OUT" 1200 mv $tmp/pconfig.h "$_OUT" 1201 fi 1202 cp _script _configs.sed 1203 else 1204 AC_MSG_ERROR([input file $_INP does not exist - skip generating $_OUT]) 1205 fi 1206 rm -f conftest.* 1207fi 1208m4_popdef([_symbol])dnl 1209m4_popdef([_script])dnl 1210AS_VAR_POPDEF([_INP])dnl 1211AS_VAR_POPDEF([_UPP])dnl 1212AS_VAR_POPDEF([_LOW])dnl 1213AS_VAR_POPDEF([_PKG])dnl 1214AS_VAR_POPDEF([_DEF])dnl 1215AS_VAR_POPDEF([_OUT])dnl 1216],[PACKAGE="$PACKAGE"])]) 1217m4trace:acinclude.m4:629: -1- AC_DEFUN([AC_PROG_LIBTOOL], [AC_REQUIRE([_AC_PROG_LIBTOOL])dnl 1218dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX 1219dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX. 1220 AC_PROVIDE_IFELSE([AC_PROG_CXX], 1221 [AC_LIBTOOL_CXX], 1222 [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX 1223 ])]) 1224dnl And a similar setup for Fortran 77 support 1225 AC_PROVIDE_IFELSE([AC_PROG_F77], 1226 [AC_LIBTOOL_F77], 1227 [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77 1228])]) 1229 1230dnl Quote AM_PROG_GCJ so that aclocal doesn't bring it in needlessly. 1231dnl If either AC_PROG_GCJ or AM_PROG_GCJ have already been expanded, run 1232dnl AC_LIBTOOL_GCJ immediately, otherwise, hook it in at the end of both. 1233 AC_PROVIDE_IFELSE([AC_PROG_GCJ], 1234 [AC_LIBTOOL_GCJ], 1235 [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], 1236 [AC_LIBTOOL_GCJ], 1237 [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ], 1238 [AC_LIBTOOL_GCJ], 1239 [ifdef([AC_PROG_GCJ], 1240 [define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[AC_LIBTOOL_GCJ])]) 1241 ifdef([A][M_PROG_GCJ], 1242 [define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[AC_LIBTOOL_GCJ])]) 1243 ifdef([LT_AC_PROG_GCJ], 1244 [define([LT_AC_PROG_GCJ], 1245 defn([LT_AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])])]) 1246])]) 1247m4trace:acinclude.m4:664: -1- AC_DEFUN([_AC_PROG_LIBTOOL], [AC_REQUIRE([AC_LIBTOOL_SETUP])dnl 1248AC_BEFORE([$0],[AC_LIBTOOL_CXX])dnl 1249AC_BEFORE([$0],[AC_LIBTOOL_F77])dnl 1250AC_BEFORE([$0],[AC_LIBTOOL_GCJ])dnl 1251 1252# This can be used to rebuild libtool when needed 1253LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" 1254 1255# Always use our own libtool. 1256LIBTOOL='$(SHELL) $(top_builddir)/libtool' 1257AC_SUBST(LIBTOOL)dnl 1258 1259# Prevent multiple expansion 1260define([AC_PROG_LIBTOOL], []) 1261]) 1262m4trace:acinclude.m4:684: -1- AC_DEFUN([AC_LIBTOOL_SETUP], [AC_PREREQ(2.50)dnl 1263AC_REQUIRE([AC_ENABLE_SHARED])dnl 1264AC_REQUIRE([AC_ENABLE_STATIC])dnl 1265AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl 1266AC_REQUIRE([AC_CANONICAL_HOST])dnl 1267AC_REQUIRE([AC_CANONICAL_BUILD])dnl 1268AC_REQUIRE([AC_PROG_CC])dnl 1269AC_REQUIRE([AC_PROG_LD])dnl 1270AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl 1271AC_REQUIRE([AC_PROG_NM])dnl 1272 1273AC_REQUIRE([AC_PROG_LN_S])dnl 1274AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl 1275# Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! 1276AC_REQUIRE([AC_OBJEXT])dnl 1277AC_REQUIRE([AC_EXEEXT])dnl 1278dnl 1279 1280AC_LIBTOOL_SYS_MAX_CMD_LEN 1281AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE 1282AC_LIBTOOL_OBJDIR 1283 1284AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl 1285_LT_AC_PROG_ECHO_BACKSLASH 1286 1287case $host_os in 1288aix3*) 1289 # AIX sometimes has problems with the GCC collect2 program. For some 1290 # reason, if we set the COLLECT_NAMES environment variable, the problems 1291 # vanish in a puff of smoke. 1292 if test "X${COLLECT_NAMES+set}" != Xset; then 1293 COLLECT_NAMES= 1294 export COLLECT_NAMES 1295 fi 1296 ;; 1297esac 1298 1299# Sed substitution that helps us do robust quoting. It backslashifies 1300# metacharacters that are still active within double-quoted strings. 1301Xsed='sed -e 1s/^X//' 1302[sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g'] 1303 1304# Same as above, but do not quote variable references. 1305[double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g'] 1306 1307# Sed substitution to delay expansion of an escaped shell variable in a 1308# double_quote_subst'ed string. 1309delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' 1310 1311# Sed substitution to avoid accidental globbing in evaled expressions 1312no_glob_subst='s/\*/\\\*/g' 1313 1314# Constants: 1315rm="rm -f" 1316 1317# Global variables: 1318default_ofile=libtool 1319can_build_shared=yes 1320 1321# All known linkers require a `.a' archive for static linking (except MSVC, 1322# which needs '.lib'). 1323libext=a 1324ltmain="$ac_aux_dir/ltmain.sh" 1325ofile="$default_ofile" 1326with_gnu_ld="$lt_cv_prog_gnu_ld" 1327 1328AC_CHECK_TOOL(AR, ar, false) 1329AC_CHECK_TOOL(RANLIB, ranlib, :) 1330AC_CHECK_TOOL(STRIP, strip, :) 1331 1332old_CC="$CC" 1333old_CFLAGS="$CFLAGS" 1334 1335# Set sane defaults for various variables 1336test -z "$AR" && AR=ar 1337test -z "$AR_FLAGS" && AR_FLAGS=cru 1338test -z "$AS" && AS=as 1339test -z "$CC" && CC=cc 1340test -z "$LTCC" && LTCC=$CC 1341test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS 1342test -z "$DLLTOOL" && DLLTOOL=dlltool 1343test -z "$LD" && LD=ld 1344test -z "$LN_S" && LN_S="ln -s" 1345test -z "$MAGIC_CMD" && MAGIC_CMD=file 1346test -z "$NM" && NM=nm 1347test -z "$SED" && SED=sed 1348test -z "$OBJDUMP" && OBJDUMP=objdump 1349test -z "$RANLIB" && RANLIB=: 1350test -z "$STRIP" && STRIP=: 1351test -z "$ac_objext" && ac_objext=o 1352 1353# Determine commands to create old-style static archives. 1354old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs' 1355old_postinstall_cmds='chmod 644 $oldlib' 1356old_postuninstall_cmds= 1357 1358if test -n "$RANLIB"; then 1359 case $host_os in 1360 openbsd*) 1361 old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" 1362 ;; 1363 *) 1364 old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" 1365 ;; 1366 esac 1367 old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" 1368fi 1369 1370_LT_CC_BASENAME([$compiler]) 1371 1372# Only perform the check for file, if the check method requires it 1373case $deplibs_check_method in 1374file_magic*) 1375 if test "$file_magic_cmd" = '$MAGIC_CMD'; then 1376 AC_PATH_MAGIC 1377 fi 1378 ;; 1379esac 1380 1381AC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no) 1382AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], 1383enable_win32_dll=yes, enable_win32_dll=no) 1384 1385AC_ARG_ENABLE([libtool-lock], 1386 [AC_HELP_STRING([--disable-libtool-lock], 1387 [avoid locking (might break parallel builds)])]) 1388test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes 1389 1390AC_ARG_WITH([pic], 1391 [AC_HELP_STRING([--with-pic], 1392 [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], 1393 [pic_mode="$withval"], 1394 [pic_mode=default]) 1395test -z "$pic_mode" && pic_mode=default 1396 1397# Use C for the default configuration in the libtool script 1398tagname= 1399AC_LIBTOOL_LANG_C_CONFIG 1400_LT_AC_TAGCONFIG 1401]) 1402m4trace:acinclude.m4:829: -1- AC_DEFUN([_LT_AC_SYS_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl 1403 1404# If no C compiler was specified, use CC. 1405LTCC=${LTCC-"$CC"} 1406 1407# If no C compiler flags were specified, use CFLAGS. 1408LTCFLAGS=${LTCFLAGS-"$CFLAGS"} 1409 1410# Allow CC to be a program name with arguments. 1411compiler=$CC 1412]) 1413m4trace:acinclude.m4:846: -1- AC_DEFUN([_LT_CC_BASENAME], [for cc_temp in $1""; do 1414 case $cc_temp in 1415 compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; 1416 distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; 1417 \-*) ;; 1418 *) break;; 1419 esac 1420done 1421cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` 1422]) 1423m4trace:acinclude.m4:863: -1- AC_DEFUN([_LT_COMPILER_BOILERPLATE], [ac_outfile=conftest.$ac_objext 1424printf "$lt_simple_compile_test_code" >conftest.$ac_ext 1425eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err 1426_lt_compiler_boilerplate=`cat conftest.err` 1427$rm conftest* 1428]) 1429m4trace:acinclude.m4:876: -1- AC_DEFUN([_LT_LINKER_BOILERPLATE], [ac_outfile=conftest.$ac_objext 1430printf "$lt_simple_link_test_code" >conftest.$ac_ext 1431eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err 1432_lt_linker_boilerplate=`cat conftest.err` 1433$rm conftest* 1434]) 1435m4trace:acinclude.m4:893: -1- AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX], [AC_LINK_IFELSE(AC_LANG_PROGRAM,[ 1436aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } 1437}'` 1438# Check for a 64-bit object if we didn't find anything. 1439if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } 1440}'`; fi],[]) 1441if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi 1442]) 1443m4trace:acinclude.m4:906: -1- AC_DEFUN([_LT_AC_SHELL_INIT], [ifdef([AC_DIVERSION_NOTICE], 1444 [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)], 1445 [AC_DIVERT_PUSH(NOTICE)]) 1446$1 1447AC_DIVERT_POP 1448]) 1449m4trace:acinclude.m4:919: -1- AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH], [_LT_AC_SHELL_INIT([ 1450# Check that we are running under the correct shell. 1451SHELL=${CONFIG_SHELL-/bin/sh} 1452 1453case X$ECHO in 1454X*--fallback-echo) 1455 # Remove one level of quotation (which was required for Make). 1456 ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','` 1457 ;; 1458esac 1459 1460echo=${ECHO-echo} 1461if test "X[$]1" = X--no-reexec; then 1462 # Discard the --no-reexec flag, and continue. 1463 shift 1464elif test "X[$]1" = X--fallback-echo; then 1465 # Avoid inline document here, it may be left over 1466 : 1467elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then 1468 # Yippee, $echo works! 1469 : 1470else 1471 # Restart under the correct shell. 1472 exec $SHELL "[$]0" --no-reexec ${1+"[$]@"} 1473fi 1474 1475if test "X[$]1" = X--fallback-echo; then 1476 # used as fallback echo 1477 shift 1478 cat <<EOF 1479[$]* 1480EOF 1481 exit 0 1482fi 1483 1484# The HP-UX ksh and POSIX shell print the target directory to stdout 1485# if CDPATH is set. 1486(unset CDPATH) >/dev/null 2>&1 && unset CDPATH 1487 1488if test -z "$ECHO"; then 1489if test "X${echo_test_string+set}" != Xset; then 1490# find a string as large as possible, as long as the shell can cope with it 1491 for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do 1492 # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... 1493 if (echo_test_string=`eval $cmd`) 2>/dev/null && 1494 echo_test_string=`eval $cmd` && 1495 (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null 1496 then 1497 break 1498 fi 1499 done 1500fi 1501 1502if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && 1503 echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && 1504 test "X$echo_testing_string" = "X$echo_test_string"; then 1505 : 1506else 1507 # The Solaris, AIX, and Digital Unix default echo programs unquote 1508 # backslashes. This makes it impossible to quote backslashes using 1509 # echo "$something" | sed 's/\\/\\\\/g' 1510 # 1511 # So, first we look for a working echo in the user's PATH. 1512 1513 lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR 1514 for dir in $PATH /usr/ucb; do 1515 IFS="$lt_save_ifs" 1516 if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && 1517 test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && 1518 echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && 1519 test "X$echo_testing_string" = "X$echo_test_string"; then 1520 echo="$dir/echo" 1521 break 1522 fi 1523 done 1524 IFS="$lt_save_ifs" 1525 1526 if test "X$echo" = Xecho; then 1527 # We didn't find a better echo, so look for alternatives. 1528 if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && 1529 echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && 1530 test "X$echo_testing_string" = "X$echo_test_string"; then 1531 # This shell has a builtin print -r that does the trick. 1532 echo='print -r' 1533 elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && 1534 test "X$CONFIG_SHELL" != X/bin/ksh; then 1535 # If we have ksh, try running configure again with it. 1536 ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} 1537 export ORIGINAL_CONFIG_SHELL 1538 CONFIG_SHELL=/bin/ksh 1539 export CONFIG_SHELL 1540 exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"} 1541 else 1542 # Try using printf. 1543 echo='printf %s\n' 1544 if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && 1545 echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && 1546 test "X$echo_testing_string" = "X$echo_test_string"; then 1547 # Cool, printf works 1548 : 1549 elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && 1550 test "X$echo_testing_string" = 'X\t' && 1551 echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && 1552 test "X$echo_testing_string" = "X$echo_test_string"; then 1553 CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL 1554 export CONFIG_SHELL 1555 SHELL="$CONFIG_SHELL" 1556 export SHELL 1557 echo="$CONFIG_SHELL [$]0 --fallback-echo" 1558 elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && 1559 test "X$echo_testing_string" = 'X\t' && 1560 echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && 1561 test "X$echo_testing_string" = "X$echo_test_string"; then 1562 echo="$CONFIG_SHELL [$]0 --fallback-echo" 1563 else 1564 # maybe with a smaller string... 1565 prev=: 1566 1567 for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do 1568 if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null 1569 then 1570 break 1571 fi 1572 prev="$cmd" 1573 done 1574 1575 if test "$prev" != 'sed 50q "[$]0"'; then 1576 echo_test_string=`eval $prev` 1577 export echo_test_string 1578 exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"} 1579 else 1580 # Oops. We lost completely, so just stick with echo. 1581 echo=echo 1582 fi 1583 fi 1584 fi 1585 fi 1586fi 1587fi 1588 1589# Copy echo and quote the copy suitably for passing to libtool from 1590# the Makefile, instead of quoting the original, which is used later. 1591ECHO=$echo 1592if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then 1593 ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo" 1594fi 1595 1596AC_SUBST(ECHO) 1597])]) 1598m4trace:acinclude.m4:1073: -1- AC_DEFUN([_LT_AC_LOCK], [AC_ARG_ENABLE([libtool-lock], 1599 [AC_HELP_STRING([--disable-libtool-lock], 1600 [avoid locking (might break parallel builds)])]) 1601test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes 1602 1603# Some flags need to be propagated to the compiler or linker for good 1604# libtool support. 1605case $host in 1606ia64-*-hpux*) 1607 # Find out which ABI we are using. 1608 echo 'int i;' > conftest.$ac_ext 1609 if AC_TRY_EVAL(ac_compile); then 1610 case `/usr/bin/file conftest.$ac_objext` in 1611 *ELF-32*) 1612 HPUX_IA64_MODE="32" 1613 ;; 1614 *ELF-64*) 1615 HPUX_IA64_MODE="64" 1616 ;; 1617 esac 1618 fi 1619 rm -rf conftest* 1620 ;; 1621*-*-irix6*) 1622 # Find out which ABI we are using. 1623 echo '[#]line __oline__ "configure"' > conftest.$ac_ext 1624 if AC_TRY_EVAL(ac_compile); then 1625 if test "$lt_cv_prog_gnu_ld" = yes; then 1626 case `/usr/bin/file conftest.$ac_objext` in 1627 *32-bit*) 1628 LD="${LD-ld} -melf32bsmip" 1629 ;; 1630 *N32*) 1631 LD="${LD-ld} -melf32bmipn32" 1632 ;; 1633 *64-bit*) 1634 LD="${LD-ld} -melf64bmip" 1635 ;; 1636 esac 1637 else 1638 case `/usr/bin/file conftest.$ac_objext` in 1639 *32-bit*) 1640 LD="${LD-ld} -32" 1641 ;; 1642 *N32*) 1643 LD="${LD-ld} -n32" 1644 ;; 1645 *64-bit*) 1646 LD="${LD-ld} -64" 1647 ;; 1648 esac 1649 fi 1650 fi 1651 rm -rf conftest* 1652 ;; 1653 1654x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*) 1655 # Find out which ABI we are using. 1656 echo 'int i;' > conftest.$ac_ext 1657 if AC_TRY_EVAL(ac_compile); then 1658 case `/usr/bin/file conftest.o` in 1659 *32-bit*) 1660 case $host in 1661 x86_64-*linux*) 1662 LD="${LD-ld} -m elf_i386" 1663 ;; 1664 ppc64-*linux*|powerpc64-*linux*) 1665 LD="${LD-ld} -m elf32ppclinux" 1666 ;; 1667 s390x-*linux*) 1668 LD="${LD-ld} -m elf_s390" 1669 ;; 1670 sparc64-*linux*) 1671 LD="${LD-ld} -m elf32_sparc" 1672 ;; 1673 esac 1674 ;; 1675 *64-bit*) 1676 case $host in 1677 x86_64-*linux*) 1678 LD="${LD-ld} -m elf_x86_64" 1679 ;; 1680 ppc*-*linux*|powerpc*-*linux*) 1681 LD="${LD-ld} -m elf64ppc" 1682 ;; 1683 s390*-*linux*) 1684 LD="${LD-ld} -m elf64_s390" 1685 ;; 1686 sparc*-*linux*) 1687 LD="${LD-ld} -m elf64_sparc" 1688 ;; 1689 esac 1690 ;; 1691 esac 1692 fi 1693 rm -rf conftest* 1694 ;; 1695 1696*-*-sco3.2v5*) 1697 # On SCO OpenServer 5, we need -belf to get full-featured binaries. 1698 SAVE_CFLAGS="$CFLAGS" 1699 CFLAGS="$CFLAGS -belf" 1700 AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, 1701 [AC_LANG_PUSH(C) 1702 AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) 1703 AC_LANG_POP]) 1704 if test x"$lt_cv_cc_needs_belf" != x"yes"; then 1705 # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf 1706 CFLAGS="$SAVE_CFLAGS" 1707 fi 1708 ;; 1709sparc*-*solaris*) 1710 # Find out which ABI we are using. 1711 echo 'int i;' > conftest.$ac_ext 1712 if AC_TRY_EVAL(ac_compile); then 1713 case `/usr/bin/file conftest.o` in 1714 *64-bit*) 1715 case $lt_cv_prog_gnu_ld in 1716 yes*) LD="${LD-ld} -m elf64_sparc" ;; 1717 *) LD="${LD-ld} -64" ;; 1718 esac 1719 ;; 1720 esac 1721 fi 1722 rm -rf conftest* 1723 ;; 1724 1725AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], 1726[*-*-cygwin* | *-*-mingw* | *-*-pw32*) 1727 AC_CHECK_TOOL(DLLTOOL, dlltool, false) 1728 AC_CHECK_TOOL(AS, as, false) 1729 AC_CHECK_TOOL(OBJDUMP, objdump, false) 1730 ;; 1731 ]) 1732esac 1733 1734need_locks="$enable_libtool_lock" 1735 1736]) 1737m4trace:acinclude.m4:1219: -1- AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_REQUIRE([LT_AC_PROG_SED]) 1738AC_CACHE_CHECK([$1], [$2], 1739 [$2=no 1740 ifelse([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) 1741 printf "$lt_simple_compile_test_code" > conftest.$ac_ext 1742 lt_compiler_flag="$3" 1743 # Insert the option either (1) after the last *FLAGS variable, or 1744 # (2) before a word containing "conftest.", or (3) at the end. 1745 # Note that $ac_compile itself does not contain backslashes and begins 1746 # with a dollar sign (not a hyphen), so the echo should work correctly. 1747 # The option is referenced via a variable to avoid confusing sed. 1748 lt_compile=`echo "$ac_compile" | $SED \ 1749 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ 1750 -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ 1751 -e 's:$: $lt_compiler_flag:'` 1752 (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) 1753 (eval "$lt_compile" 2>conftest.err) 1754 ac_status=$? 1755 cat conftest.err >&AS_MESSAGE_LOG_FD 1756 echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD 1757 if (exit $ac_status) && test -s "$ac_outfile"; then 1758 # The compiler can only warn and ignore the option if not recognized 1759 # So say no if there are warnings other than the usual output. 1760 $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp 1761 $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 1762 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then 1763 $2=yes 1764 fi 1765 fi 1766 $rm conftest* 1767]) 1768 1769if test x"[$]$2" = xyes; then 1770 ifelse([$5], , :, [$5]) 1771else 1772 ifelse([$6], , :, [$6]) 1773fi 1774]) 1775m4trace:acinclude.m4:1264: -1- AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_CACHE_CHECK([$1], [$2], 1776 [$2=no 1777 save_LDFLAGS="$LDFLAGS" 1778 LDFLAGS="$LDFLAGS $3" 1779 printf "$lt_simple_link_test_code" > conftest.$ac_ext 1780 if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then 1781 # The linker can only warn and ignore the option if not recognized 1782 # So say no if there are warnings 1783 if test -s conftest.err; then 1784 # Append any errors to the config.log. 1785 cat conftest.err 1>&AS_MESSAGE_LOG_FD 1786 $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp 1787 $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 1788 if diff conftest.exp conftest.er2 >/dev/null; then 1789 $2=yes 1790 fi 1791 else 1792 $2=yes 1793 fi 1794 fi 1795 $rm conftest* 1796 LDFLAGS="$save_LDFLAGS" 1797]) 1798 1799if test x"[$]$2" = xyes; then 1800 ifelse([$4], , :, [$4]) 1801else 1802 ifelse([$5], , :, [$5]) 1803fi 1804]) 1805m4trace:acinclude.m4:1299: -1- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [# find the maximum length of command line arguments 1806AC_MSG_CHECKING([the maximum length of command line arguments]) 1807AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl 1808 i=0 1809 teststring="ABCD" 1810 1811 case $build_os in 1812 msdosdjgpp*) 1813 # On DJGPP, this test can blow up pretty badly due to problems in libc 1814 # (any single argument exceeding 2000 bytes causes a buffer overrun 1815 # during glob expansion). Even if it were fixed, the result of this 1816 # check would be larger than it should be. 1817 lt_cv_sys_max_cmd_len=12288; # 12K is about right 1818 ;; 1819 1820 gnu*) 1821 # Under GNU Hurd, this test is not required because there is 1822 # no limit to the length of command line arguments. 1823 # Libtool will interpret -1 as no limit whatsoever 1824 lt_cv_sys_max_cmd_len=-1; 1825 ;; 1826 1827 cygwin* | mingw*) 1828 # On Win9x/ME, this test blows up -- it succeeds, but takes 1829 # about 5 minutes as the teststring grows exponentially. 1830 # Worse, since 9x/ME are not pre-emptively multitasking, 1831 # you end up with a "frozen" computer, even though with patience 1832 # the test eventually succeeds (with a max line length of 256k). 1833 # Instead, let's just punt: use the minimum linelength reported by 1834 # all of the supported platforms: 8192 (on NT/2K/XP). 1835 lt_cv_sys_max_cmd_len=8192; 1836 ;; 1837 1838 amigaos*) 1839 # On AmigaOS with pdksh, this test takes hours, literally. 1840 # So we just punt and use a minimum line length of 8192. 1841 lt_cv_sys_max_cmd_len=8192; 1842 ;; 1843 1844 netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) 1845 # This has been around since 386BSD, at least. Likely further. 1846 if test -x /sbin/sysctl; then 1847 lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` 1848 elif test -x /usr/sbin/sysctl; then 1849 lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` 1850 else 1851 lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs 1852 fi 1853 # And add a safety zone 1854 lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` 1855 lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` 1856 ;; 1857 1858 interix*) 1859 # We know the value 262144 and hardcode it with a safety zone (like BSD) 1860 lt_cv_sys_max_cmd_len=196608 1861 ;; 1862 1863 osf*) 1864 # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure 1865 # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not 1866 # nice to cause kernel panics so lets avoid the loop below. 1867 # First set a reasonable default. 1868 lt_cv_sys_max_cmd_len=16384 1869 # 1870 if test -x /sbin/sysconfig; then 1871 case `/sbin/sysconfig -q proc exec_disable_arg_limit` in 1872 *1*) lt_cv_sys_max_cmd_len=-1 ;; 1873 esac 1874 fi 1875 ;; 1876 sco3.2v5*) 1877 lt_cv_sys_max_cmd_len=102400 1878 ;; 1879 sysv5* | sco5v6* | sysv4.2uw2*) 1880 kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` 1881 if test -n "$kargmax"; then 1882 lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` 1883 else 1884 lt_cv_sys_max_cmd_len=32768 1885 fi 1886 ;; 1887 *) 1888 # If test is not a shell built-in, we'll probably end up computing a 1889 # maximum length that is only half of the actual maximum length, but 1890 # we can't tell. 1891 SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} 1892 while (test "X"`$SHELL [$]0 --fallback-echo "X$teststring" 2>/dev/null` \ 1893 = "XX$teststring") >/dev/null 2>&1 && 1894 new_result=`expr "X$teststring" : ".*" 2>&1` && 1895 lt_cv_sys_max_cmd_len=$new_result && 1896 test $i != 17 # 1/2 MB should be enough 1897 do 1898 i=`expr $i + 1` 1899 teststring=$teststring$teststring 1900 done 1901 teststring= 1902 # Add a significant safety factor because C++ compilers can tack on massive 1903 # amounts of additional arguments before passing them to the linker. 1904 # It appears as though 1/2 is a usable value. 1905 lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` 1906 ;; 1907 esac 1908]) 1909if test -n $lt_cv_sys_max_cmd_len ; then 1910 AC_MSG_RESULT($lt_cv_sys_max_cmd_len) 1911else 1912 AC_MSG_RESULT(none) 1913fi 1914]) 1915m4trace:acinclude.m4:1414: -1- AC_DEFUN([_LT_AC_CHECK_DLFCN], [AC_CHECK_HEADERS(dlfcn.h)dnl 1916]) 1917m4trace:acinclude.m4:1422: -1- AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF], [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl 1918if test "$cross_compiling" = yes; then : 1919 [$4] 1920else 1921 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 1922 lt_status=$lt_dlunknown 1923 cat > conftest.$ac_ext <<EOF 1924[#line __oline__ "configure" 1925#include "confdefs.h" 1926 1927#if HAVE_DLFCN_H 1928#include <dlfcn.h> 1929#endif 1930 1931#include <stdio.h> 1932 1933#ifdef RTLD_GLOBAL 1934# define LT_DLGLOBAL RTLD_GLOBAL 1935#else 1936# ifdef DL_GLOBAL 1937# define LT_DLGLOBAL DL_GLOBAL 1938# else 1939# define LT_DLGLOBAL 0 1940# endif 1941#endif 1942 1943/* We may have to define LT_DLLAZY_OR_NOW in the command line if we 1944 find out it does not work in some platform. */ 1945#ifndef LT_DLLAZY_OR_NOW 1946# ifdef RTLD_LAZY 1947# define LT_DLLAZY_OR_NOW RTLD_LAZY 1948# else 1949# ifdef DL_LAZY 1950# define LT_DLLAZY_OR_NOW DL_LAZY 1951# else 1952# ifdef RTLD_NOW 1953# define LT_DLLAZY_OR_NOW RTLD_NOW 1954# else 1955# ifdef DL_NOW 1956# define LT_DLLAZY_OR_NOW DL_NOW 1957# else 1958# define LT_DLLAZY_OR_NOW 0 1959# endif 1960# endif 1961# endif 1962# endif 1963#endif 1964 1965#ifdef __cplusplus 1966extern "C" void exit (int); 1967#endif 1968 1969void fnord() { int i=42;} 1970int main () 1971{ 1972 void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); 1973 int status = $lt_dlunknown; 1974 1975 if (self) 1976 { 1977 if (dlsym (self,"fnord")) status = $lt_dlno_uscore; 1978 else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; 1979 /* dlclose (self); */ 1980 } 1981 else 1982 puts (dlerror ()); 1983 1984 exit (status); 1985}] 1986EOF 1987 if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then 1988 (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null 1989 lt_status=$? 1990 case x$lt_status in 1991 x$lt_dlno_uscore) $1 ;; 1992 x$lt_dlneed_uscore) $2 ;; 1993 x$lt_dlunknown|x*) $3 ;; 1994 esac 1995 else : 1996 # compilation failed 1997 $3 1998 fi 1999fi 2000rm -fr conftest* 2001]) 2002m4trace:acinclude.m4:1512: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl 2003if test "x$enable_dlopen" != xyes; then 2004 enable_dlopen=unknown 2005 enable_dlopen_self=unknown 2006 enable_dlopen_self_static=unknown 2007else 2008 lt_cv_dlopen=no 2009 lt_cv_dlopen_libs= 2010 2011 case $host_os in 2012 beos*) 2013 lt_cv_dlopen="load_add_on" 2014 lt_cv_dlopen_libs= 2015 lt_cv_dlopen_self=yes 2016 ;; 2017 2018 mingw* | pw32*) 2019 lt_cv_dlopen="LoadLibrary" 2020 lt_cv_dlopen_libs= 2021 ;; 2022 2023 cygwin*) 2024 lt_cv_dlopen="dlopen" 2025 lt_cv_dlopen_libs= 2026 ;; 2027 2028 darwin*) 2029 # if libdl is installed we need to link against it 2030 AC_CHECK_LIB([dl], [dlopen], 2031 [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ 2032 lt_cv_dlopen="dyld" 2033 lt_cv_dlopen_libs= 2034 lt_cv_dlopen_self=yes 2035 ]) 2036 ;; 2037 2038 *) 2039 AC_CHECK_FUNC([shl_load], 2040 [lt_cv_dlopen="shl_load"], 2041 [AC_CHECK_LIB([dld], [shl_load], 2042 [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"], 2043 [AC_CHECK_FUNC([dlopen], 2044 [lt_cv_dlopen="dlopen"], 2045 [AC_CHECK_LIB([dl], [dlopen], 2046 [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], 2047 [AC_CHECK_LIB([svld], [dlopen], 2048 [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], 2049 [AC_CHECK_LIB([dld], [dld_link], 2050 [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"]) 2051 ]) 2052 ]) 2053 ]) 2054 ]) 2055 ]) 2056 ;; 2057 esac 2058 2059 if test "x$lt_cv_dlopen" != xno; then 2060 enable_dlopen=yes 2061 else 2062 enable_dlopen=no 2063 fi 2064 2065 case $lt_cv_dlopen in 2066 dlopen) 2067 save_CPPFLAGS="$CPPFLAGS" 2068 test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" 2069 2070 save_LDFLAGS="$LDFLAGS" 2071 wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" 2072 2073 save_LIBS="$LIBS" 2074 LIBS="$lt_cv_dlopen_libs $LIBS" 2075 2076 AC_CACHE_CHECK([whether a program can dlopen itself], 2077 lt_cv_dlopen_self, [dnl 2078 _LT_AC_TRY_DLOPEN_SELF( 2079 lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, 2080 lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) 2081 ]) 2082 2083 if test "x$lt_cv_dlopen_self" = xyes; then 2084 wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" 2085 AC_CACHE_CHECK([whether a statically linked program can dlopen itself], 2086 lt_cv_dlopen_self_static, [dnl 2087 _LT_AC_TRY_DLOPEN_SELF( 2088 lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, 2089 lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) 2090 ]) 2091 fi 2092 2093 CPPFLAGS="$save_CPPFLAGS" 2094 LDFLAGS="$save_LDFLAGS" 2095 LIBS="$save_LIBS" 2096 ;; 2097 esac 2098 2099 case $lt_cv_dlopen_self in 2100 yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; 2101 *) enable_dlopen_self=unknown ;; 2102 esac 2103 2104 case $lt_cv_dlopen_self_static in 2105 yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; 2106 *) enable_dlopen_self_static=unknown ;; 2107 esac 2108fi 2109]) 2110m4trace:acinclude.m4:1626: -1- AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O], [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl 2111AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], 2112 [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)], 2113 [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no 2114 $rm -r conftest 2>/dev/null 2115 mkdir conftest 2116 cd conftest 2117 mkdir out 2118 printf "$lt_simple_compile_test_code" > conftest.$ac_ext 2119 2120 lt_compiler_flag="-o out/conftest2.$ac_objext" 2121 # Insert the option either (1) after the last *FLAGS variable, or 2122 # (2) before a word containing "conftest.", or (3) at the end. 2123 # Note that $ac_compile itself does not contain backslashes and begins 2124 # with a dollar sign (not a hyphen), so the echo should work correctly. 2125 lt_compile=`echo "$ac_compile" | $SED \ 2126 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ 2127 -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ 2128 -e 's:$: $lt_compiler_flag:'` 2129 (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) 2130 (eval "$lt_compile" 2>out/conftest.err) 2131 ac_status=$? 2132 cat out/conftest.err >&AS_MESSAGE_LOG_FD 2133 echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD 2134 if (exit $ac_status) && test -s out/conftest2.$ac_objext 2135 then 2136 # The compiler can only warn and ignore the option if not recognized 2137 # So say no if there are warnings 2138 $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp 2139 $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 2140 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then 2141 _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes 2142 fi 2143 fi 2144 chmod u+w . 2>&AS_MESSAGE_LOG_FD 2145 $rm conftest* 2146 # SGI C++ compiler will create directory out/ii_files/ for 2147 # template instantiation 2148 test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files 2149 $rm out/* && rmdir out 2150 cd .. 2151 rmdir conftest 2152 $rm conftest* 2153]) 2154]) 2155m4trace:acinclude.m4:1677: -1- AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_REQUIRE([_LT_AC_LOCK])dnl 2156 2157hard_links="nottested" 2158if test "$_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then 2159 # do not overwrite the value of need_locks provided by the user 2160 AC_MSG_CHECKING([if we can lock with hard links]) 2161 hard_links=yes 2162 $rm conftest* 2163 ln conftest.a conftest.b 2>/dev/null && hard_links=no 2164 touch conftest.a 2165 ln conftest.a conftest.b 2>&5 || hard_links=no 2166 ln conftest.a conftest.b 2>/dev/null && hard_links=no 2167 AC_MSG_RESULT([$hard_links]) 2168 if test "$hard_links" = no; then 2169 AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) 2170 need_locks=warn 2171 fi 2172else 2173 need_locks=no 2174fi 2175]) 2176m4trace:acinclude.m4:1703: -1- AC_DEFUN([AC_LIBTOOL_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir], 2177[rm -f .libs 2>/dev/null 2178mkdir .libs 2>/dev/null 2179if test -d .libs; then 2180 lt_cv_objdir=.libs 2181else 2182 # MS-DOS does not allow filenames that begin with a dot. 2183 lt_cv_objdir=_libs 2184fi 2185rmdir .libs 2>/dev/null]) 2186objdir=$lt_cv_objdir 2187]) 2188m4trace:acinclude.m4:1721: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs]) 2189_LT_AC_TAGVAR(hardcode_action, $1)= 2190if test -n "$_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)" || \ 2191 test -n "$_LT_AC_TAGVAR(runpath_var, $1)" || \ 2192 test "X$_LT_AC_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then 2193 2194 # We can hardcode non-existant directories. 2195 if test "$_LT_AC_TAGVAR(hardcode_direct, $1)" != no && 2196 # If the only mechanism to avoid hardcoding is shlibpath_var, we 2197 # have to relink, otherwise we might link with an installed library 2198 # when we should be linking with a yet-to-be-installed one 2199 ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)" != no && 2200 test "$_LT_AC_TAGVAR(hardcode_minus_L, $1)" != no; then 2201 # Linking always hardcodes the temporary library directory. 2202 _LT_AC_TAGVAR(hardcode_action, $1)=relink 2203 else 2204 # We can link without hardcoding, and we can hardcode nonexisting dirs. 2205 _LT_AC_TAGVAR(hardcode_action, $1)=immediate 2206 fi 2207else 2208 # We cannot hardcode anything, or else we can only hardcode existing 2209 # directories. 2210 _LT_AC_TAGVAR(hardcode_action, $1)=unsupported 2211fi 2212AC_MSG_RESULT([$_LT_AC_TAGVAR(hardcode_action, $1)]) 2213 2214if test "$_LT_AC_TAGVAR(hardcode_action, $1)" = relink; then 2215 # Fast installation is not supported 2216 enable_fast_install=no 2217elif test "$shlibpath_overrides_runpath" = yes || 2218 test "$enable_shared" = no; then 2219 # Fast installation is not necessary 2220 enable_fast_install=needless 2221fi 2222]) 2223m4trace:acinclude.m4:1761: -1- AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP], [striplib= 2224old_striplib= 2225AC_MSG_CHECKING([whether stripping libraries is possible]) 2226if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then 2227 test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" 2228 test -z "$striplib" && striplib="$STRIP --strip-unneeded" 2229 AC_MSG_RESULT([yes]) 2230else 2231# FIXME - insert some real tests, host_os isn't really good enough 2232 case $host_os in 2233 darwin*) 2234 if test -n "$STRIP" ; then 2235 striplib="$STRIP -x" 2236 AC_MSG_RESULT([yes]) 2237 else 2238 AC_MSG_RESULT([no]) 2239fi 2240 ;; 2241 *) 2242 AC_MSG_RESULT([no]) 2243 ;; 2244 esac 2245fi 2246]) 2247m4trace:acinclude.m4:1791: -1- AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_MSG_CHECKING([dynamic linker characteristics]) 2248library_names_spec= 2249libname_spec='lib$name' 2250soname_spec= 2251shrext_cmds=".so" 2252postinstall_cmds= 2253postuninstall_cmds= 2254finish_cmds= 2255finish_eval= 2256shlibpath_var= 2257shlibpath_overrides_runpath=unknown 2258version_type=none 2259dynamic_linker="$host_os ld.so" 2260sys_lib_dlsearch_path_spec="/lib /usr/lib" 2261if test "$GCC" = yes; then 2262 sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` 2263 if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then 2264 # if the path contains ";" then we assume it to be the separator 2265 # otherwise default to the standard path separator (i.e. ":") - it is 2266 # assumed that no part of a normal pathname contains ";" but that should 2267 # okay in the real world where ";" in dirpaths is itself problematic. 2268 sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` 2269 else 2270 sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` 2271 fi 2272else 2273 sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" 2274fi 2275need_lib_prefix=unknown 2276hardcode_into_libs=no 2277 2278# when you set need_version to no, make sure it does not cause -set_version 2279# flags to be left without arguments 2280need_version=unknown 2281 2282case $host_os in 2283aix3*) 2284 version_type=linux 2285 library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' 2286 shlibpath_var=LIBPATH 2287 2288 # AIX 3 has no versioning support, so we append a major version to the name. 2289 soname_spec='${libname}${release}${shared_ext}$major' 2290 ;; 2291 2292aix4* | aix5*) 2293 version_type=linux 2294 need_lib_prefix=no 2295 need_version=no 2296 hardcode_into_libs=yes 2297 if test "$host_cpu" = ia64; then 2298 # AIX 5 supports IA64 2299 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' 2300 shlibpath_var=LD_LIBRARY_PATH 2301 else 2302 # With GCC up to 2.95.x, collect2 would create an import file 2303 # for dependence libraries. The import file would start with 2304 # the line `#! .'. This would cause the generated library to 2305 # depend on `.', always an invalid library. This was fixed in 2306 # development snapshots of GCC prior to 3.0. 2307 case $host_os in 2308 aix4 | aix4.[[01]] | aix4.[[01]].*) 2309 if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' 2310 echo ' yes ' 2311 echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then 2312 : 2313 else 2314 can_build_shared=no 2315 fi 2316 ;; 2317 esac 2318 # AIX (on Power*) has no versioning support, so currently we can not hardcode correct 2319 # soname into executable. Probably we can add versioning support to 2320 # collect2, so additional links can be useful in future. 2321 if test "$aix_use_runtimelinking" = yes; then 2322 # If using run time linking (on AIX 4.2 or later) use lib<name>.so 2323 # instead of lib<name>.a to let people know that these are not 2324 # typical AIX shared libraries. 2325 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' 2326 else 2327 # We preserve .a as extension for shared libraries through AIX4.2 2328 # and later when we are not doing run time linking. 2329 library_names_spec='${libname}${release}.a $libname.a' 2330 soname_spec='${libname}${release}${shared_ext}$major' 2331 fi 2332 shlibpath_var=LIBPATH 2333 fi 2334 ;; 2335 2336amigaos*) 2337 library_names_spec='$libname.ixlibrary $libname.a' 2338 # Create ${libname}_ixlibrary.a entries in /sys/libs. 2339 finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' 2340 ;; 2341 2342beos*) 2343 library_names_spec='${libname}${shared_ext}' 2344 dynamic_linker="$host_os ld.so" 2345 shlibpath_var=LIBRARY_PATH 2346 ;; 2347 2348bsdi[[45]]*) 2349 version_type=linux 2350 need_version=no 2351 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' 2352 soname_spec='${libname}${release}${shared_ext}$major' 2353 finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' 2354 shlibpath_var=LD_LIBRARY_PATH 2355 sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" 2356 sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" 2357 # the default ld.so.conf also contains /usr/contrib/lib and 2358 # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow 2359 # libtool to hard-code these into programs 2360 ;; 2361 2362cygwin* | mingw* | pw32*) 2363 version_type=windows 2364 shrext_cmds=".dll" 2365 need_version=no 2366 need_lib_prefix=no 2367 2368 case $GCC,$host_os in 2369 yes,cygwin* | yes,mingw* | yes,pw32*) 2370 library_names_spec='$libname.dll.a' 2371 # DLL is installed to $(libdir)/../bin by postinstall_cmds 2372 postinstall_cmds='base_file=`basename \${file}`~ 2373 dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ 2374 dldir=$destdir/`dirname \$dlpath`~ 2375 test -d \$dldir || mkdir -p \$dldir~ 2376 $install_prog $dir/$dlname \$dldir/$dlname~ 2377 chmod a+x \$dldir/$dlname' 2378 postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ 2379 dlpath=$dir/\$dldll~ 2380 $rm \$dlpath' 2381 shlibpath_overrides_runpath=yes 2382 2383 case $host_os in 2384 cygwin*) 2385 # Cygwin DLLs use 'cyg' prefix rather than 'lib' 2386 soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' 2387 sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" 2388 ;; 2389 mingw*) 2390 # MinGW DLLs use traditional 'lib' prefix 2391 soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' 2392 sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` 2393 if echo "$sys_lib_search_path_spec" | [grep ';[c-zC-Z]:/' >/dev/null]; then 2394 # It is most probably a Windows format PATH printed by 2395 # mingw gcc, but we are running on Cygwin. Gcc prints its search 2396 # path with ; separators, and with drive letters. We can handle the 2397 # drive letters (cygwin fileutils understands them), so leave them, 2398 # especially as we might pass files found there to a mingw objdump, 2399 # which wouldn't understand a cygwinified path. Ahh. 2400 sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` 2401 else 2402 sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` 2403 fi 2404 ;; 2405 pw32*) 2406 # pw32 DLLs use 'pw' prefix rather than 'lib' 2407 library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' 2408 ;; 2409 esac 2410 ;; 2411 2412 *) 2413 library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' 2414 ;; 2415 esac 2416 dynamic_linker='Win32 ld.exe' 2417 # FIXME: first we should search . and the directory the executable is in 2418 shlibpath_var=PATH 2419 ;; 2420 2421darwin* | rhapsody*) 2422 dynamic_linker="$host_os dyld" 2423 version_type=darwin 2424 need_lib_prefix=no 2425 need_version=no 2426 library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' 2427 soname_spec='${libname}${release}${major}$shared_ext' 2428 shlibpath_overrides_runpath=yes 2429 shlibpath_var=DYLD_LIBRARY_PATH 2430 shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' 2431 # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. 2432 if test "$GCC" = yes; then 2433 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"` 2434 else 2435 sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' 2436 fi 2437 sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' 2438 ;; 2439 2440dgux*) 2441 version_type=linux 2442 need_lib_prefix=no 2443 need_version=no 2444 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' 2445 soname_spec='${libname}${release}${shared_ext}$major' 2446 shlibpath_var=LD_LIBRARY_PATH 2447 ;; 2448 2449freebsd1*) 2450 dynamic_linker=no 2451 ;; 2452 2453kfreebsd*-gnu) 2454 version_type=linux 2455 need_lib_prefix=no 2456 need_version=no 2457 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' 2458 soname_spec='${libname}${release}${shared_ext}$major' 2459 shlibpath_var=LD_LIBRARY_PATH 2460 shlibpath_overrides_runpath=no 2461 hardcode_into_libs=yes 2462 dynamic_linker='GNU ld.so' 2463 ;; 2464 2465freebsd* | dragonfly*) 2466 # DragonFly does not have aout. When/if they implement a new 2467 # versioning mechanism, adjust this. 2468 if test -x /usr/bin/objformat; then 2469 objformat=`/usr/bin/objformat` 2470 else 2471 case $host_os in 2472 freebsd[[123]]*) objformat=aout ;; 2473 *) objformat=elf ;; 2474 esac 2475 fi 2476 version_type=freebsd-$objformat 2477 case $version_type in 2478 freebsd-elf*) 2479 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' 2480 need_version=no 2481 need_lib_prefix=no 2482 ;; 2483 freebsd-*) 2484 library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' 2485 need_version=yes 2486 ;; 2487 esac 2488 shlibpath_var=LD_LIBRARY_PATH 2489 case $host_os in 2490 freebsd2*) 2491 shlibpath_overrides_runpath=yes 2492 ;; 2493 freebsd3.[[01]]* | freebsdelf3.[[01]]*) 2494 shlibpath_overrides_runpath=yes 2495 hardcode_into_libs=yes 2496 ;; 2497 freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ 2498 freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) 2499 shlibpath_overrides_runpath=no 2500 hardcode_into_libs=yes 2501 ;; 2502 freebsd*) # from 4.6 on 2503 shlibpath_overrides_runpath=yes 2504 hardcode_into_libs=yes 2505 ;; 2506 esac 2507 ;; 2508 2509gnu*) 2510 version_type=linux 2511 need_lib_prefix=no 2512 need_version=no 2513 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' 2514 soname_spec='${libname}${release}${shared_ext}$major' 2515 shlibpath_var=LD_LIBRARY_PATH 2516 hardcode_into_libs=yes 2517 ;; 2518 2519hpux9* | hpux10* | hpux11*) 2520 # Give a soname corresponding to the major version so that dld.sl refuses to 2521 # link against other versions. 2522 version_type=sunos 2523 need_lib_prefix=no 2524 need_version=no 2525 case $host_cpu in 2526 ia64*) 2527 shrext_cmds='.so' 2528 hardcode_into_libs=yes 2529 dynamic_linker="$host_os dld.so" 2530 shlibpath_var=LD_LIBRARY_PATH 2531 shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. 2532 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' 2533 soname_spec='${libname}${release}${shared_ext}$major' 2534 if test "X$HPUX_IA64_MODE" = X32; then 2535 sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" 2536 else 2537 sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" 2538 fi 2539 sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec 2540 ;; 2541 hppa*64*) 2542 shrext_cmds='.sl' 2543 hardcode_into_libs=yes 2544 dynamic_linker="$host_os dld.sl" 2545 shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH 2546 shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. 2547 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' 2548 soname_spec='${libname}${release}${shared_ext}$major' 2549 sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" 2550 sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec 2551 ;; 2552 *) 2553 shrext_cmds='.sl' 2554 dynamic_linker="$host_os dld.sl" 2555 shlibpath_var=SHLIB_PATH 2556 shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH 2557 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' 2558 soname_spec='${libname}${release}${shared_ext}$major' 2559 ;; 2560 esac 2561 # HP-UX runs *really* slowly unless shared libraries are mode 555. 2562 postinstall_cmds='chmod 555 $lib' 2563 ;; 2564 2565interix3*) 2566 version_type=linux 2567 need_lib_prefix=no 2568 need_version=no 2569 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' 2570 soname_spec='${libname}${release}${shared_ext}$major' 2571 dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' 2572 shlibpath_var=LD_LIBRARY_PATH 2573 shlibpath_overrides_runpath=no 2574 hardcode_into_libs=yes 2575 ;; 2576 2577irix5* | irix6* | nonstopux*) 2578 case $host_os in 2579 nonstopux*) version_type=nonstopux ;; 2580 *) 2581 if test "$lt_cv_prog_gnu_ld" = yes; then 2582 version_type=linux 2583 else 2584 version_type=irix 2585 fi ;; 2586 esac 2587 need_lib_prefix=no 2588 need_version=no 2589 soname_spec='${libname}${release}${shared_ext}$major' 2590 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' 2591 case $host_os in 2592 irix5* | nonstopux*) 2593 libsuff= shlibsuff= 2594 ;; 2595 *) 2596 case $LD in # libtool.m4 will add one of these switches to LD 2597 *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") 2598 libsuff= shlibsuff= libmagic=32-bit;; 2599 *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") 2600 libsuff=32 shlibsuff=N32 libmagic=N32;; 2601 *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") 2602 libsuff=64 shlibsuff=64 libmagic=64-bit;; 2603 *) libsuff= shlibsuff= libmagic=never-match;; 2604 esac 2605 ;; 2606 esac 2607 shlibpath_var=LD_LIBRARY${shlibsuff}_PATH 2608 shlibpath_overrides_runpath=no 2609 sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" 2610 sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" 2611 hardcode_into_libs=yes 2612 ;; 2613 2614# No shared lib support for Linux oldld, aout, or coff. 2615linux*oldld* | linux*aout* | linux*coff*) 2616 dynamic_linker=no 2617 ;; 2618 2619# This must be Linux ELF. 2620linux*) 2621 version_type=linux 2622 need_lib_prefix=no 2623 need_version=no 2624 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' 2625 soname_spec='${libname}${release}${shared_ext}$major' 2626 finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' 2627 shlibpath_var=LD_LIBRARY_PATH 2628 shlibpath_overrides_runpath=no 2629 # This implies no fast_install, which is unacceptable. 2630 # Some rework will be needed to allow for fast_install 2631 # before this can be enabled. 2632 hardcode_into_libs=yes 2633 2634 # Append ld.so.conf contents to the search path 2635 if test -f /etc/ld.so.conf; then 2636 lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` 2637 sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" 2638 fi 2639 2640 # We used to test for /lib/ld.so.1 and disable shared libraries on 2641 # powerpc, because MkLinux only supported shared libraries with the 2642 # GNU dynamic linker. Since this was broken with cross compilers, 2643 # most powerpc-linux boxes support dynamic linking these days and 2644 # people can always --disable-shared, the test was removed, and we 2645 # assume the GNU/Linux dynamic linker is in use. 2646 dynamic_linker='GNU/Linux ld.so' 2647 ;; 2648 2649knetbsd*-gnu) 2650 version_type=linux 2651 need_lib_prefix=no 2652 need_version=no 2653 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' 2654 soname_spec='${libname}${release}${shared_ext}$major' 2655 shlibpath_var=LD_LIBRARY_PATH 2656 shlibpath_overrides_runpath=no 2657 hardcode_into_libs=yes 2658 dynamic_linker='GNU ld.so' 2659 ;; 2660 2661netbsd*) 2662 version_type=sunos 2663 need_lib_prefix=no 2664 need_version=no 2665 if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then 2666 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' 2667 finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' 2668 dynamic_linker='NetBSD (a.out) ld.so' 2669 else 2670 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' 2671 soname_spec='${libname}${release}${shared_ext}$major' 2672 dynamic_linker='NetBSD ld.elf_so' 2673 fi 2674 shlibpath_var=LD_LIBRARY_PATH 2675 shlibpath_overrides_runpath=yes 2676 hardcode_into_libs=yes 2677 ;; 2678 2679newsos6) 2680 version_type=linux 2681 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' 2682 shlibpath_var=LD_LIBRARY_PATH 2683 shlibpath_overrides_runpath=yes 2684 ;; 2685 2686nto-qnx*) 2687 version_type=linux 2688 need_lib_prefix=no 2689 need_version=no 2690 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' 2691 soname_spec='${libname}${release}${shared_ext}$major' 2692 shlibpath_var=LD_LIBRARY_PATH 2693 shlibpath_overrides_runpath=yes 2694 ;; 2695 2696openbsd*) 2697 version_type=sunos 2698 sys_lib_dlsearch_path_spec="/usr/lib" 2699 need_lib_prefix=no 2700 # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. 2701 case $host_os in 2702 openbsd3.3 | openbsd3.3.*) need_version=yes ;; 2703 *) need_version=no ;; 2704 esac 2705 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' 2706 finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' 2707 shlibpath_var=LD_LIBRARY_PATH 2708 if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then 2709 case $host_os in 2710 openbsd2.[[89]] | openbsd2.[[89]].*) 2711 shlibpath_overrides_runpath=no 2712 ;; 2713 *) 2714 shlibpath_overrides_runpath=yes 2715 ;; 2716 esac 2717 else 2718 shlibpath_overrides_runpath=yes 2719 fi 2720 ;; 2721 2722os2*) 2723 libname_spec='$name' 2724 shrext_cmds=".dll" 2725 need_lib_prefix=no 2726 library_names_spec='$libname${shared_ext} $libname.a' 2727 dynamic_linker='OS/2 ld.exe' 2728 shlibpath_var=LIBPATH 2729 ;; 2730 2731osf3* | osf4* | osf5*) 2732 version_type=osf 2733 need_lib_prefix=no 2734 need_version=no 2735 soname_spec='${libname}${release}${shared_ext}$major' 2736 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' 2737 shlibpath_var=LD_LIBRARY_PATH 2738 sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" 2739 sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" 2740 ;; 2741 2742solaris*) 2743 version_type=linux 2744 need_lib_prefix=no 2745 need_version=no 2746 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' 2747 soname_spec='${libname}${release}${shared_ext}$major' 2748 shlibpath_var=LD_LIBRARY_PATH 2749 shlibpath_overrides_runpath=yes 2750 hardcode_into_libs=yes 2751 # ldd complains unless libraries are executable 2752 postinstall_cmds='chmod +x $lib' 2753 ;; 2754 2755sunos4*) 2756 version_type=sunos 2757 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' 2758 finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' 2759 shlibpath_var=LD_LIBRARY_PATH 2760 shlibpath_overrides_runpath=yes 2761 if test "$with_gnu_ld" = yes; then 2762 need_lib_prefix=no 2763 fi 2764 need_version=yes 2765 ;; 2766 2767sysv4 | sysv4.3*) 2768 version_type=linux 2769 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' 2770 soname_spec='${libname}${release}${shared_ext}$major' 2771 shlibpath_var=LD_LIBRARY_PATH 2772 case $host_vendor in 2773 sni) 2774 shlibpath_overrides_runpath=no 2775 need_lib_prefix=no 2776 export_dynamic_flag_spec='${wl}-Blargedynsym' 2777 runpath_var=LD_RUN_PATH 2778 ;; 2779 siemens) 2780 need_lib_prefix=no 2781 ;; 2782 motorola) 2783 need_lib_prefix=no 2784 need_version=no 2785 shlibpath_overrides_runpath=no 2786 sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' 2787 ;; 2788 esac 2789 ;; 2790 2791sysv4*MP*) 2792 if test -d /usr/nec ;then 2793 version_type=linux 2794 library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' 2795 soname_spec='$libname${shared_ext}.$major' 2796 shlibpath_var=LD_LIBRARY_PATH 2797 fi 2798 ;; 2799 2800sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) 2801 version_type=freebsd-elf 2802 need_lib_prefix=no 2803 need_version=no 2804 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' 2805 soname_spec='${libname}${release}${shared_ext}$major' 2806 shlibpath_var=LD_LIBRARY_PATH 2807 hardcode_into_libs=yes 2808 if test "$with_gnu_ld" = yes; then 2809 sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' 2810 shlibpath_overrides_runpath=no 2811 else 2812 sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' 2813 shlibpath_overrides_runpath=yes 2814 case $host_os in 2815 sco3.2v5*) 2816 sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" 2817 ;; 2818 esac 2819 fi 2820 sys_lib_dlsearch_path_spec='/usr/lib' 2821 ;; 2822 2823uts4*) 2824 version_type=linux 2825 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' 2826 soname_spec='${libname}${release}${shared_ext}$major' 2827 shlibpath_var=LD_LIBRARY_PATH 2828 ;; 2829 2830*) 2831 dynamic_linker=no 2832 ;; 2833esac 2834AC_MSG_RESULT([$dynamic_linker]) 2835test "$dynamic_linker" = no && can_build_shared=no 2836 2837variables_saved_for_relink="PATH $shlibpath_var $runpath_var" 2838if test "$GCC" = yes; then 2839 variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" 2840fi 2841]) 2842m4trace:acinclude.m4:2391: -1- AC_DEFUN([_LT_AC_TAGCONFIG], [AC_ARG_WITH([tags], 2843 [AC_HELP_STRING([--with-tags@<:@=TAGS@:>@], 2844 [include additional configurations @<:@automatic@:>@])], 2845 [tagnames="$withval"]) 2846 2847if test -f "$ltmain" && test -n "$tagnames"; then 2848 if test ! -f "${ofile}"; then 2849 AC_MSG_WARN([output file `$ofile' does not exist]) 2850 fi 2851 2852 if test -z "$LTCC"; then 2853 eval "`$SHELL ${ofile} --config | grep '^LTCC='`" 2854 if test -z "$LTCC"; then 2855 AC_MSG_WARN([output file `$ofile' does not look like a libtool script]) 2856 else 2857 AC_MSG_WARN([using `LTCC=$LTCC', extracted from `$ofile']) 2858 fi 2859 fi 2860 if test -z "$LTCFLAGS"; then 2861 eval "`$SHELL ${ofile} --config | grep '^LTCFLAGS='`" 2862 fi 2863 2864 # Extract list of available tagged configurations in $ofile. 2865 # Note that this assumes the entire list is on one line. 2866 available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'` 2867 2868 lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," 2869 for tagname in $tagnames; do 2870 IFS="$lt_save_ifs" 2871 # Check whether tagname contains only valid characters 2872 case `$echo "X$tagname" | $Xsed -e 's:[[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]]::g'` in 2873 "") ;; 2874 *) AC_MSG_ERROR([invalid tag name: $tagname]) 2875 ;; 2876 esac 2877 2878 if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null 2879 then 2880 AC_MSG_ERROR([tag name \"$tagname\" already exists]) 2881 fi 2882 2883 # Update the list of available tags. 2884 if test -n "$tagname"; then 2885 echo appending configuration tag \"$tagname\" to $ofile 2886 2887 case $tagname in 2888 CXX) 2889 if test -n "$CXX" && ( test "X$CXX" != "Xno" && 2890 ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || 2891 (test "X$CXX" != "Xg++"))) ; then 2892 AC_LIBTOOL_LANG_CXX_CONFIG 2893 else 2894 tagname="" 2895 fi 2896 ;; 2897 2898 F77) 2899 if test -n "$F77" && test "X$F77" != "Xno"; then 2900 AC_LIBTOOL_LANG_F77_CONFIG 2901 else 2902 tagname="" 2903 fi 2904 ;; 2905 2906 GCJ) 2907 if test -n "$GCJ" && test "X$GCJ" != "Xno"; then 2908 AC_LIBTOOL_LANG_GCJ_CONFIG 2909 else 2910 tagname="" 2911 fi 2912 ;; 2913 2914 RC) 2915 AC_LIBTOOL_LANG_RC_CONFIG 2916 ;; 2917 2918 *) 2919 AC_MSG_ERROR([Unsupported tag name: $tagname]) 2920 ;; 2921 esac 2922 2923 # Append the new tag name to the list of available tags. 2924 if test -n "$tagname" ; then 2925 available_tags="$available_tags $tagname" 2926 fi 2927 fi 2928 done 2929 IFS="$lt_save_ifs" 2930 2931 # Now substitute the updated list of available tags. 2932 if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then 2933 mv "${ofile}T" "$ofile" 2934 chmod +x "$ofile" 2935 else 2936 rm -f "${ofile}T" 2937 AC_MSG_ERROR([unable to update list of available tagged configurations.]) 2938 fi 2939fi 2940]) 2941m4trace:acinclude.m4:2496: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP]) 2942]) 2943m4trace:acinclude.m4:2504: -1- AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_BEFORE([$0], [AC_LIBTOOL_SETUP]) 2944]) 2945m4trace:acinclude.m4:2513: -1- AC_DEFUN([AC_ENABLE_SHARED], [define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl 2946AC_ARG_ENABLE([shared], 2947 [AC_HELP_STRING([--enable-shared@<:@=PKGS@:>@], 2948 [build shared libraries @<:@default=]AC_ENABLE_SHARED_DEFAULT[@:>@])], 2949 [p=${PACKAGE-default} 2950 case $enableval in 2951 yes) enable_shared=yes ;; 2952 no) enable_shared=no ;; 2953 *) 2954 enable_shared=no 2955 # Look at the argument we got. We use all the common list separators. 2956 lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," 2957 for pkg in $enableval; do 2958 IFS="$lt_save_ifs" 2959 if test "X$pkg" = "X$p"; then 2960 enable_shared=yes 2961 fi 2962 done 2963 IFS="$lt_save_ifs" 2964 ;; 2965 esac], 2966 [enable_shared=]AC_ENABLE_SHARED_DEFAULT) 2967]) 2968m4trace:acinclude.m4:2542: -1- AC_DEFUN([AC_DISABLE_SHARED], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl 2969AC_ENABLE_SHARED(no) 2970]) 2971m4trace:acinclude.m4:2552: -1- AC_DEFUN([AC_ENABLE_STATIC], [define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl 2972AC_ARG_ENABLE([static], 2973 [AC_HELP_STRING([--enable-static@<:@=PKGS@:>@], 2974 [build static libraries @<:@default=]AC_ENABLE_STATIC_DEFAULT[@:>@])], 2975 [p=${PACKAGE-default} 2976 case $enableval in 2977 yes) enable_static=yes ;; 2978 no) enable_static=no ;; 2979 *) 2980 enable_static=no 2981 # Look at the argument we got. We use all the common list separators. 2982 lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," 2983 for pkg in $enableval; do 2984 IFS="$lt_save_ifs" 2985 if test "X$pkg" = "X$p"; then 2986 enable_static=yes 2987 fi 2988 done 2989 IFS="$lt_save_ifs" 2990 ;; 2991 esac], 2992 [enable_static=]AC_ENABLE_STATIC_DEFAULT) 2993]) 2994m4trace:acinclude.m4:2581: -1- AC_DEFUN([AC_DISABLE_STATIC], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl 2995AC_ENABLE_STATIC(no) 2996]) 2997m4trace:acinclude.m4:2591: -1- AC_DEFUN([AC_ENABLE_FAST_INSTALL], [define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl 2998AC_ARG_ENABLE([fast-install], 2999 [AC_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], 3000 [optimize for fast installation @<:@default=]AC_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], 3001 [p=${PACKAGE-default} 3002 case $enableval in 3003 yes) enable_fast_install=yes ;; 3004 no) enable_fast_install=no ;; 3005 *) 3006 enable_fast_install=no 3007 # Look at the argument we got. We use all the common list separators. 3008 lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," 3009 for pkg in $enableval; do 3010 IFS="$lt_save_ifs" 3011 if test "X$pkg" = "X$p"; then 3012 enable_fast_install=yes 3013 fi 3014 done 3015 IFS="$lt_save_ifs" 3016 ;; 3017 esac], 3018 [enable_fast_install=]AC_ENABLE_FAST_INSTALL_DEFAULT) 3019]) 3020m4trace:acinclude.m4:2620: -1- AC_DEFUN([AC_DISABLE_FAST_INSTALL], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl 3021AC_ENABLE_FAST_INSTALL(no) 3022]) 3023m4trace:acinclude.m4:2630: -1- AC_DEFUN([AC_LIBTOOL_PICMODE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl 3024pic_mode=ifelse($#,1,$1,default) 3025]) 3026m4trace:acinclude.m4:2654: -1- AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_REQUIRE([AC_PROG_EGREP])dnl 3027AC_MSG_CHECKING([for $1]) 3028AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, 3029[case $MAGIC_CMD in 3030[[\\/*] | ?:[\\/]*]) 3031 lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. 3032 ;; 3033*) 3034 lt_save_MAGIC_CMD="$MAGIC_CMD" 3035 lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR 3036dnl $ac_dummy forces splitting on constant user-supplied paths. 3037dnl POSIX.2 word splitting is done only on the output of word expansions, 3038dnl not every word. This closes a longstanding sh security hole. 3039 ac_dummy="ifelse([$2], , $PATH, [$2])" 3040 for ac_dir in $ac_dummy; do 3041 IFS="$lt_save_ifs" 3042 test -z "$ac_dir" && ac_dir=. 3043 if test -f $ac_dir/$1; then 3044 lt_cv_path_MAGIC_CMD="$ac_dir/$1" 3045 if test -n "$file_magic_test_file"; then 3046 case $deplibs_check_method in 3047 "file_magic "*) 3048 file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` 3049 MAGIC_CMD="$lt_cv_path_MAGIC_CMD" 3050 if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | 3051 $EGREP "$file_magic_regex" > /dev/null; then 3052 : 3053 else 3054 cat <<EOF 1>&2 3055 3056*** Warning: the command libtool uses to detect shared libraries, 3057*** $file_magic_cmd, produces output that libtool cannot recognize. 3058*** The result is that libtool may fail to recognize shared libraries 3059*** as such. This will affect the creation of libtool libraries that 3060*** depend on shared libraries, but programs linked with such libtool 3061*** libraries will work regardless of this problem. Nevertheless, you 3062*** may want to report the problem to your system manager and/or to 3063*** bug-libtool@gnu.org 3064 3065EOF 3066 fi ;; 3067 esac 3068 fi 3069 break 3070 fi 3071 done 3072 IFS="$lt_save_ifs" 3073 MAGIC_CMD="$lt_save_MAGIC_CMD" 3074 ;; 3075esac]) 3076MAGIC_CMD="$lt_cv_path_MAGIC_CMD" 3077if test -n "$MAGIC_CMD"; then 3078 AC_MSG_RESULT($MAGIC_CMD) 3079else 3080 AC_MSG_RESULT(no) 3081fi 3082]) 3083m4trace:acinclude.m4:2717: -1- AC_DEFUN([AC_PATH_MAGIC], [AC_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) 3084if test -z "$lt_cv_path_MAGIC_CMD"; then 3085 if test -n "$ac_tool_prefix"; then 3086 AC_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) 3087 else 3088 MAGIC_CMD=: 3089 fi 3090fi 3091]) 3092m4trace:acinclude.m4:2732: -1- AC_DEFUN([AC_PROG_LD], [AC_ARG_WITH([gnu-ld], 3093 [AC_HELP_STRING([--with-gnu-ld], 3094 [assume the C compiler uses GNU ld @<:@default=no@:>@])], 3095 [test "$withval" = no || with_gnu_ld=yes], 3096 [with_gnu_ld=no]) 3097AC_REQUIRE([LT_AC_PROG_SED])dnl 3098AC_REQUIRE([AC_PROG_CC])dnl 3099AC_REQUIRE([AC_CANONICAL_HOST])dnl 3100AC_REQUIRE([AC_CANONICAL_BUILD])dnl 3101ac_prog=ld 3102if test "$GCC" = yes; then 3103 # Check if gcc -print-prog-name=ld gives a path. 3104 AC_MSG_CHECKING([for ld used by $CC]) 3105 case $host in 3106 *-*-mingw*) 3107 # gcc leaves a trailing carriage return which upsets mingw 3108 ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; 3109 *) 3110 ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; 3111 esac 3112 case $ac_prog in 3113 # Accept absolute paths. 3114 [[\\/]]* | ?:[[\\/]]*) 3115 re_direlt='/[[^/]][[^/]]*/\.\./' 3116 # Canonicalize the pathname of ld 3117 ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'` 3118 while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do 3119 ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"` 3120 done 3121 test -z "$LD" && LD="$ac_prog" 3122 ;; 3123 "") 3124 # If it fails, then pretend we aren't using GCC. 3125 ac_prog=ld 3126 ;; 3127 *) 3128 # If it is relative, then search for the first ld in PATH. 3129 with_gnu_ld=unknown 3130 ;; 3131 esac 3132elif test "$with_gnu_ld" = yes; then 3133 AC_MSG_CHECKING([for GNU ld]) 3134else 3135 AC_MSG_CHECKING([for non-GNU ld]) 3136fi 3137AC_CACHE_VAL(lt_cv_path_LD, 3138[if test -z "$LD"; then 3139 lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR 3140 for ac_dir in $PATH; do 3141 IFS="$lt_save_ifs" 3142 test -z "$ac_dir" && ac_dir=. 3143 if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then 3144 lt_cv_path_LD="$ac_dir/$ac_prog" 3145 # Check to see if the program is GNU ld. I'd rather use --version, 3146 # but apparently some variants of GNU ld only accept -v. 3147 # Break only if it was the GNU/non-GNU ld that we prefer. 3148 case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in 3149 *GNU* | *'with BFD'*) 3150 test "$with_gnu_ld" != no && break 3151 ;; 3152 *) 3153 test "$with_gnu_ld" != yes && break 3154 ;; 3155 esac 3156 fi 3157 done 3158 IFS="$lt_save_ifs" 3159else 3160 lt_cv_path_LD="$LD" # Let the user override the test with a path. 3161fi]) 3162LD="$lt_cv_path_LD" 3163if test -n "$LD"; then 3164 AC_MSG_RESULT($LD) 3165else 3166 AC_MSG_RESULT(no) 3167fi 3168test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH]) 3169AC_PROG_LD_GNU 3170]) 3171m4trace:acinclude.m4:2816: -1- AC_DEFUN([AC_PROG_LD_GNU], [AC_REQUIRE([AC_PROG_EGREP])dnl 3172AC_CACHE_CHECK([if the linker ($LD) is GNU ld], lt_cv_prog_gnu_ld, 3173[# I'd rather use --version here, but apparently some GNU lds only accept -v. 3174case `$LD -v 2>&1 </dev/null` in 3175*GNU* | *'with BFD'*) 3176 lt_cv_prog_gnu_ld=yes 3177 ;; 3178*) 3179 lt_cv_prog_gnu_ld=no 3180 ;; 3181esac]) 3182with_gnu_ld=$lt_cv_prog_gnu_ld 3183]) 3184m4trace:acinclude.m4:2836: -1- AC_DEFUN([AC_PROG_LD_RELOAD_FLAG], [AC_CACHE_CHECK([for $LD option to reload object files], 3185 lt_cv_ld_reload_flag, 3186 [lt_cv_ld_reload_flag='-r']) 3187reload_flag=$lt_cv_ld_reload_flag 3188case $reload_flag in 3189"" | " "*) ;; 3190*) reload_flag=" $reload_flag" ;; 3191esac 3192reload_cmds='$LD$reload_flag -o $output$reload_objs' 3193case $host_os in 3194 darwin*) 3195 if test "$GCC" = yes; then 3196 reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' 3197 else 3198 reload_cmds='$LD$reload_flag -o $output$reload_objs' 3199 fi 3200 ;; 3201esac 3202]) 3203m4trace:acinclude.m4:2862: -1- AC_DEFUN([AC_DEPLIBS_CHECK_METHOD], [AC_CACHE_CHECK([how to recognise dependent libraries], 3204lt_cv_deplibs_check_method, 3205[lt_cv_file_magic_cmd='$MAGIC_CMD' 3206lt_cv_file_magic_test_file= 3207lt_cv_deplibs_check_method='unknown' 3208# Need to set the preceding variable on all platforms that support 3209# interlibrary dependencies. 3210# 'none' -- dependencies not supported. 3211# `unknown' -- same as none, but documents that we really don't know. 3212# 'pass_all' -- all dependencies passed with no checks. 3213# 'test_compile' -- check by making test program. 3214# 'file_magic [[regex]]' -- check by looking for files in library path 3215# which responds to the $file_magic_cmd with a given extended regex. 3216# If you have `file' or equivalent on your system and you're not sure 3217# whether `pass_all' will *always* work, you probably want this one. 3218 3219case $host_os in 3220aix4* | aix5*) 3221 lt_cv_deplibs_check_method=pass_all 3222 ;; 3223 3224beos*) 3225 lt_cv_deplibs_check_method=pass_all 3226 ;; 3227 3228bsdi[[45]]*) 3229 lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)' 3230 lt_cv_file_magic_cmd='/usr/bin/file -L' 3231 lt_cv_file_magic_test_file=/shlib/libc.so 3232 ;; 3233 3234cygwin*) 3235 # func_win32_libid is a shell function defined in ltmain.sh 3236 lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' 3237 lt_cv_file_magic_cmd='func_win32_libid' 3238 ;; 3239 3240mingw* | pw32*) 3241 # Base MSYS/MinGW do not provide the 'file' command needed by 3242 # func_win32_libid shell function, so use a weaker test based on 'objdump'. 3243 lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' 3244 lt_cv_file_magic_cmd='$OBJDUMP -f' 3245 ;; 3246 3247darwin* | rhapsody*) 3248 lt_cv_deplibs_check_method=pass_all 3249 ;; 3250 3251freebsd* | kfreebsd*-gnu | dragonfly*) 3252 if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then 3253 case $host_cpu in 3254 i*86 ) 3255 # Not sure whether the presence of OpenBSD here was a mistake. 3256 # Let's accept both of them until this is cleared up. 3257 lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' 3258 lt_cv_file_magic_cmd=/usr/bin/file 3259 lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` 3260 ;; 3261 esac 3262 else 3263 lt_cv_deplibs_check_method=pass_all 3264 fi 3265 ;; 3266 3267gnu*) 3268 lt_cv_deplibs_check_method=pass_all 3269 ;; 3270 3271hpux10.20* | hpux11*) 3272 lt_cv_file_magic_cmd=/usr/bin/file 3273 case $host_cpu in 3274 ia64*) 3275 lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' 3276 lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so 3277 ;; 3278 hppa*64*) 3279 [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]'] 3280 lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl 3281 ;; 3282 *) 3283 lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library' 3284 lt_cv_file_magic_test_file=/usr/lib/libc.sl 3285 ;; 3286 esac 3287 ;; 3288 3289interix3*) 3290 # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here 3291 lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' 3292 ;; 3293 3294irix5* | irix6* | nonstopux*) 3295 case $LD in 3296 *-32|*"-32 ") libmagic=32-bit;; 3297 *-n32|*"-n32 ") libmagic=N32;; 3298 *-64|*"-64 ") libmagic=64-bit;; 3299 *) libmagic=never-match;; 3300 esac 3301 lt_cv_deplibs_check_method=pass_all 3302 ;; 3303 3304# This must be Linux ELF. 3305linux*) 3306 lt_cv_deplibs_check_method=pass_all 3307 ;; 3308 3309netbsd*) 3310 if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then 3311 lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' 3312 else 3313 lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' 3314 fi 3315 ;; 3316 3317newos6*) 3318 lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' 3319 lt_cv_file_magic_cmd=/usr/bin/file 3320 lt_cv_file_magic_test_file=/usr/lib/libnls.so 3321 ;; 3322 3323nto-qnx*) 3324 lt_cv_deplibs_check_method=unknown 3325 ;; 3326 3327openbsd*) 3328 if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then 3329 lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' 3330 else 3331 lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' 3332 fi 3333 ;; 3334 3335osf3* | osf4* | osf5*) 3336 lt_cv_deplibs_check_method=pass_all 3337 ;; 3338 3339solaris*) 3340 lt_cv_deplibs_check_method=pass_all 3341 ;; 3342 3343sysv4 | sysv4.3*) 3344 case $host_vendor in 3345 motorola) 3346 lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' 3347 lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` 3348 ;; 3349 ncr) 3350 lt_cv_deplibs_check_method=pass_all 3351 ;; 3352 sequent) 3353 lt_cv_file_magic_cmd='/bin/file' 3354 lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' 3355 ;; 3356 sni) 3357 lt_cv_file_magic_cmd='/bin/file' 3358 lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" 3359 lt_cv_file_magic_test_file=/lib/libc.so 3360 ;; 3361 siemens) 3362 lt_cv_deplibs_check_method=pass_all 3363 ;; 3364 pc) 3365 lt_cv_deplibs_check_method=pass_all 3366 ;; 3367 esac 3368 ;; 3369 3370sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) 3371 lt_cv_deplibs_check_method=pass_all 3372 ;; 3373esac 3374]) 3375file_magic_cmd=$lt_cv_file_magic_cmd 3376deplibs_check_method=$lt_cv_deplibs_check_method 3377test -z "$deplibs_check_method" && deplibs_check_method=unknown 3378]) 3379m4trace:acinclude.m4:3044: -1- AC_DEFUN([AC_PROG_NM], [AC_CACHE_CHECK([for BSD-compatible nm], lt_cv_path_NM, 3380[if test -n "$NM"; then 3381 # Let the user override the test. 3382 lt_cv_path_NM="$NM" 3383else 3384 lt_nm_to_check="${ac_tool_prefix}nm" 3385 if test -n "$ac_tool_prefix" && test "$build" = "$host"; then 3386 lt_nm_to_check="$lt_nm_to_check nm" 3387 fi 3388 for lt_tmp_nm in $lt_nm_to_check; do 3389 lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR 3390 for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do 3391 IFS="$lt_save_ifs" 3392 test -z "$ac_dir" && ac_dir=. 3393 tmp_nm="$ac_dir/$lt_tmp_nm" 3394 if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then 3395 # Check to see if the nm accepts a BSD-compat flag. 3396 # Adding the `sed 1q' prevents false positives on HP-UX, which says: 3397 # nm: unknown option "B" ignored 3398 # Tru64's nm complains that /dev/null is an invalid object file 3399 case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in 3400 */dev/null* | *'Invalid file or object type'*) 3401 lt_cv_path_NM="$tmp_nm -B" 3402 break 3403 ;; 3404 *) 3405 case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in 3406 */dev/null*) 3407 lt_cv_path_NM="$tmp_nm -p" 3408 break 3409 ;; 3410 *) 3411 lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but 3412 continue # so that we can try to find one that supports BSD flags 3413 ;; 3414 esac 3415 ;; 3416 esac 3417 fi 3418 done 3419 IFS="$lt_save_ifs" 3420 done 3421 test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm 3422fi]) 3423NM="$lt_cv_path_NM" 3424]) 3425m4trace:acinclude.m4:3096: -1- AC_DEFUN([AC_CHECK_LIBM], [AC_REQUIRE([AC_CANONICAL_HOST])dnl 3426LIBM= 3427case $host in 3428*-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*) 3429 # These system don't have libm, or don't need it 3430 ;; 3431*-ncr-sysv4.3*) 3432 AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") 3433 AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") 3434 ;; 3435*) 3436 AC_CHECK_LIB(m, cos, LIBM="-lm") 3437 ;; 3438esac 3439]) 3440m4trace:acinclude.m4:3125: -1- AC_DEFUN([AC_LIBLTDL_CONVENIENCE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl 3441 case $enable_ltdl_convenience in 3442 no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;; 3443 "") enable_ltdl_convenience=yes 3444 ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;; 3445 esac 3446 LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdlc.la 3447 LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) 3448 # For backwards non-gettext consistent compatibility... 3449 INCLTDL="$LTDLINCL" 3450]) 3451m4trace:acinclude.m4:3151: -1- AC_DEFUN([AC_LIBLTDL_INSTALLABLE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl 3452 AC_CHECK_LIB(ltdl, lt_dlinit, 3453 [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no], 3454 [if test x"$enable_ltdl_install" = xno; then 3455 AC_MSG_WARN([libltdl not installed, but installation disabled]) 3456 else 3457 enable_ltdl_install=yes 3458 fi 3459 ]) 3460 if test x"$enable_ltdl_install" = x"yes"; then 3461 ac_configure_args="$ac_configure_args --enable-ltdl-install" 3462 LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdl.la 3463 LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) 3464 else 3465 ac_configure_args="$ac_configure_args --enable-ltdl-install=no" 3466 LIBLTDL="-lltdl" 3467 LTDLINCL= 3468 fi 3469 # For backwards non-gettext consistent compatibility... 3470 INCLTDL="$LTDLINCL" 3471]) 3472m4trace:acinclude.m4:3178: -1- AC_DEFUN([AC_LIBTOOL_CXX], [AC_REQUIRE([_LT_AC_LANG_CXX]) 3473]) 3474m4trace:acinclude.m4:3185: -1- AC_DEFUN([_LT_AC_LANG_CXX], [AC_REQUIRE([AC_PROG_CXX]) 3475AC_REQUIRE([_LT_AC_PROG_CXXCPP]) 3476_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX]) 3477]) 3478m4trace:acinclude.m4:3193: -1- AC_DEFUN([_LT_AC_PROG_CXXCPP], [ 3479AC_REQUIRE([AC_PROG_CXX]) 3480if test -n "$CXX" && ( test "X$CXX" != "Xno" && 3481 ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || 3482 (test "X$CXX" != "Xg++"))) ; then 3483 AC_PROG_CXXCPP 3484fi 3485]) 3486m4trace:acinclude.m4:3206: -1- AC_DEFUN([AC_LIBTOOL_F77], [AC_REQUIRE([_LT_AC_LANG_F77]) 3487]) 3488m4trace:acinclude.m4:3213: -1- AC_DEFUN([_LT_AC_LANG_F77], [AC_REQUIRE([AC_PROG_F77]) 3489_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}F77]) 3490]) 3491m4trace:acinclude.m4:3222: -1- AC_DEFUN([AC_LIBTOOL_GCJ], [AC_REQUIRE([_LT_AC_LANG_GCJ]) 3492]) 3493m4trace:acinclude.m4:3229: -1- AC_DEFUN([_LT_AC_LANG_GCJ], [AC_PROVIDE_IFELSE([AC_PROG_GCJ],[], 3494 [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],[], 3495 [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],[], 3496 [ifdef([AC_PROG_GCJ],[AC_REQUIRE([AC_PROG_GCJ])], 3497 [ifdef([A][M_PROG_GCJ],[AC_REQUIRE([A][M_PROG_GCJ])], 3498 [AC_REQUIRE([A][C_PROG_GCJ_OR_A][M_PROG_GCJ])])])])])]) 3499_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}GCJ]) 3500]) 3501m4trace:acinclude.m4:3243: -1- AC_DEFUN([AC_LIBTOOL_RC], [AC_REQUIRE([LT_AC_PROG_RC]) 3502_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}RC]) 3503]) 3504m4trace:acinclude.m4:3254: -1- AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG], [_LT_AC_LANG_C_CONFIG]) 3505m4trace:acinclude.m4:3255: -1- AC_DEFUN([_LT_AC_LANG_C_CONFIG], [lt_save_CC="$CC" 3506AC_LANG_PUSH(C) 3507 3508# Source file extension for C test sources. 3509ac_ext=c 3510 3511# Object file extension for compiled C test sources. 3512objext=o 3513_LT_AC_TAGVAR(objext, $1)=$objext 3514 3515# Code to be used in simple compile tests 3516lt_simple_compile_test_code="int some_variable = 0;\n" 3517 3518# Code to be used in simple link tests 3519lt_simple_link_test_code='int main(){return(0);}\n' 3520 3521_LT_AC_SYS_COMPILER 3522 3523# save warnings/boilerplate of simple test code 3524_LT_COMPILER_BOILERPLATE 3525_LT_LINKER_BOILERPLATE 3526 3527## CAVEAT EMPTOR: 3528## There is no encapsulation within the following macros, do not change 3529## the running order or otherwise move them around unless you know exactly 3530## what you are doing... 3531AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1) 3532AC_LIBTOOL_PROG_COMPILER_PIC($1) 3533AC_LIBTOOL_PROG_CC_C_O($1) 3534AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) 3535AC_LIBTOOL_PROG_LD_SHLIBS($1) 3536AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) 3537AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) 3538AC_LIBTOOL_SYS_LIB_STRIP 3539AC_LIBTOOL_DLOPEN_SELF 3540 3541# Report which library types will actually be built 3542AC_MSG_CHECKING([if libtool supports shared libraries]) 3543AC_MSG_RESULT([$can_build_shared]) 3544 3545AC_MSG_CHECKING([whether to build shared libraries]) 3546test "$can_build_shared" = "no" && enable_shared=no 3547 3548# On AIX, shared libraries and static libraries use the same namespace, and 3549# are all built from PIC. 3550case $host_os in 3551aix3*) 3552 test "$enable_shared" = yes && enable_static=no 3553 if test -n "$RANLIB"; then 3554 archive_cmds="$archive_cmds~\$RANLIB \$lib" 3555 postinstall_cmds='$RANLIB $lib' 3556 fi 3557 ;; 3558 3559aix4* | aix5*) 3560 if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then 3561 test "$enable_shared" = yes && enable_static=no 3562 fi 3563 ;; 3564esac 3565AC_MSG_RESULT([$enable_shared]) 3566 3567AC_MSG_CHECKING([whether to build static libraries]) 3568# Make sure either enable_shared or enable_static is yes. 3569test "$enable_shared" = yes || enable_static=yes 3570AC_MSG_RESULT([$enable_static]) 3571 3572AC_LIBTOOL_CONFIG($1) 3573 3574AC_LANG_POP 3575CC="$lt_save_CC" 3576]) 3577m4trace:acinclude.m4:3335: -1- AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG], [_LT_AC_LANG_CXX_CONFIG(CXX)]) 3578m4trace:acinclude.m4:3336: -1- AC_DEFUN([_LT_AC_LANG_CXX_CONFIG], [AC_LANG_PUSH(C++) 3579AC_REQUIRE([AC_PROG_CXX]) 3580AC_REQUIRE([_LT_AC_PROG_CXXCPP]) 3581 3582_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no 3583_LT_AC_TAGVAR(allow_undefined_flag, $1)= 3584_LT_AC_TAGVAR(always_export_symbols, $1)=no 3585_LT_AC_TAGVAR(archive_expsym_cmds, $1)= 3586_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= 3587_LT_AC_TAGVAR(hardcode_direct, $1)=no 3588_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= 3589_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= 3590_LT_AC_TAGVAR(hardcode_libdir_separator, $1)= 3591_LT_AC_TAGVAR(hardcode_minus_L, $1)=no 3592_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported 3593_LT_AC_TAGVAR(hardcode_automatic, $1)=no 3594_LT_AC_TAGVAR(module_cmds, $1)= 3595_LT_AC_TAGVAR(module_expsym_cmds, $1)= 3596_LT_AC_TAGVAR(link_all_deplibs, $1)=unknown 3597_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds 3598_LT_AC_TAGVAR(no_undefined_flag, $1)= 3599_LT_AC_TAGVAR(whole_archive_flag_spec, $1)= 3600_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no 3601 3602# Dependencies to place before and after the object being linked: 3603_LT_AC_TAGVAR(predep_objects, $1)= 3604_LT_AC_TAGVAR(postdep_objects, $1)= 3605_LT_AC_TAGVAR(predeps, $1)= 3606_LT_AC_TAGVAR(postdeps, $1)= 3607_LT_AC_TAGVAR(compiler_lib_search_path, $1)= 3608 3609# Source file extension for C++ test sources. 3610ac_ext=cpp 3611 3612# Object file extension for compiled C++ test sources. 3613objext=o 3614_LT_AC_TAGVAR(objext, $1)=$objext 3615 3616# Code to be used in simple compile tests 3617lt_simple_compile_test_code="int some_variable = 0;\n" 3618 3619# Code to be used in simple link tests 3620lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }\n' 3621 3622# ltmain only uses $CC for tagged configurations so make sure $CC is set. 3623_LT_AC_SYS_COMPILER 3624 3625# save warnings/boilerplate of simple test code 3626_LT_COMPILER_BOILERPLATE 3627_LT_LINKER_BOILERPLATE 3628 3629# Allow CC to be a program name with arguments. 3630lt_save_CC=$CC 3631lt_save_LD=$LD 3632lt_save_GCC=$GCC 3633GCC=$GXX 3634lt_save_with_gnu_ld=$with_gnu_ld 3635lt_save_path_LD=$lt_cv_path_LD 3636if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then 3637 lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx 3638else 3639 $as_unset lt_cv_prog_gnu_ld 3640fi 3641if test -n "${lt_cv_path_LDCXX+set}"; then 3642 lt_cv_path_LD=$lt_cv_path_LDCXX 3643else 3644 $as_unset lt_cv_path_LD 3645fi 3646test -z "${LDCXX+set}" || LD=$LDCXX 3647CC=${CXX-"c++"} 3648compiler=$CC 3649_LT_AC_TAGVAR(compiler, $1)=$CC 3650_LT_CC_BASENAME([$compiler]) 3651 3652# We don't want -fno-exception wen compiling C++ code, so set the 3653# no_builtin_flag separately 3654if test "$GXX" = yes; then 3655 _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' 3656else 3657 _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= 3658fi 3659 3660if test "$GXX" = yes; then 3661 # Set up default GNU C++ configuration 3662 3663 AC_PROG_LD 3664 3665 # Check if GNU C++ uses GNU ld as the underlying linker, since the 3666 # archiving commands below assume that GNU ld is being used. 3667 if test "$with_gnu_ld" = yes; then 3668 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' 3669 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' 3670 3671 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' 3672 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' 3673 3674 # If archive_cmds runs LD, not CC, wlarc should be empty 3675 # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to 3676 # investigate it a little bit more. (MM) 3677 wlarc='${wl}' 3678 3679 # ancient GNU ld didn't support --whole-archive et. al. 3680 if eval "`$CC -print-prog-name=ld` --help 2>&1" | \ 3681 grep 'no-whole-archive' > /dev/null; then 3682 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' 3683 else 3684 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= 3685 fi 3686 else 3687 with_gnu_ld=no 3688 wlarc= 3689 3690 # A generic and very simple default shared library creation 3691 # command for GNU C++ for the case where it uses the native 3692 # linker, instead of GNU ld. If possible, this setting should 3693 # overridden to take advantage of the native linker features on 3694 # the platform it is being used on. 3695 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' 3696 fi 3697 3698 # Commands to make compiler produce verbose output that lists 3699 # what "hidden" libraries, object files and flags are used when 3700 # linking a shared library. 3701 output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' 3702 3703else 3704 GXX=no 3705 with_gnu_ld=no 3706 wlarc= 3707fi 3708 3709# PORTME: fill in a description of your system's C++ link characteristics 3710AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) 3711_LT_AC_TAGVAR(ld_shlibs, $1)=yes 3712case $host_os in 3713 aix3*) 3714 # FIXME: insert proper C++ library support 3715 _LT_AC_TAGVAR(ld_shlibs, $1)=no 3716 ;; 3717 aix4* | aix5*) 3718 if test "$host_cpu" = ia64; then 3719 # On IA64, the linker does run time linking by default, so we don't 3720 # have to do anything special. 3721 aix_use_runtimelinking=no 3722 exp_sym_flag='-Bexport' 3723 no_entry_flag="" 3724 else 3725 aix_use_runtimelinking=no 3726 3727 # Test if we are trying to use run time linking or normal 3728 # AIX style linking. If -brtl is somewhere in LDFLAGS, we 3729 # need to do runtime linking. 3730 case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*) 3731 for ld_flag in $LDFLAGS; do 3732 case $ld_flag in 3733 *-brtl*) 3734 aix_use_runtimelinking=yes 3735 break 3736 ;; 3737 esac 3738 done 3739 ;; 3740 esac 3741 3742 exp_sym_flag='-bexport' 3743 no_entry_flag='-bnoentry' 3744 fi 3745 3746 # When large executables or shared objects are built, AIX ld can 3747 # have problems creating the table of contents. If linking a library 3748 # or program results in "error TOC overflow" add -mminimal-toc to 3749 # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not 3750 # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. 3751 3752 _LT_AC_TAGVAR(archive_cmds, $1)='' 3753 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 3754 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' 3755 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes 3756 3757 if test "$GXX" = yes; then 3758 case $host_os in aix4.[[012]]|aix4.[[012]].*) 3759 # We only want to do this on AIX 4.2 and lower, the check 3760 # below for broken collect2 doesn't work under 4.3+ 3761 collect2name=`${CC} -print-prog-name=collect2` 3762 if test -f "$collect2name" && \ 3763 strings "$collect2name" | grep resolve_lib_name >/dev/null 3764 then 3765 # We have reworked collect2 3766 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 3767 else 3768 # We have old collect2 3769 _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported 3770 # It fails to find uninstalled libraries when the uninstalled 3771 # path is not listed in the libpath. Setting hardcode_minus_L 3772 # to unsupported forces relinking 3773 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes 3774 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' 3775 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= 3776 fi 3777 ;; 3778 esac 3779 shared_flag='-shared' 3780 if test "$aix_use_runtimelinking" = yes; then 3781 shared_flag="$shared_flag "'${wl}-G' 3782 fi 3783 else 3784 # not using gcc 3785 if test "$host_cpu" = ia64; then 3786 # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release 3787 # chokes on -Wl,-G. The following line is correct: 3788 shared_flag='-G' 3789 else 3790 if test "$aix_use_runtimelinking" = yes; then 3791 shared_flag='${wl}-G' 3792 else 3793 shared_flag='${wl}-bM:SRE' 3794 fi 3795 fi 3796 fi 3797 3798 # It seems that -bexpall does not export symbols beginning with 3799 # underscore (_), so it is better to generate a list of symbols to export. 3800 _LT_AC_TAGVAR(always_export_symbols, $1)=yes 3801 if test "$aix_use_runtimelinking" = yes; then 3802 # Warning - without using the other runtime loading flags (-brtl), 3803 # -berok will link without error, but may produce a broken library. 3804 _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' 3805 # Determine the default libpath from the value encoded in an empty executable. 3806 _LT_AC_SYS_LIBPATH_AIX 3807 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" 3808 3809 _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" 3810 else 3811 if test "$host_cpu" = ia64; then 3812 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' 3813 _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" 3814 _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" 3815 else 3816 # Determine the default libpath from the value encoded in an empty executable. 3817 _LT_AC_SYS_LIBPATH_AIX 3818 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" 3819 # Warning - without using the other run time loading flags, 3820 # -berok will link without error, but may produce a broken library. 3821 _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' 3822 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' 3823 # Exported symbols can be pulled into shared objects from archives 3824 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience' 3825 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes 3826 # This is similar to how AIX traditionally builds its shared libraries. 3827 _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' 3828 fi 3829 fi 3830 ;; 3831 3832 beos*) 3833 if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then 3834 _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported 3835 # Joseph Beckenbach <jrb3@best.com> says some releases of gcc 3836 # support --undefined. This deserves some investigation. FIXME 3837 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' 3838 else 3839 _LT_AC_TAGVAR(ld_shlibs, $1)=no 3840 fi 3841 ;; 3842 3843 chorus*) 3844 case $cc_basename in 3845 *) 3846 # FIXME: insert proper C++ library support 3847 _LT_AC_TAGVAR(ld_shlibs, $1)=no 3848 ;; 3849 esac 3850 ;; 3851 3852 cygwin* | mingw* | pw32*) 3853 # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, 3854 # as there is no search path for DLLs. 3855 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' 3856 _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported 3857 _LT_AC_TAGVAR(always_export_symbols, $1)=no 3858 _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes 3859 3860 if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then 3861 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' 3862 # If the export-symbols file already is a .def file (1st line 3863 # is EXPORTS), use it as is; otherwise, prepend... 3864 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then 3865 cp $export_symbols $output_objdir/$soname.def; 3866 else 3867 echo EXPORTS > $output_objdir/$soname.def; 3868 cat $export_symbols >> $output_objdir/$soname.def; 3869 fi~ 3870 $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' 3871 else 3872 _LT_AC_TAGVAR(ld_shlibs, $1)=no 3873 fi 3874 ;; 3875 darwin* | rhapsody*) 3876 case $host_os in 3877 rhapsody* | darwin1.[[012]]) 3878 _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress' 3879 ;; 3880 *) # Darwin 1.3 on 3881 if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then 3882 _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' 3883 else 3884 case ${MACOSX_DEPLOYMENT_TARGET} in 3885 10.[[012]]) 3886 _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' 3887 ;; 3888 10.*) 3889 _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup' 3890 ;; 3891 esac 3892 fi 3893 ;; 3894 esac 3895 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no 3896 _LT_AC_TAGVAR(hardcode_direct, $1)=no 3897 _LT_AC_TAGVAR(hardcode_automatic, $1)=yes 3898 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported 3899 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' 3900 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes 3901 3902 if test "$GXX" = yes ; then 3903 lt_int_apple_cc_single_mod=no 3904 output_verbose_link_cmd='echo' 3905 if $CC -dumpspecs 2>&1 | $EGREP 'single_module' >/dev/null ; then 3906 lt_int_apple_cc_single_mod=yes 3907 fi 3908 if test "X$lt_int_apple_cc_single_mod" = Xyes ; then 3909 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' 3910 else 3911 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring' 3912 fi 3913 _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' 3914 # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds 3915 if test "X$lt_int_apple_cc_single_mod" = Xyes ; then 3916 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' 3917 else 3918 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' 3919 fi 3920 _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' 3921 else 3922 case $cc_basename in 3923 xlc*) 3924 output_verbose_link_cmd='echo' 3925 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' 3926 _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' 3927 # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds 3928 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' 3929 _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' 3930 ;; 3931 *) 3932 _LT_AC_TAGVAR(ld_shlibs, $1)=no 3933 ;; 3934 esac 3935 fi 3936 ;; 3937 3938 dgux*) 3939 case $cc_basename in 3940 ec++*) 3941 # FIXME: insert proper C++ library support 3942 _LT_AC_TAGVAR(ld_shlibs, $1)=no 3943 ;; 3944 ghcx*) 3945 # Green Hills C++ Compiler 3946 # FIXME: insert proper C++ library support 3947 _LT_AC_TAGVAR(ld_shlibs, $1)=no 3948 ;; 3949 *) 3950 # FIXME: insert proper C++ library support 3951 _LT_AC_TAGVAR(ld_shlibs, $1)=no 3952 ;; 3953 esac 3954 ;; 3955 freebsd[[12]]*) 3956 # C++ shared libraries reported to be fairly broken before switch to ELF 3957 _LT_AC_TAGVAR(ld_shlibs, $1)=no 3958 ;; 3959 freebsd-elf*) 3960 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no 3961 ;; 3962 freebsd* | kfreebsd*-gnu | dragonfly*) 3963 # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF 3964 # conventions 3965 _LT_AC_TAGVAR(ld_shlibs, $1)=yes 3966 ;; 3967 gnu*) 3968 ;; 3969 hpux9*) 3970 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' 3971 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 3972 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' 3973 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 3974 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, 3975 # but as the default 3976 # location of the library. 3977 3978 case $cc_basename in 3979 CC*) 3980 # FIXME: insert proper C++ library support 3981 _LT_AC_TAGVAR(ld_shlibs, $1)=no 3982 ;; 3983 aCC*) 3984 _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' 3985 # Commands to make compiler produce verbose output that lists 3986 # what "hidden" libraries, object files and flags are used when 3987 # linking a shared library. 3988 # 3989 # There doesn't appear to be a way to prevent this compiler from 3990 # explicitly linking system object files so we need to strip them 3991 # from the output so that they don't get included in the library 3992 # dependencies. 3993 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' 3994 ;; 3995 *) 3996 if test "$GXX" = yes; then 3997 _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' 3998 else 3999 # FIXME: insert proper C++ library support 4000 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4001 fi 4002 ;; 4003 esac 4004 ;; 4005 hpux10*|hpux11*) 4006 if test $with_gnu_ld = no; then 4007 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' 4008 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 4009 4010 case $host_cpu in 4011 hppa*64*|ia64*) 4012 _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' 4013 ;; 4014 *) 4015 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' 4016 ;; 4017 esac 4018 fi 4019 case $host_cpu in 4020 hppa*64*|ia64*) 4021 _LT_AC_TAGVAR(hardcode_direct, $1)=no 4022 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 4023 ;; 4024 *) 4025 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 4026 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, 4027 # but as the default 4028 # location of the library. 4029 ;; 4030 esac 4031 4032 case $cc_basename in 4033 CC*) 4034 # FIXME: insert proper C++ library support 4035 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4036 ;; 4037 aCC*) 4038 case $host_cpu in 4039 hppa*64*) 4040 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' 4041 ;; 4042 ia64*) 4043 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' 4044 ;; 4045 *) 4046 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' 4047 ;; 4048 esac 4049 # Commands to make compiler produce verbose output that lists 4050 # what "hidden" libraries, object files and flags are used when 4051 # linking a shared library. 4052 # 4053 # There doesn't appear to be a way to prevent this compiler from 4054 # explicitly linking system object files so we need to strip them 4055 # from the output so that they don't get included in the library 4056 # dependencies. 4057 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' 4058 ;; 4059 *) 4060 if test "$GXX" = yes; then 4061 if test $with_gnu_ld = no; then 4062 case $host_cpu in 4063 hppa*64*) 4064 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' 4065 ;; 4066 ia64*) 4067 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' 4068 ;; 4069 *) 4070 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' 4071 ;; 4072 esac 4073 fi 4074 else 4075 # FIXME: insert proper C++ library support 4076 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4077 fi 4078 ;; 4079 esac 4080 ;; 4081 interix3*) 4082 _LT_AC_TAGVAR(hardcode_direct, $1)=no 4083 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 4084 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' 4085 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' 4086 # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. 4087 # Instead, shared libraries are loaded at an image base (0x10000000 by 4088 # default) and relocated if they conflict, which is a slow very memory 4089 # consuming and fragmenting process. To avoid this, we pick a random, 4090 # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link 4091 # time. Moving up from 0x10000000 also allows more sbrk(2) space. 4092 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' 4093 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' 4094 ;; 4095 irix5* | irix6*) 4096 case $cc_basename in 4097 CC*) 4098 # SGI C++ 4099 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' 4100 4101 # Archives containing C++ object files must be created using 4102 # "CC -ar", where "CC" is the IRIX C++ compiler. This is 4103 # necessary to make sure instantiated templates are included 4104 # in the archive. 4105 _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' 4106 ;; 4107 *) 4108 if test "$GXX" = yes; then 4109 if test "$with_gnu_ld" = no; then 4110 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' 4111 else 4112 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib' 4113 fi 4114 fi 4115 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes 4116 ;; 4117 esac 4118 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' 4119 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 4120 ;; 4121 linux*) 4122 case $cc_basename in 4123 KCC*) 4124 # Kuck and Associates, Inc. (KAI) C++ Compiler 4125 4126 # KCC will only create a shared library if the output file 4127 # ends with ".so" (or ".sl" for HP-UX), so rename the library 4128 # to its proper name (with version) after linking. 4129 _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' 4130 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' 4131 # Commands to make compiler produce verbose output that lists 4132 # what "hidden" libraries, object files and flags are used when 4133 # linking a shared library. 4134 # 4135 # There doesn't appear to be a way to prevent this compiler from 4136 # explicitly linking system object files so we need to strip them 4137 # from the output so that they don't get included in the library 4138 # dependencies. 4139 output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | grep "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' 4140 4141 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath,$libdir' 4142 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' 4143 4144 # Archives containing C++ object files must be created using 4145 # "CC -Bstatic", where "CC" is the KAI C++ compiler. 4146 _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' 4147 ;; 4148 icpc*) 4149 # Intel C++ 4150 with_gnu_ld=yes 4151 # version 8.0 and above of icpc choke on multiply defined symbols 4152 # if we add $predep_objects and $postdep_objects, however 7.1 and 4153 # earlier do not add the objects themselves. 4154 case `$CC -V 2>&1` in 4155 *"Version 7."*) 4156 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' 4157 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' 4158 ;; 4159 *) # Version 8.0 or newer 4160 tmp_idyn= 4161 case $host_cpu in 4162 ia64*) tmp_idyn=' -i_dynamic';; 4163 esac 4164 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' 4165 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' 4166 ;; 4167 esac 4168 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no 4169 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' 4170 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' 4171 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' 4172 ;; 4173 pgCC*) 4174 # Portland Group C++ compiler 4175 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' 4176 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' 4177 4178 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' 4179 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' 4180 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' 4181 ;; 4182 cxx*) 4183 # Compaq C++ 4184 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' 4185 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' 4186 4187 runpath_var=LD_RUN_PATH 4188 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' 4189 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 4190 4191 # Commands to make compiler produce verbose output that lists 4192 # what "hidden" libraries, object files and flags are used when 4193 # linking a shared library. 4194 # 4195 # There doesn't appear to be a way to prevent this compiler from 4196 # explicitly linking system object files so we need to strip them 4197 # from the output so that they don't get included in the library 4198 # dependencies. 4199 output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' 4200 ;; 4201 esac 4202 ;; 4203 lynxos*) 4204 # FIXME: insert proper C++ library support 4205 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4206 ;; 4207 m88k*) 4208 # FIXME: insert proper C++ library support 4209 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4210 ;; 4211 mvs*) 4212 case $cc_basename in 4213 cxx*) 4214 # FIXME: insert proper C++ library support 4215 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4216 ;; 4217 *) 4218 # FIXME: insert proper C++ library support 4219 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4220 ;; 4221 esac 4222 ;; 4223 netbsd*) 4224 if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then 4225 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' 4226 wlarc= 4227 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' 4228 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 4229 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 4230 fi 4231 # Workaround some broken pre-1.5 toolchains 4232 output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' 4233 ;; 4234 openbsd2*) 4235 # C++ shared libraries are fairly broken 4236 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4237 ;; 4238 openbsd*) 4239 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 4240 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 4241 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' 4242 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' 4243 if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then 4244 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' 4245 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' 4246 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' 4247 fi 4248 output_verbose_link_cmd='echo' 4249 ;; 4250 osf3*) 4251 case $cc_basename in 4252 KCC*) 4253 # Kuck and Associates, Inc. (KAI) C++ Compiler 4254 4255 # KCC will only create a shared library if the output file 4256 # ends with ".so" (or ".sl" for HP-UX), so rename the library 4257 # to its proper name (with version) after linking. 4258 _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' 4259 4260 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' 4261 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 4262 4263 # Archives containing C++ object files must be created using 4264 # "CC -Bstatic", where "CC" is the KAI C++ compiler. 4265 _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' 4266 4267 ;; 4268 RCC*) 4269 # Rational C++ 2.4.1 4270 # FIXME: insert proper C++ library support 4271 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4272 ;; 4273 cxx*) 4274 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' 4275 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' 4276 4277 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' 4278 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 4279 4280 # Commands to make compiler produce verbose output that lists 4281 # what "hidden" libraries, object files and flags are used when 4282 # linking a shared library. 4283 # 4284 # There doesn't appear to be a way to prevent this compiler from 4285 # explicitly linking system object files so we need to strip them 4286 # from the output so that they don't get included in the library 4287 # dependencies. 4288 output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' 4289 ;; 4290 *) 4291 if test "$GXX" = yes && test "$with_gnu_ld" = no; then 4292 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' 4293 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' 4294 4295 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' 4296 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 4297 4298 # Commands to make compiler produce verbose output that lists 4299 # what "hidden" libraries, object files and flags are used when 4300 # linking a shared library. 4301 output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' 4302 4303 else 4304 # FIXME: insert proper C++ library support 4305 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4306 fi 4307 ;; 4308 esac 4309 ;; 4310 osf4* | osf5*) 4311 case $cc_basename in 4312 KCC*) 4313 # Kuck and Associates, Inc. (KAI) C++ Compiler 4314 4315 # KCC will only create a shared library if the output file 4316 # ends with ".so" (or ".sl" for HP-UX), so rename the library 4317 # to its proper name (with version) after linking. 4318 _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' 4319 4320 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' 4321 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 4322 4323 # Archives containing C++ object files must be created using 4324 # the KAI C++ compiler. 4325 _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' 4326 ;; 4327 RCC*) 4328 # Rational C++ 2.4.1 4329 # FIXME: insert proper C++ library support 4330 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4331 ;; 4332 cxx*) 4333 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' 4334 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' 4335 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ 4336 echo "-hidden">> $lib.exp~ 4337 $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~ 4338 $rm $lib.exp' 4339 4340 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' 4341 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 4342 4343 # Commands to make compiler produce verbose output that lists 4344 # what "hidden" libraries, object files and flags are used when 4345 # linking a shared library. 4346 # 4347 # There doesn't appear to be a way to prevent this compiler from 4348 # explicitly linking system object files so we need to strip them 4349 # from the output so that they don't get included in the library 4350 # dependencies. 4351 output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' 4352 ;; 4353 *) 4354 if test "$GXX" = yes && test "$with_gnu_ld" = no; then 4355 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' 4356 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' 4357 4358 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' 4359 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 4360 4361 # Commands to make compiler produce verbose output that lists 4362 # what "hidden" libraries, object files and flags are used when 4363 # linking a shared library. 4364 output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' 4365 4366 else 4367 # FIXME: insert proper C++ library support 4368 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4369 fi 4370 ;; 4371 esac 4372 ;; 4373 psos*) 4374 # FIXME: insert proper C++ library support 4375 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4376 ;; 4377 sunos4*) 4378 case $cc_basename in 4379 CC*) 4380 # Sun C++ 4.x 4381 # FIXME: insert proper C++ library support 4382 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4383 ;; 4384 lcc*) 4385 # Lucid 4386 # FIXME: insert proper C++ library support 4387 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4388 ;; 4389 *) 4390 # FIXME: insert proper C++ library support 4391 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4392 ;; 4393 esac 4394 ;; 4395 solaris*) 4396 case $cc_basename in 4397 CC*) 4398 # Sun C++ 4.2, 5.x and Centerline C++ 4399 _LT_AC_TAGVAR(archive_cmds_need_lc,$1)=yes 4400 _LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs' 4401 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' 4402 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ 4403 $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' 4404 4405 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' 4406 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 4407 case $host_os in 4408 solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; 4409 *) 4410 # The C++ compiler is used as linker so we must use $wl 4411 # flag to pass the commands to the underlying system 4412 # linker. We must also pass each convience library through 4413 # to the system linker between allextract/defaultextract. 4414 # The C++ compiler will combine linker options so we 4415 # cannot just pass the convience library names through 4416 # without $wl. 4417 # Supported since Solaris 2.6 (maybe 2.5.1?) 4418 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' 4419 ;; 4420 esac 4421 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes 4422 4423 output_verbose_link_cmd='echo' 4424 4425 # Archives containing C++ object files must be created using 4426 # "CC -xar", where "CC" is the Sun C++ compiler. This is 4427 # necessary to make sure instantiated templates are included 4428 # in the archive. 4429 _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' 4430 ;; 4431 gcx*) 4432 # Green Hills C++ Compiler 4433 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' 4434 4435 # The C++ compiler must be used to create the archive. 4436 _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' 4437 ;; 4438 *) 4439 # GNU C++ compiler with Solaris linker 4440 if test "$GXX" = yes && test "$with_gnu_ld" = no; then 4441 _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' 4442 if $CC --version | grep -v '^2\.7' > /dev/null; then 4443 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' 4444 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ 4445 $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' 4446 4447 # Commands to make compiler produce verbose output that lists 4448 # what "hidden" libraries, object files and flags are used when 4449 # linking a shared library. 4450 output_verbose_link_cmd="$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" 4451 else 4452 # g++ 2.7 appears to require `-G' NOT `-shared' on this 4453 # platform. 4454 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' 4455 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ 4456 $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' 4457 4458 # Commands to make compiler produce verbose output that lists 4459 # what "hidden" libraries, object files and flags are used when 4460 # linking a shared library. 4461 output_verbose_link_cmd="$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" 4462 fi 4463 4464 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' 4465 fi 4466 ;; 4467 esac 4468 ;; 4469 sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) 4470 _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' 4471 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no 4472 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 4473 runpath_var='LD_RUN_PATH' 4474 4475 case $cc_basename in 4476 CC*) 4477 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' 4478 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' 4479 ;; 4480 *) 4481 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' 4482 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' 4483 ;; 4484 esac 4485 ;; 4486 sysv5* | sco3.2v5* | sco5v6*) 4487 # Note: We can NOT use -z defs as we might desire, because we do not 4488 # link with -lc, and that would cause any symbols used from libc to 4489 # always be unresolved, which means just about no library would 4490 # ever link correctly. If we're not using GNU ld we use -z text 4491 # though, which does catch some bad symbols but isn't as heavy-handed 4492 # as -z defs. 4493 # For security reasons, it is highly recommended that you always 4494 # use absolute paths for naming shared libraries, and exclude the 4495 # DT_RUNPATH tag from executables and libraries. But doing so 4496 # requires that you compile everything twice, which is a pain. 4497 # So that behaviour is only enabled if SCOABSPATH is set to a 4498 # non-empty value in the environment. Most likely only useful for 4499 # creating official distributions of packages. 4500 # This is a hack until libtool officially supports absolute path 4501 # names for shared libraries. 4502 _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' 4503 _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' 4504 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no 4505 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 4506 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' 4507 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' 4508 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes 4509 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' 4510 runpath_var='LD_RUN_PATH' 4511 4512 case $cc_basename in 4513 CC*) 4514 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' 4515 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' 4516 ;; 4517 *) 4518 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' 4519 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' 4520 ;; 4521 esac 4522 ;; 4523 tandem*) 4524 case $cc_basename in 4525 NCC*) 4526 # NonStop-UX NCC 3.20 4527 # FIXME: insert proper C++ library support 4528 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4529 ;; 4530 *) 4531 # FIXME: insert proper C++ library support 4532 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4533 ;; 4534 esac 4535 ;; 4536 vxworks*) 4537 # FIXME: insert proper C++ library support 4538 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4539 ;; 4540 *) 4541 # FIXME: insert proper C++ library support 4542 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4543 ;; 4544esac 4545AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) 4546test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no 4547 4548_LT_AC_TAGVAR(GCC, $1)="$GXX" 4549_LT_AC_TAGVAR(LD, $1)="$LD" 4550 4551## CAVEAT EMPTOR: 4552## There is no encapsulation within the following macros, do not change 4553## the running order or otherwise move them around unless you know exactly 4554## what you are doing... 4555AC_LIBTOOL_POSTDEP_PREDEP($1) 4556AC_LIBTOOL_PROG_COMPILER_PIC($1) 4557AC_LIBTOOL_PROG_CC_C_O($1) 4558AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) 4559AC_LIBTOOL_PROG_LD_SHLIBS($1) 4560AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) 4561AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) 4562 4563AC_LIBTOOL_CONFIG($1) 4564 4565AC_LANG_POP 4566CC=$lt_save_CC 4567LDCXX=$LD 4568LD=$lt_save_LD 4569GCC=$lt_save_GCC 4570with_gnu_ldcxx=$with_gnu_ld 4571with_gnu_ld=$lt_save_with_gnu_ld 4572lt_cv_path_LDCXX=$lt_cv_path_LD 4573lt_cv_path_LD=$lt_save_path_LD 4574lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld 4575lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld 4576]) 4577m4trace:acinclude.m4:4343: -1- AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP], [ 4578dnl we can't use the lt_simple_compile_test_code here, 4579dnl because it contains code intended for an executable, 4580dnl not a library. It's possible we should let each 4581dnl tag define a new lt_????_link_test_code variable, 4582dnl but it's only used here... 4583ifelse([$1],[],[cat > conftest.$ac_ext <<EOF 4584int a; 4585void foo (void) { a = 0; } 4586EOF 4587],[$1],[CXX],[cat > conftest.$ac_ext <<EOF 4588class Foo 4589{ 4590public: 4591 Foo (void) { a = 0; } 4592private: 4593 int a; 4594}; 4595EOF 4596],[$1],[F77],[cat > conftest.$ac_ext <<EOF 4597 subroutine foo 4598 implicit none 4599 integer*4 a 4600 a=0 4601 return 4602 end 4603EOF 4604],[$1],[GCJ],[cat > conftest.$ac_ext <<EOF 4605public class foo { 4606 private int a; 4607 public void bar (void) { 4608 a = 0; 4609 } 4610}; 4611EOF 4612]) 4613dnl Parse the compiler output and extract the necessary 4614dnl objects, libraries and library flags. 4615if AC_TRY_EVAL(ac_compile); then 4616 # Parse the compiler output and extract the necessary 4617 # objects, libraries and library flags. 4618 4619 # Sentinel used to keep track of whether or not we are before 4620 # the conftest object file. 4621 pre_test_object_deps_done=no 4622 4623 # The `*' in the case matches for architectures that use `case' in 4624 # $output_verbose_cmd can trigger glob expansion during the loop 4625 # eval without this substitution. 4626 output_verbose_link_cmd=`$echo "X$output_verbose_link_cmd" | $Xsed -e "$no_glob_subst"` 4627 4628 for p in `eval $output_verbose_link_cmd`; do 4629 case $p in 4630 4631 -L* | -R* | -l*) 4632 # Some compilers place space between "-{L,R}" and the path. 4633 # Remove the space. 4634 if test $p = "-L" \ 4635 || test $p = "-R"; then 4636 prev=$p 4637 continue 4638 else 4639 prev= 4640 fi 4641 4642 if test "$pre_test_object_deps_done" = no; then 4643 case $p in 4644 -L* | -R*) 4645 # Internal compiler library paths should come after those 4646 # provided the user. The postdeps already come after the 4647 # user supplied libs so there is no need to process them. 4648 if test -z "$_LT_AC_TAGVAR(compiler_lib_search_path, $1)"; then 4649 _LT_AC_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}" 4650 else 4651 _LT_AC_TAGVAR(compiler_lib_search_path, $1)="${_LT_AC_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}" 4652 fi 4653 ;; 4654 # The "-l" case would never come before the object being 4655 # linked, so don't bother handling this case. 4656 esac 4657 else 4658 if test -z "$_LT_AC_TAGVAR(postdeps, $1)"; then 4659 _LT_AC_TAGVAR(postdeps, $1)="${prev}${p}" 4660 else 4661 _LT_AC_TAGVAR(postdeps, $1)="${_LT_AC_TAGVAR(postdeps, $1)} ${prev}${p}" 4662 fi 4663 fi 4664 ;; 4665 4666 *.$objext) 4667 # This assumes that the test object file only shows up 4668 # once in the compiler output. 4669 if test "$p" = "conftest.$objext"; then 4670 pre_test_object_deps_done=yes 4671 continue 4672 fi 4673 4674 if test "$pre_test_object_deps_done" = no; then 4675 if test -z "$_LT_AC_TAGVAR(predep_objects, $1)"; then 4676 _LT_AC_TAGVAR(predep_objects, $1)="$p" 4677 else 4678 _LT_AC_TAGVAR(predep_objects, $1)="$_LT_AC_TAGVAR(predep_objects, $1) $p" 4679 fi 4680 else 4681 if test -z "$_LT_AC_TAGVAR(postdep_objects, $1)"; then 4682 _LT_AC_TAGVAR(postdep_objects, $1)="$p" 4683 else 4684 _LT_AC_TAGVAR(postdep_objects, $1)="$_LT_AC_TAGVAR(postdep_objects, $1) $p" 4685 fi 4686 fi 4687 ;; 4688 4689 *) ;; # Ignore the rest. 4690 4691 esac 4692 done 4693 4694 # Clean up. 4695 rm -f a.out a.exe 4696else 4697 echo "libtool.m4: error: problem compiling $1 test program" 4698fi 4699 4700$rm -f confest.$objext 4701 4702# PORTME: override above test on systems where it is broken 4703ifelse([$1],[CXX], 4704[case $host_os in 4705interix3*) 4706 # Interix 3.5 installs completely hosed .la files for C++, so rather than 4707 # hack all around it, let's just trust "g++" to DTRT. 4708 _LT_AC_TAGVAR(predep_objects,$1)= 4709 _LT_AC_TAGVAR(postdep_objects,$1)= 4710 _LT_AC_TAGVAR(postdeps,$1)= 4711 ;; 4712 4713solaris*) 4714 case $cc_basename in 4715 CC*) 4716 # Adding this requires a known-good setup of shared libraries for 4717 # Sun compiler versions before 5.6, else PIC objects from an old 4718 # archive will be linked into the output, leading to subtle bugs. 4719 _LT_AC_TAGVAR(postdeps,$1)='-lCstd -lCrun' 4720 ;; 4721 esac 4722 ;; 4723esac 4724]) 4725 4726case " $_LT_AC_TAGVAR(postdeps, $1) " in 4727*" -lc "*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ;; 4728esac 4729]) 4730m4trace:acinclude.m4:4502: -1- AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG], [_LT_AC_LANG_F77_CONFIG(F77)]) 4731m4trace:acinclude.m4:4503: -1- AC_DEFUN([_LT_AC_LANG_F77_CONFIG], [AC_REQUIRE([AC_PROG_F77]) 4732AC_LANG_PUSH(Fortran 77) 4733 4734_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no 4735_LT_AC_TAGVAR(allow_undefined_flag, $1)= 4736_LT_AC_TAGVAR(always_export_symbols, $1)=no 4737_LT_AC_TAGVAR(archive_expsym_cmds, $1)= 4738_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= 4739_LT_AC_TAGVAR(hardcode_direct, $1)=no 4740_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= 4741_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= 4742_LT_AC_TAGVAR(hardcode_libdir_separator, $1)= 4743_LT_AC_TAGVAR(hardcode_minus_L, $1)=no 4744_LT_AC_TAGVAR(hardcode_automatic, $1)=no 4745_LT_AC_TAGVAR(module_cmds, $1)= 4746_LT_AC_TAGVAR(module_expsym_cmds, $1)= 4747_LT_AC_TAGVAR(link_all_deplibs, $1)=unknown 4748_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds 4749_LT_AC_TAGVAR(no_undefined_flag, $1)= 4750_LT_AC_TAGVAR(whole_archive_flag_spec, $1)= 4751_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no 4752 4753# Source file extension for f77 test sources. 4754ac_ext=f 4755 4756# Object file extension for compiled f77 test sources. 4757objext=o 4758_LT_AC_TAGVAR(objext, $1)=$objext 4759 4760# Code to be used in simple compile tests 4761lt_simple_compile_test_code=" subroutine t\n return\n end\n" 4762 4763# Code to be used in simple link tests 4764lt_simple_link_test_code=" program t\n end\n" 4765 4766# ltmain only uses $CC for tagged configurations so make sure $CC is set. 4767_LT_AC_SYS_COMPILER 4768 4769# save warnings/boilerplate of simple test code 4770_LT_COMPILER_BOILERPLATE 4771_LT_LINKER_BOILERPLATE 4772 4773# Allow CC to be a program name with arguments. 4774lt_save_CC="$CC" 4775CC=${F77-"f77"} 4776compiler=$CC 4777_LT_AC_TAGVAR(compiler, $1)=$CC 4778_LT_CC_BASENAME([$compiler]) 4779 4780AC_MSG_CHECKING([if libtool supports shared libraries]) 4781AC_MSG_RESULT([$can_build_shared]) 4782 4783AC_MSG_CHECKING([whether to build shared libraries]) 4784test "$can_build_shared" = "no" && enable_shared=no 4785 4786# On AIX, shared libraries and static libraries use the same namespace, and 4787# are all built from PIC. 4788case $host_os in 4789aix3*) 4790 test "$enable_shared" = yes && enable_static=no 4791 if test -n "$RANLIB"; then 4792 archive_cmds="$archive_cmds~\$RANLIB \$lib" 4793 postinstall_cmds='$RANLIB $lib' 4794 fi 4795 ;; 4796aix4* | aix5*) 4797 if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then 4798 test "$enable_shared" = yes && enable_static=no 4799 fi 4800 ;; 4801esac 4802AC_MSG_RESULT([$enable_shared]) 4803 4804AC_MSG_CHECKING([whether to build static libraries]) 4805# Make sure either enable_shared or enable_static is yes. 4806test "$enable_shared" = yes || enable_static=yes 4807AC_MSG_RESULT([$enable_static]) 4808 4809_LT_AC_TAGVAR(GCC, $1)="$G77" 4810_LT_AC_TAGVAR(LD, $1)="$LD" 4811 4812AC_LIBTOOL_PROG_COMPILER_PIC($1) 4813AC_LIBTOOL_PROG_CC_C_O($1) 4814AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) 4815AC_LIBTOOL_PROG_LD_SHLIBS($1) 4816AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) 4817AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) 4818 4819AC_LIBTOOL_CONFIG($1) 4820 4821AC_LANG_POP 4822CC="$lt_save_CC" 4823]) 4824m4trace:acinclude.m4:4604: -1- AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG], [_LT_AC_LANG_GCJ_CONFIG(GCJ)]) 4825m4trace:acinclude.m4:4605: -1- AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG], [AC_LANG_SAVE 4826 4827# Source file extension for Java test sources. 4828ac_ext=java 4829 4830# Object file extension for compiled Java test sources. 4831objext=o 4832_LT_AC_TAGVAR(objext, $1)=$objext 4833 4834# Code to be used in simple compile tests 4835lt_simple_compile_test_code="class foo {}\n" 4836 4837# Code to be used in simple link tests 4838lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }\n' 4839 4840# ltmain only uses $CC for tagged configurations so make sure $CC is set. 4841_LT_AC_SYS_COMPILER 4842 4843# save warnings/boilerplate of simple test code 4844_LT_COMPILER_BOILERPLATE 4845_LT_LINKER_BOILERPLATE 4846 4847# Allow CC to be a program name with arguments. 4848lt_save_CC="$CC" 4849CC=${GCJ-"gcj"} 4850compiler=$CC 4851_LT_AC_TAGVAR(compiler, $1)=$CC 4852_LT_CC_BASENAME([$compiler]) 4853 4854# GCJ did not exist at the time GCC didn't implicitly link libc in. 4855_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no 4856 4857_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds 4858 4859## CAVEAT EMPTOR: 4860## There is no encapsulation within the following macros, do not change 4861## the running order or otherwise move them around unless you know exactly 4862## what you are doing... 4863AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1) 4864AC_LIBTOOL_PROG_COMPILER_PIC($1) 4865AC_LIBTOOL_PROG_CC_C_O($1) 4866AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) 4867AC_LIBTOOL_PROG_LD_SHLIBS($1) 4868AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) 4869AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) 4870 4871AC_LIBTOOL_CONFIG($1) 4872 4873AC_LANG_RESTORE 4874CC="$lt_save_CC" 4875]) 4876m4trace:acinclude.m4:4664: -1- AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG], [_LT_AC_LANG_RC_CONFIG(RC)]) 4877m4trace:acinclude.m4:4665: -1- AC_DEFUN([_LT_AC_LANG_RC_CONFIG], [AC_LANG_SAVE 4878 4879# Source file extension for RC test sources. 4880ac_ext=rc 4881 4882# Object file extension for compiled RC test sources. 4883objext=o 4884_LT_AC_TAGVAR(objext, $1)=$objext 4885 4886# Code to be used in simple compile tests 4887lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }\n' 4888 4889# Code to be used in simple link tests 4890lt_simple_link_test_code="$lt_simple_compile_test_code" 4891 4892# ltmain only uses $CC for tagged configurations so make sure $CC is set. 4893_LT_AC_SYS_COMPILER 4894 4895# save warnings/boilerplate of simple test code 4896_LT_COMPILER_BOILERPLATE 4897_LT_LINKER_BOILERPLATE 4898 4899# Allow CC to be a program name with arguments. 4900lt_save_CC="$CC" 4901CC=${RC-"windres"} 4902compiler=$CC 4903_LT_AC_TAGVAR(compiler, $1)=$CC 4904_LT_CC_BASENAME([$compiler]) 4905_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes 4906 4907AC_LIBTOOL_CONFIG($1) 4908 4909AC_LANG_RESTORE 4910CC="$lt_save_CC" 4911]) 4912m4trace:acinclude.m4:4709: -1- AC_DEFUN([AC_LIBTOOL_CONFIG], [# The else clause should only fire when bootstrapping the 4913# libtool distribution, otherwise you forgot to ship ltmain.sh 4914# with your package, and you will get complaints that there are 4915# no rules to generate ltmain.sh. 4916if test -f "$ltmain"; then 4917 # See if we are running on zsh, and set the options which allow our commands through 4918 # without removal of \ escapes. 4919 if test -n "${ZSH_VERSION+set}" ; then 4920 setopt NO_GLOB_SUBST 4921 fi 4922 # Now quote all the things that may contain metacharacters while being 4923 # careful not to overquote the AC_SUBSTed values. We take copies of the 4924 # variables and quote the copies for generation of the libtool script. 4925 for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ 4926 SED SHELL STRIP \ 4927 libname_spec library_names_spec soname_spec extract_expsyms_cmds \ 4928 old_striplib striplib file_magic_cmd finish_cmds finish_eval \ 4929 deplibs_check_method reload_flag reload_cmds need_locks \ 4930 lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ 4931 lt_cv_sys_global_symbol_to_c_name_address \ 4932 sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ 4933 old_postinstall_cmds old_postuninstall_cmds \ 4934 _LT_AC_TAGVAR(compiler, $1) \ 4935 _LT_AC_TAGVAR(CC, $1) \ 4936 _LT_AC_TAGVAR(LD, $1) \ 4937 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1) \ 4938 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1) \ 4939 _LT_AC_TAGVAR(lt_prog_compiler_static, $1) \ 4940 _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) \ 4941 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1) \ 4942 _LT_AC_TAGVAR(thread_safe_flag_spec, $1) \ 4943 _LT_AC_TAGVAR(whole_archive_flag_spec, $1) \ 4944 _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) \ 4945 _LT_AC_TAGVAR(old_archive_cmds, $1) \ 4946 _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) \ 4947 _LT_AC_TAGVAR(predep_objects, $1) \ 4948 _LT_AC_TAGVAR(postdep_objects, $1) \ 4949 _LT_AC_TAGVAR(predeps, $1) \ 4950 _LT_AC_TAGVAR(postdeps, $1) \ 4951 _LT_AC_TAGVAR(compiler_lib_search_path, $1) \ 4952 _LT_AC_TAGVAR(archive_cmds, $1) \ 4953 _LT_AC_TAGVAR(archive_expsym_cmds, $1) \ 4954 _LT_AC_TAGVAR(postinstall_cmds, $1) \ 4955 _LT_AC_TAGVAR(postuninstall_cmds, $1) \ 4956 _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) \ 4957 _LT_AC_TAGVAR(allow_undefined_flag, $1) \ 4958 _LT_AC_TAGVAR(no_undefined_flag, $1) \ 4959 _LT_AC_TAGVAR(export_symbols_cmds, $1) \ 4960 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) \ 4961 _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) \ 4962 _LT_AC_TAGVAR(hardcode_libdir_separator, $1) \ 4963 _LT_AC_TAGVAR(hardcode_automatic, $1) \ 4964 _LT_AC_TAGVAR(module_cmds, $1) \ 4965 _LT_AC_TAGVAR(module_expsym_cmds, $1) \ 4966 _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) \ 4967 _LT_AC_TAGVAR(exclude_expsyms, $1) \ 4968 _LT_AC_TAGVAR(include_expsyms, $1); do 4969 4970 case $var in 4971 _LT_AC_TAGVAR(old_archive_cmds, $1) | \ 4972 _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) | \ 4973 _LT_AC_TAGVAR(archive_cmds, $1) | \ 4974 _LT_AC_TAGVAR(archive_expsym_cmds, $1) | \ 4975 _LT_AC_TAGVAR(module_cmds, $1) | \ 4976 _LT_AC_TAGVAR(module_expsym_cmds, $1) | \ 4977 _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) | \ 4978 _LT_AC_TAGVAR(export_symbols_cmds, $1) | \ 4979 extract_expsyms_cmds | reload_cmds | finish_cmds | \ 4980 postinstall_cmds | postuninstall_cmds | \ 4981 old_postinstall_cmds | old_postuninstall_cmds | \ 4982 sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) 4983 # Double-quote double-evaled strings. 4984 eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" 4985 ;; 4986 *) 4987 eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" 4988 ;; 4989 esac 4990 done 4991 4992 case $lt_echo in 4993 *'\[$]0 --fallback-echo"') 4994 lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\[$]0 --fallback-echo"[$]/[$]0 --fallback-echo"/'` 4995 ;; 4996 esac 4997 4998ifelse([$1], [], 4999 [cfgfile="${ofile}T" 5000 trap "$rm \"$cfgfile\"; exit 1" 1 2 15 5001 $rm -f "$cfgfile" 5002 AC_MSG_NOTICE([creating $ofile])], 5003 [cfgfile="$ofile"]) 5004 5005 cat <<__EOF__ >> "$cfgfile" 5006ifelse([$1], [], 5007[#! $SHELL 5008 5009# `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services. 5010# Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) 5011# NOTE: Changes made to this file will be lost: look at ltmain.sh. 5012# 5013# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 5014# Free Software Foundation, Inc. 5015# 5016# This file is part of GNU Libtool: 5017# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996 5018# 5019# This program is free software; you can redistribute it and/or modify 5020# it under the terms of the GNU General Public License as published by 5021# the Free Software Foundation; either version 2 of the License, or 5022# (at your option) any later version. 5023# 5024# This program is distributed in the hope that it will be useful, but 5025# WITHOUT ANY WARRANTY; without even the implied warranty of 5026# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 5027# General Public License for more details. 5028# 5029# You should have received a copy of the GNU General Public License 5030# along with this program; if not, write to the Free Software 5031# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 5032# 5033# As a special exception to the GNU General Public License, if you 5034# distribute this file as part of a program that contains a 5035# configuration script generated by Autoconf, you may include it under 5036# the same distribution terms that you use for the rest of that program. 5037 5038# A sed program that does not truncate output. 5039SED=$lt_SED 5040 5041# Sed that helps us avoid accidentally triggering echo(1) options like -n. 5042Xsed="$SED -e 1s/^X//" 5043 5044# The HP-UX ksh and POSIX shell print the target directory to stdout 5045# if CDPATH is set. 5046(unset CDPATH) >/dev/null 2>&1 && unset CDPATH 5047 5048# The names of the tagged configurations supported by this script. 5049available_tags= 5050 5051# ### BEGIN LIBTOOL CONFIG], 5052[# ### BEGIN LIBTOOL TAG CONFIG: $tagname]) 5053 5054# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: 5055 5056# Shell to use when invoking shell scripts. 5057SHELL=$lt_SHELL 5058 5059# Whether or not to build shared libraries. 5060build_libtool_libs=$enable_shared 5061 5062# Whether or not to build static libraries. 5063build_old_libs=$enable_static 5064 5065# Whether or not to add -lc for building shared libraries. 5066build_libtool_need_lc=$_LT_AC_TAGVAR(archive_cmds_need_lc, $1) 5067 5068# Whether or not to disallow shared libs when runtime libs are static 5069allow_libtool_libs_with_static_runtimes=$_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) 5070 5071# Whether or not to optimize for fast installation. 5072fast_install=$enable_fast_install 5073 5074# The host system. 5075host_alias=$host_alias 5076host=$host 5077host_os=$host_os 5078 5079# The build system. 5080build_alias=$build_alias 5081build=$build 5082build_os=$build_os 5083 5084# An echo program that does not interpret backslashes. 5085echo=$lt_echo 5086 5087# The archiver. 5088AR=$lt_AR 5089AR_FLAGS=$lt_AR_FLAGS 5090 5091# A C compiler. 5092LTCC=$lt_LTCC 5093 5094# LTCC compiler flags. 5095LTCFLAGS=$lt_LTCFLAGS 5096 5097# A language-specific compiler. 5098CC=$lt_[]_LT_AC_TAGVAR(compiler, $1) 5099 5100# Is the compiler the GNU C compiler? 5101with_gcc=$_LT_AC_TAGVAR(GCC, $1) 5102 5103# An ERE matcher. 5104EGREP=$lt_EGREP 5105 5106# The linker used to build libraries. 5107LD=$lt_[]_LT_AC_TAGVAR(LD, $1) 5108 5109# Whether we need hard or soft links. 5110LN_S=$lt_LN_S 5111 5112# A BSD-compatible nm program. 5113NM=$lt_NM 5114 5115# A symbol stripping program 5116STRIP=$lt_STRIP 5117 5118# Used to examine libraries when file_magic_cmd begins "file" 5119MAGIC_CMD=$MAGIC_CMD 5120 5121# Used on cygwin: DLL creation program. 5122DLLTOOL="$DLLTOOL" 5123 5124# Used on cygwin: object dumper. 5125OBJDUMP="$OBJDUMP" 5126 5127# Used on cygwin: assembler. 5128AS="$AS" 5129 5130# The name of the directory that contains temporary libtool files. 5131objdir=$objdir 5132 5133# How to create reloadable object files. 5134reload_flag=$lt_reload_flag 5135reload_cmds=$lt_reload_cmds 5136 5137# How to pass a linker flag through the compiler. 5138wl=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) 5139 5140# Object file suffix (normally "o"). 5141objext="$ac_objext" 5142 5143# Old archive suffix (normally "a"). 5144libext="$libext" 5145 5146# Shared library suffix (normally ".so"). 5147shrext_cmds='$shrext_cmds' 5148 5149# Executable file suffix (normally ""). 5150exeext="$exeext" 5151 5152# Additional compiler flags for building library objects. 5153pic_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) 5154pic_mode=$pic_mode 5155 5156# What is the maximum length of a command? 5157max_cmd_len=$lt_cv_sys_max_cmd_len 5158 5159# Does compiler simultaneously support -c and -o options? 5160compiler_c_o=$lt_[]_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) 5161 5162# Must we lock files when doing compilation? 5163need_locks=$lt_need_locks 5164 5165# Do we need the lib prefix for modules? 5166need_lib_prefix=$need_lib_prefix 5167 5168# Do we need a version for libraries? 5169need_version=$need_version 5170 5171# Whether dlopen is supported. 5172dlopen_support=$enable_dlopen 5173 5174# Whether dlopen of programs is supported. 5175dlopen_self=$enable_dlopen_self 5176 5177# Whether dlopen of statically linked programs is supported. 5178dlopen_self_static=$enable_dlopen_self_static 5179 5180# Compiler flag to prevent dynamic linking. 5181link_static_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_static, $1) 5182 5183# Compiler flag to turn off builtin functions. 5184no_builtin_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) 5185 5186# Compiler flag to allow reflexive dlopens. 5187export_dynamic_flag_spec=$lt_[]_LT_AC_TAGVAR(export_dynamic_flag_spec, $1) 5188 5189# Compiler flag to generate shared objects directly from archives. 5190whole_archive_flag_spec=$lt_[]_LT_AC_TAGVAR(whole_archive_flag_spec, $1) 5191 5192# Compiler flag to generate thread-safe objects. 5193thread_safe_flag_spec=$lt_[]_LT_AC_TAGVAR(thread_safe_flag_spec, $1) 5194 5195# Library versioning type. 5196version_type=$version_type 5197 5198# Format of library name prefix. 5199libname_spec=$lt_libname_spec 5200 5201# List of archive names. First name is the real one, the rest are links. 5202# The last name is the one that the linker finds with -lNAME. 5203library_names_spec=$lt_library_names_spec 5204 5205# The coded name of the library, if different from the real name. 5206soname_spec=$lt_soname_spec 5207 5208# Commands used to build and install an old-style archive. 5209RANLIB=$lt_RANLIB 5210old_archive_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_cmds, $1) 5211old_postinstall_cmds=$lt_old_postinstall_cmds 5212old_postuninstall_cmds=$lt_old_postuninstall_cmds 5213 5214# Create an old-style archive from a shared archive. 5215old_archive_from_new_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_new_cmds, $1) 5216 5217# Create a temporary old-style archive to link instead of a shared archive. 5218old_archive_from_expsyms_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) 5219 5220# Commands used to build and install a shared archive. 5221archive_cmds=$lt_[]_LT_AC_TAGVAR(archive_cmds, $1) 5222archive_expsym_cmds=$lt_[]_LT_AC_TAGVAR(archive_expsym_cmds, $1) 5223postinstall_cmds=$lt_postinstall_cmds 5224postuninstall_cmds=$lt_postuninstall_cmds 5225 5226# Commands used to build a loadable module (assumed same as above if empty) 5227module_cmds=$lt_[]_LT_AC_TAGVAR(module_cmds, $1) 5228module_expsym_cmds=$lt_[]_LT_AC_TAGVAR(module_expsym_cmds, $1) 5229 5230# Commands to strip libraries. 5231old_striplib=$lt_old_striplib 5232striplib=$lt_striplib 5233 5234# Dependencies to place before the objects being linked to create a 5235# shared library. 5236predep_objects=$lt_[]_LT_AC_TAGVAR(predep_objects, $1) 5237 5238# Dependencies to place after the objects being linked to create a 5239# shared library. 5240postdep_objects=$lt_[]_LT_AC_TAGVAR(postdep_objects, $1) 5241 5242# Dependencies to place before the objects being linked to create a 5243# shared library. 5244predeps=$lt_[]_LT_AC_TAGVAR(predeps, $1) 5245 5246# Dependencies to place after the objects being linked to create a 5247# shared library. 5248postdeps=$lt_[]_LT_AC_TAGVAR(postdeps, $1) 5249 5250# The library search path used internally by the compiler when linking 5251# a shared library. 5252compiler_lib_search_path=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1) 5253 5254# Method to check whether dependent libraries are shared objects. 5255deplibs_check_method=$lt_deplibs_check_method 5256 5257# Command to use when deplibs_check_method == file_magic. 5258file_magic_cmd=$lt_file_magic_cmd 5259 5260# Flag that allows shared libraries with undefined symbols to be built. 5261allow_undefined_flag=$lt_[]_LT_AC_TAGVAR(allow_undefined_flag, $1) 5262 5263# Flag that forces no undefined symbols. 5264no_undefined_flag=$lt_[]_LT_AC_TAGVAR(no_undefined_flag, $1) 5265 5266# Commands used to finish a libtool library installation in a directory. 5267finish_cmds=$lt_finish_cmds 5268 5269# Same as above, but a single script fragment to be evaled but not shown. 5270finish_eval=$lt_finish_eval 5271 5272# Take the output of nm and produce a listing of raw symbols and C names. 5273global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe 5274 5275# Transform the output of nm in a proper C declaration 5276global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl 5277 5278# Transform the output of nm in a C name address pair 5279global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address 5280 5281# This is the shared library runtime path variable. 5282runpath_var=$runpath_var 5283 5284# This is the shared library path variable. 5285shlibpath_var=$shlibpath_var 5286 5287# Is shlibpath searched before the hard-coded library search path? 5288shlibpath_overrides_runpath=$shlibpath_overrides_runpath 5289 5290# How to hardcode a shared library path into an executable. 5291hardcode_action=$_LT_AC_TAGVAR(hardcode_action, $1) 5292 5293# Whether we should hardcode library paths into libraries. 5294hardcode_into_libs=$hardcode_into_libs 5295 5296# Flag to hardcode \$libdir into a binary during linking. 5297# This must work even if \$libdir does not exist. 5298hardcode_libdir_flag_spec=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) 5299 5300# If ld is used when linking, flag to hardcode \$libdir into 5301# a binary during linking. This must work even if \$libdir does 5302# not exist. 5303hardcode_libdir_flag_spec_ld=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) 5304 5305# Whether we need a single -rpath flag with a separated argument. 5306hardcode_libdir_separator=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_separator, $1) 5307 5308# Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the 5309# resulting binary. 5310hardcode_direct=$_LT_AC_TAGVAR(hardcode_direct, $1) 5311 5312# Set to yes if using the -LDIR flag during linking hardcodes DIR into the 5313# resulting binary. 5314hardcode_minus_L=$_LT_AC_TAGVAR(hardcode_minus_L, $1) 5315 5316# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into 5317# the resulting binary. 5318hardcode_shlibpath_var=$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1) 5319 5320# Set to yes if building a shared library automatically hardcodes DIR into the library 5321# and all subsequent libraries and executables linked against it. 5322hardcode_automatic=$_LT_AC_TAGVAR(hardcode_automatic, $1) 5323 5324# Variables whose values should be saved in libtool wrapper scripts and 5325# restored at relink time. 5326variables_saved_for_relink="$variables_saved_for_relink" 5327 5328# Whether libtool must link a program against all its dependency libraries. 5329link_all_deplibs=$_LT_AC_TAGVAR(link_all_deplibs, $1) 5330 5331# Compile-time system search path for libraries 5332sys_lib_search_path_spec=$lt_sys_lib_search_path_spec 5333 5334# Run-time system search path for libraries 5335sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec 5336 5337# Fix the shell variable \$srcfile for the compiler. 5338fix_srcfile_path="$_LT_AC_TAGVAR(fix_srcfile_path, $1)" 5339 5340# Set to yes if exported symbols are required. 5341always_export_symbols=$_LT_AC_TAGVAR(always_export_symbols, $1) 5342 5343# The commands to list exported symbols. 5344export_symbols_cmds=$lt_[]_LT_AC_TAGVAR(export_symbols_cmds, $1) 5345 5346# The commands to extract the exported symbol list from a shared archive. 5347extract_expsyms_cmds=$lt_extract_expsyms_cmds 5348 5349# Symbols that should not be listed in the preloaded symbols. 5350exclude_expsyms=$lt_[]_LT_AC_TAGVAR(exclude_expsyms, $1) 5351 5352# Symbols that must always be exported. 5353include_expsyms=$lt_[]_LT_AC_TAGVAR(include_expsyms, $1) 5354 5355ifelse([$1],[], 5356[# ### END LIBTOOL CONFIG], 5357[# ### END LIBTOOL TAG CONFIG: $tagname]) 5358 5359__EOF__ 5360 5361ifelse([$1],[], [ 5362 case $host_os in 5363 aix3*) 5364 cat <<\EOF >> "$cfgfile" 5365 5366# AIX sometimes has problems with the GCC collect2 program. For some 5367# reason, if we set the COLLECT_NAMES environment variable, the problems 5368# vanish in a puff of smoke. 5369if test "X${COLLECT_NAMES+set}" != Xset; then 5370 COLLECT_NAMES= 5371 export COLLECT_NAMES 5372fi 5373EOF 5374 ;; 5375 esac 5376 5377 # We use sed instead of cat because bash on DJGPP gets confused if 5378 # if finds mixed CR/LF and LF-only lines. Since sed operates in 5379 # text mode, it properly converts lines to CR/LF. This bash problem 5380 # is reportedly fixed, but why not run on old versions too? 5381 sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1) 5382 5383 mv -f "$cfgfile" "$ofile" || \ 5384 (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") 5385 chmod +x "$ofile" 5386]) 5387else 5388 # If there is no Makefile yet, we rely on a make rule to execute 5389 # `config.status --recheck' to rerun these tests and create the 5390 # libtool script then. 5391 ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` 5392 if test -f "$ltmain_in"; then 5393 test -f Makefile && make "$ltmain" 5394 fi 5395fi 5396]) 5397m4trace:acinclude.m4:5199: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl 5398 5399_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= 5400 5401if test "$GCC" = yes; then 5402 _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' 5403 5404 AC_LIBTOOL_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], 5405 lt_cv_prog_compiler_rtti_exceptions, 5406 [-fno-rtti -fno-exceptions], [], 5407 [_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) 5408fi 5409]) 5410m4trace:acinclude.m4:5217: -1- AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_REQUIRE([AC_CANONICAL_HOST]) 5411AC_REQUIRE([AC_PROG_NM]) 5412AC_REQUIRE([AC_OBJEXT]) 5413# Check for command to grab the raw symbol name followed by C symbol from nm. 5414AC_MSG_CHECKING([command to parse $NM output from $compiler object]) 5415AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], 5416[ 5417# These are sane defaults that work on at least a few old systems. 5418# [They come from Ultrix. What could be older than Ultrix?!! ;)] 5419 5420# Character class describing NM global symbol codes. 5421symcode='[[BCDEGRST]]' 5422 5423# Regexp to match symbols that can be accessed directly from C. 5424sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' 5425 5426# Transform an extracted symbol line into a proper C declaration 5427lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'" 5428 5429# Transform an extracted symbol line into symbol name and symbol address 5430lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" 5431 5432# Define system-specific variables. 5433case $host_os in 5434aix*) 5435 symcode='[[BCDT]]' 5436 ;; 5437cygwin* | mingw* | pw32*) 5438 symcode='[[ABCDGISTW]]' 5439 ;; 5440hpux*) # Its linker distinguishes data from code symbols 5441 if test "$host_cpu" = ia64; then 5442 symcode='[[ABCDEGRST]]' 5443 fi 5444 lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" 5445 lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" 5446 ;; 5447linux*) 5448 if test "$host_cpu" = ia64; then 5449 symcode='[[ABCDGIRSTW]]' 5450 lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" 5451 lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" 5452 fi 5453 ;; 5454irix* | nonstopux*) 5455 symcode='[[BCDEGRST]]' 5456 ;; 5457osf*) 5458 symcode='[[BCDEGQRST]]' 5459 ;; 5460solaris*) 5461 symcode='[[BDRT]]' 5462 ;; 5463sco3.2v5*) 5464 symcode='[[DT]]' 5465 ;; 5466sysv4.2uw2*) 5467 symcode='[[DT]]' 5468 ;; 5469sysv5* | sco5v6* | unixware* | OpenUNIX*) 5470 symcode='[[ABDT]]' 5471 ;; 5472sysv4) 5473 symcode='[[DFNSTU]]' 5474 ;; 5475esac 5476 5477# Handle CRLF in mingw tool chain 5478opt_cr= 5479case $build_os in 5480mingw*) 5481 opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp 5482 ;; 5483esac 5484 5485# If we're using GNU nm, then use its standard symbol codes. 5486case `$NM -V 2>&1` in 5487*GNU* | *'with BFD'*) 5488 symcode='[[ABCDGIRSTW]]' ;; 5489esac 5490 5491# Try without a prefix undercore, then with it. 5492for ac_symprfx in "" "_"; do 5493 5494 # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. 5495 symxfrm="\\1 $ac_symprfx\\2 \\2" 5496 5497 # Write the raw and C identifiers. 5498 lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" 5499 5500 # Check to see that the pipe works correctly. 5501 pipe_works=no 5502 5503 rm -f conftest* 5504 cat > conftest.$ac_ext <<EOF 5505#ifdef __cplusplus 5506extern "C" { 5507#endif 5508char nm_test_var; 5509void nm_test_func(){} 5510#ifdef __cplusplus 5511} 5512#endif 5513int main(){nm_test_var='a';nm_test_func();return(0);} 5514EOF 5515 5516 if AC_TRY_EVAL(ac_compile); then 5517 # Now try to grab the symbols. 5518 nlist=conftest.nm 5519 if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) && test -s "$nlist"; then 5520 # Try sorting and uniquifying the output. 5521 if sort "$nlist" | uniq > "$nlist"T; then 5522 mv -f "$nlist"T "$nlist" 5523 else 5524 rm -f "$nlist"T 5525 fi 5526 5527 # Make sure that we snagged all the symbols we need. 5528 if grep ' nm_test_var$' "$nlist" >/dev/null; then 5529 if grep ' nm_test_func$' "$nlist" >/dev/null; then 5530 cat <<EOF > conftest.$ac_ext 5531#ifdef __cplusplus 5532extern "C" { 5533#endif 5534 5535EOF 5536 # Now generate the symbol file. 5537 eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext' 5538 5539 cat <<EOF >> conftest.$ac_ext 5540#if defined (__STDC__) && __STDC__ 5541# define lt_ptr_t void * 5542#else 5543# define lt_ptr_t char * 5544# define const 5545#endif 5546 5547/* The mapping between symbol names and symbols. */ 5548const struct { 5549 const char *name; 5550 lt_ptr_t address; 5551} 5552lt_preloaded_symbols[[]] = 5553{ 5554EOF 5555 $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext 5556 cat <<\EOF >> conftest.$ac_ext 5557 {0, (lt_ptr_t) 0} 5558}; 5559 5560#ifdef __cplusplus 5561} 5562#endif 5563EOF 5564 # Now try linking the two files. 5565 mv conftest.$ac_objext conftstm.$ac_objext 5566 lt_save_LIBS="$LIBS" 5567 lt_save_CFLAGS="$CFLAGS" 5568 LIBS="conftstm.$ac_objext" 5569 CFLAGS="$CFLAGS$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" 5570 if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then 5571 pipe_works=yes 5572 fi 5573 LIBS="$lt_save_LIBS" 5574 CFLAGS="$lt_save_CFLAGS" 5575 else 5576 echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD 5577 fi 5578 else 5579 echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD 5580 fi 5581 else 5582 echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD 5583 fi 5584 else 5585 echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD 5586 cat conftest.$ac_ext >&5 5587 fi 5588 rm -f conftest* conftst* 5589 5590 # Do not use the global_symbol_pipe unless it works. 5591 if test "$pipe_works" = yes; then 5592 break 5593 else 5594 lt_cv_sys_global_symbol_pipe= 5595 fi 5596done 5597]) 5598if test -z "$lt_cv_sys_global_symbol_pipe"; then 5599 lt_cv_sys_global_symbol_to_cdecl= 5600fi 5601if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then 5602 AC_MSG_RESULT(failed) 5603else 5604 AC_MSG_RESULT(ok) 5605fi 5606]) 5607m4trace:acinclude.m4:5419: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC], [_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)= 5608_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= 5609_LT_AC_TAGVAR(lt_prog_compiler_static, $1)= 5610 5611AC_MSG_CHECKING([for $compiler option to produce PIC]) 5612 ifelse([$1],[CXX],[ 5613 # C++ specific cases for pic, static, wl, etc. 5614 if test "$GXX" = yes; then 5615 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 5616 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' 5617 5618 case $host_os in 5619 aix*) 5620 # All AIX code is PIC. 5621 if test "$host_cpu" = ia64; then 5622 # AIX 5 now supports IA64 processor 5623 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 5624 fi 5625 ;; 5626 amigaos*) 5627 # FIXME: we need at least 68020 code to build shared libraries, but 5628 # adding the `-m68020' flag to GCC prevents building anything better, 5629 # like `-m68040'. 5630 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' 5631 ;; 5632 beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) 5633 # PIC is the default for these OSes. 5634 ;; 5635 mingw* | os2* | pw32*) 5636 # This hack is so that the source file can tell whether it is being 5637 # built for inclusion in a dll (and should export symbols for example). 5638 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' 5639 ;; 5640 darwin* | rhapsody*) 5641 # PIC is the default on this platform 5642 # Common symbols not allowed in MH_DYLIB files 5643 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' 5644 ;; 5645 *djgpp*) 5646 # DJGPP does not support shared libraries at all 5647 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= 5648 ;; 5649 interix3*) 5650 # Interix 3.x gcc -fpic/-fPIC options generate broken code. 5651 # Instead, we relocate shared libraries at runtime. 5652 ;; 5653 sysv4*MP*) 5654 if test -d /usr/nec; then 5655 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic 5656 fi 5657 ;; 5658 hpux*) 5659 # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but 5660 # not for PA HP-UX. 5661 case $host_cpu in 5662 hppa*64*|ia64*) 5663 ;; 5664 *) 5665 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' 5666 ;; 5667 esac 5668 ;; 5669 *) 5670 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' 5671 ;; 5672 esac 5673 else 5674 case $host_os in 5675 aix4* | aix5*) 5676 # All AIX code is PIC. 5677 if test "$host_cpu" = ia64; then 5678 # AIX 5 now supports IA64 processor 5679 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 5680 else 5681 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' 5682 fi 5683 ;; 5684 chorus*) 5685 case $cc_basename in 5686 cxch68*) 5687 # Green Hills C++ Compiler 5688 # _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" 5689 ;; 5690 esac 5691 ;; 5692 darwin*) 5693 # PIC is the default on this platform 5694 # Common symbols not allowed in MH_DYLIB files 5695 case $cc_basename in 5696 xlc*) 5697 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' 5698 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 5699 ;; 5700 esac 5701 ;; 5702 dgux*) 5703 case $cc_basename in 5704 ec++*) 5705 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' 5706 ;; 5707 ghcx*) 5708 # Green Hills C++ Compiler 5709 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' 5710 ;; 5711 *) 5712 ;; 5713 esac 5714 ;; 5715 freebsd* | kfreebsd*-gnu | dragonfly*) 5716 # FreeBSD uses GNU C++ 5717 ;; 5718 hpux9* | hpux10* | hpux11*) 5719 case $cc_basename in 5720 CC*) 5721 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 5722 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' 5723 if test "$host_cpu" != ia64; then 5724 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' 5725 fi 5726 ;; 5727 aCC*) 5728 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 5729 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' 5730 case $host_cpu in 5731 hppa*64*|ia64*) 5732 # +Z the default 5733 ;; 5734 *) 5735 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' 5736 ;; 5737 esac 5738 ;; 5739 *) 5740 ;; 5741 esac 5742 ;; 5743 interix*) 5744 # This is c89, which is MS Visual C++ (no shared libs) 5745 # Anyone wants to do a port? 5746 ;; 5747 irix5* | irix6* | nonstopux*) 5748 case $cc_basename in 5749 CC*) 5750 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 5751 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' 5752 # CC pic flag -KPIC is the default. 5753 ;; 5754 *) 5755 ;; 5756 esac 5757 ;; 5758 linux*) 5759 case $cc_basename in 5760 KCC*) 5761 # KAI C++ Compiler 5762 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' 5763 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' 5764 ;; 5765 icpc* | ecpc*) 5766 # Intel C++ 5767 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 5768 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' 5769 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' 5770 ;; 5771 pgCC*) 5772 # Portland Group C++ compiler. 5773 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 5774 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' 5775 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 5776 ;; 5777 cxx*) 5778 # Compaq C++ 5779 # Make sure the PIC flag is empty. It appears that all Alpha 5780 # Linux and Compaq Tru64 Unix objects are PIC. 5781 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= 5782 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' 5783 ;; 5784 *) 5785 ;; 5786 esac 5787 ;; 5788 lynxos*) 5789 ;; 5790 m88k*) 5791 ;; 5792 mvs*) 5793 case $cc_basename in 5794 cxx*) 5795 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' 5796 ;; 5797 *) 5798 ;; 5799 esac 5800 ;; 5801 netbsd*) 5802 ;; 5803 osf3* | osf4* | osf5*) 5804 case $cc_basename in 5805 KCC*) 5806 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' 5807 ;; 5808 RCC*) 5809 # Rational C++ 2.4.1 5810 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' 5811 ;; 5812 cxx*) 5813 # Digital/Compaq C++ 5814 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 5815 # Make sure the PIC flag is empty. It appears that all Alpha 5816 # Linux and Compaq Tru64 Unix objects are PIC. 5817 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= 5818 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' 5819 ;; 5820 *) 5821 ;; 5822 esac 5823 ;; 5824 psos*) 5825 ;; 5826 solaris*) 5827 case $cc_basename in 5828 CC*) 5829 # Sun C++ 4.2, 5.x and Centerline C++ 5830 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' 5831 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 5832 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' 5833 ;; 5834 gcx*) 5835 # Green Hills C++ Compiler 5836 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' 5837 ;; 5838 *) 5839 ;; 5840 esac 5841 ;; 5842 sunos4*) 5843 case $cc_basename in 5844 CC*) 5845 # Sun C++ 4.x 5846 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' 5847 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 5848 ;; 5849 lcc*) 5850 # Lucid 5851 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' 5852 ;; 5853 *) 5854 ;; 5855 esac 5856 ;; 5857 tandem*) 5858 case $cc_basename in 5859 NCC*) 5860 # NonStop-UX NCC 3.20 5861 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' 5862 ;; 5863 *) 5864 ;; 5865 esac 5866 ;; 5867 sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) 5868 case $cc_basename in 5869 CC*) 5870 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 5871 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' 5872 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 5873 ;; 5874 esac 5875 ;; 5876 vxworks*) 5877 ;; 5878 *) 5879 _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no 5880 ;; 5881 esac 5882 fi 5883], 5884[ 5885 if test "$GCC" = yes; then 5886 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 5887 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' 5888 5889 case $host_os in 5890 aix*) 5891 # All AIX code is PIC. 5892 if test "$host_cpu" = ia64; then 5893 # AIX 5 now supports IA64 processor 5894 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 5895 fi 5896 ;; 5897 5898 amigaos*) 5899 # FIXME: we need at least 68020 code to build shared libraries, but 5900 # adding the `-m68020' flag to GCC prevents building anything better, 5901 # like `-m68040'. 5902 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' 5903 ;; 5904 5905 beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) 5906 # PIC is the default for these OSes. 5907 ;; 5908 5909 mingw* | pw32* | os2*) 5910 # This hack is so that the source file can tell whether it is being 5911 # built for inclusion in a dll (and should export symbols for example). 5912 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' 5913 ;; 5914 5915 darwin* | rhapsody*) 5916 # PIC is the default on this platform 5917 # Common symbols not allowed in MH_DYLIB files 5918 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' 5919 ;; 5920 5921 interix3*) 5922 # Interix 3.x gcc -fpic/-fPIC options generate broken code. 5923 # Instead, we relocate shared libraries at runtime. 5924 ;; 5925 5926 msdosdjgpp*) 5927 # Just because we use GCC doesn't mean we suddenly get shared libraries 5928 # on systems that don't support them. 5929 _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no 5930 enable_shared=no 5931 ;; 5932 5933 sysv4*MP*) 5934 if test -d /usr/nec; then 5935 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic 5936 fi 5937 ;; 5938 5939 hpux*) 5940 # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but 5941 # not for PA HP-UX. 5942 case $host_cpu in 5943 hppa*64*|ia64*) 5944 # +Z the default 5945 ;; 5946 *) 5947 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' 5948 ;; 5949 esac 5950 ;; 5951 5952 *) 5953 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' 5954 ;; 5955 esac 5956 else 5957 # PORTME Check for flag to pass linker flags through the system compiler. 5958 case $host_os in 5959 aix*) 5960 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 5961 if test "$host_cpu" = ia64; then 5962 # AIX 5 now supports IA64 processor 5963 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 5964 else 5965 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' 5966 fi 5967 ;; 5968 darwin*) 5969 # PIC is the default on this platform 5970 # Common symbols not allowed in MH_DYLIB files 5971 case $cc_basename in 5972 xlc*) 5973 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' 5974 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 5975 ;; 5976 esac 5977 ;; 5978 5979 mingw* | pw32* | os2*) 5980 # This hack is so that the source file can tell whether it is being 5981 # built for inclusion in a dll (and should export symbols for example). 5982 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' 5983 ;; 5984 5985 hpux9* | hpux10* | hpux11*) 5986 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 5987 # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but 5988 # not for PA HP-UX. 5989 case $host_cpu in 5990 hppa*64*|ia64*) 5991 # +Z the default 5992 ;; 5993 *) 5994 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' 5995 ;; 5996 esac 5997 # Is there a better lt_prog_compiler_static that works with the bundled CC? 5998 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' 5999 ;; 6000 6001 irix5* | irix6* | nonstopux*) 6002 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 6003 # PIC (with -KPIC) is the default. 6004 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' 6005 ;; 6006 6007 newsos6) 6008 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' 6009 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 6010 ;; 6011 6012 linux*) 6013 case $cc_basename in 6014 icc* | ecc*) 6015 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 6016 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' 6017 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' 6018 ;; 6019 pgcc* | pgf77* | pgf90* | pgf95*) 6020 # Portland Group compilers (*not* the Pentium gcc compiler, 6021 # which looks to be a dead project) 6022 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 6023 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' 6024 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 6025 ;; 6026 ccc*) 6027 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 6028 # All Alpha code is PIC. 6029 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' 6030 ;; 6031 esac 6032 ;; 6033 6034 osf3* | osf4* | osf5*) 6035 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 6036 # All OSF/1 code is PIC. 6037 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' 6038 ;; 6039 6040 solaris*) 6041 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' 6042 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 6043 case $cc_basename in 6044 f77* | f90* | f95*) 6045 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; 6046 *) 6047 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; 6048 esac 6049 ;; 6050 6051 sunos4*) 6052 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' 6053 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' 6054 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 6055 ;; 6056 6057 sysv4 | sysv4.2uw2* | sysv4.3*) 6058 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 6059 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' 6060 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 6061 ;; 6062 6063 sysv4*MP*) 6064 if test -d /usr/nec ;then 6065 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' 6066 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 6067 fi 6068 ;; 6069 6070 sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) 6071 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 6072 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' 6073 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 6074 ;; 6075 6076 unicos*) 6077 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 6078 _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no 6079 ;; 6080 6081 uts4*) 6082 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' 6083 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 6084 ;; 6085 6086 *) 6087 _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no 6088 ;; 6089 esac 6090 fi 6091]) 6092AC_MSG_RESULT([$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)]) 6093 6094# 6095# Check to make sure the PIC flag actually works. 6096# 6097if test -n "$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)"; then 6098 AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) works], 6099 _LT_AC_TAGVAR(lt_prog_compiler_pic_works, $1), 6100 [$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])], [], 6101 [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) in 6102 "" | " "*) ;; 6103 *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)" ;; 6104 esac], 6105 [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= 6106 _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) 6107fi 6108case $host_os in 6109 # For platforms which do not support PIC, -DPIC is meaningless: 6110 *djgpp*) 6111 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= 6112 ;; 6113 *) 6114 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])" 6115 ;; 6116esac 6117 6118# 6119# Check to make sure the static flag actually works. 6120# 6121wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_AC_TAGVAR(lt_prog_compiler_static, $1)\" 6122AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], 6123 _LT_AC_TAGVAR(lt_prog_compiler_static_works, $1), 6124 $lt_tmp_static_flag, 6125 [], 6126 [_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=]) 6127]) 6128m4trace:acinclude.m4:5946: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) 6129ifelse([$1],[CXX],[ 6130 _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' 6131 case $host_os in 6132 aix4* | aix5*) 6133 # If we're using GNU nm, then we don't want the "-C" option. 6134 # -C means demangle to AIX nm, but means don't demangle with GNU nm 6135 if $NM -V 2>&1 | grep 'GNU' > /dev/null; then 6136 _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' 6137 else 6138 _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' 6139 fi 6140 ;; 6141 pw32*) 6142 _LT_AC_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" 6143 ;; 6144 cygwin* | mingw*) 6145 _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]] /s/.* \([[^ ]]*\)/\1 DATA/;/^.* __nm__/s/^.* __nm__\([[^ ]]*\) [[^ ]]*/\1 DATA/;/^I /d;/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols' 6146 ;; 6147 *) 6148 _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' 6149 ;; 6150 esac 6151],[ 6152 runpath_var= 6153 _LT_AC_TAGVAR(allow_undefined_flag, $1)= 6154 _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no 6155 _LT_AC_TAGVAR(archive_cmds, $1)= 6156 _LT_AC_TAGVAR(archive_expsym_cmds, $1)= 6157 _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)= 6158 _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)= 6159 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= 6160 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= 6161 _LT_AC_TAGVAR(thread_safe_flag_spec, $1)= 6162 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= 6163 _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= 6164 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= 6165 _LT_AC_TAGVAR(hardcode_direct, $1)=no 6166 _LT_AC_TAGVAR(hardcode_minus_L, $1)=no 6167 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported 6168 _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown 6169 _LT_AC_TAGVAR(hardcode_automatic, $1)=no 6170 _LT_AC_TAGVAR(module_cmds, $1)= 6171 _LT_AC_TAGVAR(module_expsym_cmds, $1)= 6172 _LT_AC_TAGVAR(always_export_symbols, $1)=no 6173 _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' 6174 # include_expsyms should be a list of space-separated symbols to be *always* 6175 # included in the symbol list 6176 _LT_AC_TAGVAR(include_expsyms, $1)= 6177 # exclude_expsyms can be an extended regexp of symbols to exclude 6178 # it will be wrapped by ` (' and `)$', so one must not match beginning or 6179 # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', 6180 # as well as any symbol that contains `d'. 6181 _LT_AC_TAGVAR(exclude_expsyms, $1)="_GLOBAL_OFFSET_TABLE_" 6182 # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out 6183 # platforms (ab)use it in PIC code, but their linkers get confused if 6184 # the symbol is explicitly referenced. Since portable code cannot 6185 # rely on this symbol name, it's probably fine to never include it in 6186 # preloaded symbol tables. 6187 extract_expsyms_cmds= 6188 # Just being paranoid about ensuring that cc_basename is set. 6189 _LT_CC_BASENAME([$compiler]) 6190 case $host_os in 6191 cygwin* | mingw* | pw32*) 6192 # FIXME: the MSVC++ port hasn't been tested in a loooong time 6193 # When not using gcc, we currently assume that we are using 6194 # Microsoft Visual C++. 6195 if test "$GCC" != yes; then 6196 with_gnu_ld=no 6197 fi 6198 ;; 6199 interix*) 6200 # we just hope/assume this is gcc and not c89 (= MSVC++) 6201 with_gnu_ld=yes 6202 ;; 6203 openbsd*) 6204 with_gnu_ld=no 6205 ;; 6206 esac 6207 6208 _LT_AC_TAGVAR(ld_shlibs, $1)=yes 6209 if test "$with_gnu_ld" = yes; then 6210 # If archive_cmds runs LD, not CC, wlarc should be empty 6211 wlarc='${wl}' 6212 6213 # Set some defaults for GNU ld with shared library support. These 6214 # are reset later if shared libraries are not supported. Putting them 6215 # here allows them to be overridden if necessary. 6216 runpath_var=LD_RUN_PATH 6217 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' 6218 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' 6219 # ancient GNU ld didn't support --whole-archive et. al. 6220 if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then 6221 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' 6222 else 6223 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= 6224 fi 6225 supports_anon_versioning=no 6226 case `$LD -v 2>/dev/null` in 6227 *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 6228 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... 6229 *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... 6230 *\ 2.11.*) ;; # other 2.11 versions 6231 *) supports_anon_versioning=yes ;; 6232 esac 6233 6234 # See if GNU ld supports shared libraries. 6235 case $host_os in 6236 aix3* | aix4* | aix5*) 6237 # On AIX/PPC, the GNU linker is very broken 6238 if test "$host_cpu" != ia64; then 6239 _LT_AC_TAGVAR(ld_shlibs, $1)=no 6240 cat <<EOF 1>&2 6241 6242*** Warning: the GNU linker, at least up to release 2.9.1, is reported 6243*** to be unable to reliably create shared libraries on AIX. 6244*** Therefore, libtool is disabling shared libraries support. If you 6245*** really care for shared libraries, you may want to modify your PATH 6246*** so that a non-GNU linker is found, and then restart. 6247 6248EOF 6249 fi 6250 ;; 6251 6252 amigaos*) 6253 _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' 6254 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' 6255 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes 6256 6257 # Samuel A. Falvo II <kc5tja@dolphin.openprojects.net> reports 6258 # that the semantics of dynamic libraries on AmigaOS, at least up 6259 # to version 4, is to share data among multiple programs linked 6260 # with the same dynamic library. Since this doesn't match the 6261 # behavior of shared libraries on other platforms, we can't use 6262 # them. 6263 _LT_AC_TAGVAR(ld_shlibs, $1)=no 6264 ;; 6265 6266 beos*) 6267 if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then 6268 _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported 6269 # Joseph Beckenbach <jrb3@best.com> says some releases of gcc 6270 # support --undefined. This deserves some investigation. FIXME 6271 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' 6272 else 6273 _LT_AC_TAGVAR(ld_shlibs, $1)=no 6274 fi 6275 ;; 6276 6277 cygwin* | mingw* | pw32*) 6278 # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, 6279 # as there is no search path for DLLs. 6280 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' 6281 _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported 6282 _LT_AC_TAGVAR(always_export_symbols, $1)=no 6283 _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes 6284 _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]] /s/.* \([[^ ]]*\)/\1 DATA/'\'' | $SED -e '\''/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols' 6285 6286 if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then 6287 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' 6288 # If the export-symbols file already is a .def file (1st line 6289 # is EXPORTS), use it as is; otherwise, prepend... 6290 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then 6291 cp $export_symbols $output_objdir/$soname.def; 6292 else 6293 echo EXPORTS > $output_objdir/$soname.def; 6294 cat $export_symbols >> $output_objdir/$soname.def; 6295 fi~ 6296 $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' 6297 else 6298 _LT_AC_TAGVAR(ld_shlibs, $1)=no 6299 fi 6300 ;; 6301 6302 interix3*) 6303 _LT_AC_TAGVAR(hardcode_direct, $1)=no 6304 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6305 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' 6306 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' 6307 # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. 6308 # Instead, shared libraries are loaded at an image base (0x10000000 by 6309 # default) and relocated if they conflict, which is a slow very memory 6310 # consuming and fragmenting process. To avoid this, we pick a random, 6311 # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link 6312 # time. Moving up from 0x10000000 also allows more sbrk(2) space. 6313 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' 6314 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' 6315 ;; 6316 6317 linux*) 6318 if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then 6319 tmp_addflag= 6320 case $cc_basename,$host_cpu in 6321 pgcc*) # Portland Group C compiler 6322 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' 6323 tmp_addflag=' $pic_flag' 6324 ;; 6325 pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers 6326 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' 6327 tmp_addflag=' $pic_flag -Mnomain' ;; 6328 ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 6329 tmp_addflag=' -i_dynamic' ;; 6330 efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 6331 tmp_addflag=' -i_dynamic -nofor_main' ;; 6332 ifc* | ifort*) # Intel Fortran compiler 6333 tmp_addflag=' -nofor_main' ;; 6334 esac 6335 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' 6336 6337 if test $supports_anon_versioning = yes; then 6338 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $output_objdir/$libname.ver~ 6339 cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ 6340 $echo "local: *; };" >> $output_objdir/$libname.ver~ 6341 $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' 6342 fi 6343 else 6344 _LT_AC_TAGVAR(ld_shlibs, $1)=no 6345 fi 6346 ;; 6347 6348 netbsd*) 6349 if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then 6350 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' 6351 wlarc= 6352 else 6353 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' 6354 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' 6355 fi 6356 ;; 6357 6358 solaris*) 6359 if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then 6360 _LT_AC_TAGVAR(ld_shlibs, $1)=no 6361 cat <<EOF 1>&2 6362 6363*** Warning: The releases 2.8.* of the GNU linker cannot reliably 6364*** create shared libraries on Solaris systems. Therefore, libtool 6365*** is disabling shared libraries support. We urge you to upgrade GNU 6366*** binutils to release 2.9.1 or newer. Another option is to modify 6367*** your PATH or compiler configuration so that the native linker is 6368*** used, and then restart. 6369 6370EOF 6371 elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then 6372 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' 6373 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' 6374 else 6375 _LT_AC_TAGVAR(ld_shlibs, $1)=no 6376 fi 6377 ;; 6378 6379 sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) 6380 case `$LD -v 2>&1` in 6381 *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) 6382 _LT_AC_TAGVAR(ld_shlibs, $1)=no 6383 cat <<_LT_EOF 1>&2 6384 6385*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not 6386*** reliably create shared libraries on SCO systems. Therefore, libtool 6387*** is disabling shared libraries support. We urge you to upgrade GNU 6388*** binutils to release 2.16.91.0.3 or newer. Another option is to modify 6389*** your PATH or compiler configuration so that the native linker is 6390*** used, and then restart. 6391 6392_LT_EOF 6393 ;; 6394 *) 6395 if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then 6396 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' 6397 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' 6398 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' 6399 else 6400 _LT_AC_TAGVAR(ld_shlibs, $1)=no 6401 fi 6402 ;; 6403 esac 6404 ;; 6405 6406 sunos4*) 6407 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' 6408 wlarc= 6409 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 6410 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6411 ;; 6412 6413 *) 6414 if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then 6415 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' 6416 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' 6417 else 6418 _LT_AC_TAGVAR(ld_shlibs, $1)=no 6419 fi 6420 ;; 6421 esac 6422 6423 if test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no; then 6424 runpath_var= 6425 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= 6426 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= 6427 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= 6428 fi 6429 else 6430 # PORTME fill in a description of your system's linker (not GNU ld) 6431 case $host_os in 6432 aix3*) 6433 _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported 6434 _LT_AC_TAGVAR(always_export_symbols, $1)=yes 6435 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' 6436 # Note: this linker hardcodes the directories in LIBPATH if there 6437 # are no directories specified by -L. 6438 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes 6439 if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then 6440 # Neither direct hardcoding nor static linking is supported with a 6441 # broken collect2. 6442 _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported 6443 fi 6444 ;; 6445 6446 aix4* | aix5*) 6447 if test "$host_cpu" = ia64; then 6448 # On IA64, the linker does run time linking by default, so we don't 6449 # have to do anything special. 6450 aix_use_runtimelinking=no 6451 exp_sym_flag='-Bexport' 6452 no_entry_flag="" 6453 else 6454 # If we're using GNU nm, then we don't want the "-C" option. 6455 # -C means demangle to AIX nm, but means don't demangle with GNU nm 6456 if $NM -V 2>&1 | grep 'GNU' > /dev/null; then 6457 _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' 6458 else 6459 _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' 6460 fi 6461 aix_use_runtimelinking=no 6462 6463 # Test if we are trying to use run time linking or normal 6464 # AIX style linking. If -brtl is somewhere in LDFLAGS, we 6465 # need to do runtime linking. 6466 case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*) 6467 for ld_flag in $LDFLAGS; do 6468 if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then 6469 aix_use_runtimelinking=yes 6470 break 6471 fi 6472 done 6473 ;; 6474 esac 6475 6476 exp_sym_flag='-bexport' 6477 no_entry_flag='-bnoentry' 6478 fi 6479 6480 # When large executables or shared objects are built, AIX ld can 6481 # have problems creating the table of contents. If linking a library 6482 # or program results in "error TOC overflow" add -mminimal-toc to 6483 # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not 6484 # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. 6485 6486 _LT_AC_TAGVAR(archive_cmds, $1)='' 6487 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 6488 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' 6489 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes 6490 6491 if test "$GCC" = yes; then 6492 case $host_os in aix4.[[012]]|aix4.[[012]].*) 6493 # We only want to do this on AIX 4.2 and lower, the check 6494 # below for broken collect2 doesn't work under 4.3+ 6495 collect2name=`${CC} -print-prog-name=collect2` 6496 if test -f "$collect2name" && \ 6497 strings "$collect2name" | grep resolve_lib_name >/dev/null 6498 then 6499 # We have reworked collect2 6500 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 6501 else 6502 # We have old collect2 6503 _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported 6504 # It fails to find uninstalled libraries when the uninstalled 6505 # path is not listed in the libpath. Setting hardcode_minus_L 6506 # to unsupported forces relinking 6507 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes 6508 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' 6509 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= 6510 fi 6511 ;; 6512 esac 6513 shared_flag='-shared' 6514 if test "$aix_use_runtimelinking" = yes; then 6515 shared_flag="$shared_flag "'${wl}-G' 6516 fi 6517 else 6518 # not using gcc 6519 if test "$host_cpu" = ia64; then 6520 # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release 6521 # chokes on -Wl,-G. The following line is correct: 6522 shared_flag='-G' 6523 else 6524 if test "$aix_use_runtimelinking" = yes; then 6525 shared_flag='${wl}-G' 6526 else 6527 shared_flag='${wl}-bM:SRE' 6528 fi 6529 fi 6530 fi 6531 6532 # It seems that -bexpall does not export symbols beginning with 6533 # underscore (_), so it is better to generate a list of symbols to export. 6534 _LT_AC_TAGVAR(always_export_symbols, $1)=yes 6535 if test "$aix_use_runtimelinking" = yes; then 6536 # Warning - without using the other runtime loading flags (-brtl), 6537 # -berok will link without error, but may produce a broken library. 6538 _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' 6539 # Determine the default libpath from the value encoded in an empty executable. 6540 _LT_AC_SYS_LIBPATH_AIX 6541 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" 6542 _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" 6543 else 6544 if test "$host_cpu" = ia64; then 6545 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' 6546 _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" 6547 _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" 6548 else 6549 # Determine the default libpath from the value encoded in an empty executable. 6550 _LT_AC_SYS_LIBPATH_AIX 6551 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" 6552 # Warning - without using the other run time loading flags, 6553 # -berok will link without error, but may produce a broken library. 6554 _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' 6555 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' 6556 # Exported symbols can be pulled into shared objects from archives 6557 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience' 6558 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes 6559 # This is similar to how AIX traditionally builds its shared libraries. 6560 _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' 6561 fi 6562 fi 6563 ;; 6564 6565 amigaos*) 6566 _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' 6567 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' 6568 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes 6569 # see comment about different semantics on the GNU ld section 6570 _LT_AC_TAGVAR(ld_shlibs, $1)=no 6571 ;; 6572 6573 bsdi[[45]]*) 6574 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic 6575 ;; 6576 6577 cygwin* | mingw* | pw32*) 6578 # When not using gcc, we currently assume that we are using 6579 # Microsoft Visual C++. 6580 # hardcode_libdir_flag_spec is actually meaningless, as there is 6581 # no search path for DLLs. 6582 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' 6583 _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported 6584 # Tell ltmain to make .lib files, not .a files. 6585 libext=lib 6586 # Tell ltmain to make .dll files, not .so files. 6587 shrext_cmds=".dll" 6588 # FIXME: Setting linknames here is a bad hack. 6589 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' 6590 # The linker will automatically build a .lib file if we build a DLL. 6591 _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='true' 6592 # FIXME: Should let the user specify the lib program. 6593 _LT_AC_TAGVAR(old_archive_cmds, $1)='lib /OUT:$oldlib$oldobjs$old_deplibs' 6594 _LT_AC_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`' 6595 _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes 6596 ;; 6597 6598 darwin* | rhapsody*) 6599 case $host_os in 6600 rhapsody* | darwin1.[[012]]) 6601 _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress' 6602 ;; 6603 *) # Darwin 1.3 on 6604 if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then 6605 _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' 6606 else 6607 case ${MACOSX_DEPLOYMENT_TARGET} in 6608 10.[[012]]) 6609 _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' 6610 ;; 6611 10.*) 6612 _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup' 6613 ;; 6614 esac 6615 fi 6616 ;; 6617 esac 6618 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no 6619 _LT_AC_TAGVAR(hardcode_direct, $1)=no 6620 _LT_AC_TAGVAR(hardcode_automatic, $1)=yes 6621 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported 6622 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' 6623 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes 6624 if test "$GCC" = yes ; then 6625 output_verbose_link_cmd='echo' 6626 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' 6627 _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' 6628 # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds 6629 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' 6630 _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' 6631 else 6632 case $cc_basename in 6633 xlc*) 6634 output_verbose_link_cmd='echo' 6635 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' 6636 _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' 6637 # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds 6638 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' 6639 _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' 6640 ;; 6641 *) 6642 _LT_AC_TAGVAR(ld_shlibs, $1)=no 6643 ;; 6644 esac 6645 fi 6646 ;; 6647 6648 dgux*) 6649 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' 6650 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' 6651 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6652 ;; 6653 6654 freebsd1*) 6655 _LT_AC_TAGVAR(ld_shlibs, $1)=no 6656 ;; 6657 6658 # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor 6659 # support. Future versions do this automatically, but an explicit c++rt0.o 6660 # does not break anything, and helps significantly (at the cost of a little 6661 # extra space). 6662 freebsd2.2*) 6663 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' 6664 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' 6665 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 6666 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6667 ;; 6668 6669 # Unfortunately, older versions of FreeBSD 2 do not have this feature. 6670 freebsd2*) 6671 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' 6672 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 6673 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes 6674 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6675 ;; 6676 6677 # FreeBSD 3 and greater uses gcc -shared to do shared libraries. 6678 freebsd* | kfreebsd*-gnu | dragonfly*) 6679 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' 6680 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' 6681 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 6682 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6683 ;; 6684 6685 hpux9*) 6686 if test "$GCC" = yes; then 6687 _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' 6688 else 6689 _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' 6690 fi 6691 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' 6692 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 6693 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 6694 6695 # hardcode_minus_L: Not really in the search PATH, 6696 # but as the default location of the library. 6697 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes 6698 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' 6699 ;; 6700 6701 hpux10*) 6702 if test "$GCC" = yes -a "$with_gnu_ld" = no; then 6703 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' 6704 else 6705 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' 6706 fi 6707 if test "$with_gnu_ld" = no; then 6708 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' 6709 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 6710 6711 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 6712 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' 6713 6714 # hardcode_minus_L: Not really in the search PATH, 6715 # but as the default location of the library. 6716 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes 6717 fi 6718 ;; 6719 6720 hpux11*) 6721 if test "$GCC" = yes -a "$with_gnu_ld" = no; then 6722 case $host_cpu in 6723 hppa*64*) 6724 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' 6725 ;; 6726 ia64*) 6727 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' 6728 ;; 6729 *) 6730 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' 6731 ;; 6732 esac 6733 else 6734 case $host_cpu in 6735 hppa*64*) 6736 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' 6737 ;; 6738 ia64*) 6739 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' 6740 ;; 6741 *) 6742 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' 6743 ;; 6744 esac 6745 fi 6746 if test "$with_gnu_ld" = no; then 6747 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' 6748 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 6749 6750 case $host_cpu in 6751 hppa*64*|ia64*) 6752 _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' 6753 _LT_AC_TAGVAR(hardcode_direct, $1)=no 6754 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6755 ;; 6756 *) 6757 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 6758 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' 6759 6760 # hardcode_minus_L: Not really in the search PATH, 6761 # but as the default location of the library. 6762 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes 6763 ;; 6764 esac 6765 fi 6766 ;; 6767 6768 irix5* | irix6* | nonstopux*) 6769 if test "$GCC" = yes; then 6770 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' 6771 else 6772 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' 6773 _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir' 6774 fi 6775 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' 6776 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 6777 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes 6778 ;; 6779 6780 netbsd*) 6781 if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then 6782 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out 6783 else 6784 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF 6785 fi 6786 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' 6787 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 6788 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6789 ;; 6790 6791 newsos6) 6792 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' 6793 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 6794 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' 6795 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 6796 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6797 ;; 6798 6799 openbsd*) 6800 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 6801 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6802 if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then 6803 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' 6804 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' 6805 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' 6806 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' 6807 else 6808 case $host_os in 6809 openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) 6810 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' 6811 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' 6812 ;; 6813 *) 6814 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' 6815 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' 6816 ;; 6817 esac 6818 fi 6819 ;; 6820 6821 os2*) 6822 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' 6823 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes 6824 _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported 6825 _LT_AC_TAGVAR(archive_cmds, $1)='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' 6826 _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' 6827 ;; 6828 6829 osf3*) 6830 if test "$GCC" = yes; then 6831 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' 6832 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' 6833 else 6834 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' 6835 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' 6836 fi 6837 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' 6838 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 6839 ;; 6840 6841 osf4* | osf5*) # as osf3* with the addition of -msym flag 6842 if test "$GCC" = yes; then 6843 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' 6844 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' 6845 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' 6846 else 6847 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' 6848 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' 6849 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ 6850 $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' 6851 6852 # Both c and cxx compiler support -rpath directly 6853 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' 6854 fi 6855 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 6856 ;; 6857 6858 solaris*) 6859 _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text' 6860 if test "$GCC" = yes; then 6861 wlarc='${wl}' 6862 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' 6863 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ 6864 $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' 6865 else 6866 wlarc='' 6867 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' 6868 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ 6869 $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' 6870 fi 6871 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' 6872 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6873 case $host_os in 6874 solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; 6875 *) 6876 # The compiler driver will combine linker options so we 6877 # cannot just pass the convience library names through 6878 # without $wl, iff we do not link with $LD. 6879 # Luckily, gcc supports the same syntax we need for Sun Studio. 6880 # Supported since Solaris 2.6 (maybe 2.5.1?) 6881 case $wlarc in 6882 '') 6883 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; 6884 *) 6885 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; 6886 esac ;; 6887 esac 6888 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes 6889 ;; 6890 6891 sunos4*) 6892 if test "x$host_vendor" = xsequent; then 6893 # Use $CC to link under sequent, because it throws in some extra .o 6894 # files that make .init and .fini sections work. 6895 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' 6896 else 6897 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' 6898 fi 6899 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' 6900 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 6901 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes 6902 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6903 ;; 6904 6905 sysv4) 6906 case $host_vendor in 6907 sni) 6908 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' 6909 _LT_AC_TAGVAR(hardcode_direct, $1)=yes # is this really true??? 6910 ;; 6911 siemens) 6912 ## LD is ld it makes a PLAMLIB 6913 ## CC just makes a GrossModule. 6914 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' 6915 _LT_AC_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' 6916 _LT_AC_TAGVAR(hardcode_direct, $1)=no 6917 ;; 6918 motorola) 6919 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' 6920 _LT_AC_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie 6921 ;; 6922 esac 6923 runpath_var='LD_RUN_PATH' 6924 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6925 ;; 6926 6927 sysv4.3*) 6928 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' 6929 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6930 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' 6931 ;; 6932 6933 sysv4*MP*) 6934 if test -d /usr/nec; then 6935 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' 6936 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6937 runpath_var=LD_RUN_PATH 6938 hardcode_runpath_var=yes 6939 _LT_AC_TAGVAR(ld_shlibs, $1)=yes 6940 fi 6941 ;; 6942 6943 sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7*) 6944 _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' 6945 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no 6946 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6947 runpath_var='LD_RUN_PATH' 6948 6949 if test "$GCC" = yes; then 6950 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' 6951 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' 6952 else 6953 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' 6954 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' 6955 fi 6956 ;; 6957 6958 sysv5* | sco3.2v5* | sco5v6*) 6959 # Note: We can NOT use -z defs as we might desire, because we do not 6960 # link with -lc, and that would cause any symbols used from libc to 6961 # always be unresolved, which means just about no library would 6962 # ever link correctly. If we're not using GNU ld we use -z text 6963 # though, which does catch some bad symbols but isn't as heavy-handed 6964 # as -z defs. 6965 _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' 6966 _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' 6967 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no 6968 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6969 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' 6970 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' 6971 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes 6972 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' 6973 runpath_var='LD_RUN_PATH' 6974 6975 if test "$GCC" = yes; then 6976 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' 6977 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' 6978 else 6979 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' 6980 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' 6981 fi 6982 ;; 6983 6984 uts4*) 6985 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' 6986 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' 6987 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6988 ;; 6989 6990 *) 6991 _LT_AC_TAGVAR(ld_shlibs, $1)=no 6992 ;; 6993 esac 6994 fi 6995]) 6996AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) 6997test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no 6998 6999# 7000# Do we need to explicitly link libc? 7001# 7002case "x$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)" in 7003x|xyes) 7004 # Assume -lc should be added 7005 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes 7006 7007 if test "$enable_shared" = yes && test "$GCC" = yes; then 7008 case $_LT_AC_TAGVAR(archive_cmds, $1) in 7009 *'~'*) 7010 # FIXME: we may have to deal with multi-command sequences. 7011 ;; 7012 '$CC '*) 7013 # Test whether the compiler implicitly links with -lc since on some 7014 # systems, -lgcc has to come before -lc. If gcc already passes -lc 7015 # to ld, don't add -lc before -lgcc. 7016 AC_MSG_CHECKING([whether -lc should be explicitly linked in]) 7017 $rm conftest* 7018 printf "$lt_simple_compile_test_code" > conftest.$ac_ext 7019 7020 if AC_TRY_EVAL(ac_compile) 2>conftest.err; then 7021 soname=conftest 7022 lib=conftest 7023 libobjs=conftest.$ac_objext 7024 deplibs= 7025 wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) 7026 pic_flag=$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) 7027 compiler_flags=-v 7028 linker_flags=-v 7029 verstring= 7030 output_objdir=. 7031 libname=conftest 7032 lt_save_allow_undefined_flag=$_LT_AC_TAGVAR(allow_undefined_flag, $1) 7033 _LT_AC_TAGVAR(allow_undefined_flag, $1)= 7034 if AC_TRY_EVAL(_LT_AC_TAGVAR(archive_cmds, $1) 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 7035 then 7036 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no 7037 else 7038 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes 7039 fi 7040 _LT_AC_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag 7041 else 7042 cat conftest.err 1>&5 7043 fi 7044 $rm conftest* 7045 AC_MSG_RESULT([$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)]) 7046 ;; 7047 esac 7048 fi 7049 ;; 7050esac 7051]) 7052m4trace:acinclude.m4:6876: -1- AC_DEFUN([_LT_AC_FILE_LTDLL_C], [ 7053# /* ltdll.c starts here */ 7054# #define WIN32_LEAN_AND_MEAN 7055# #include <windows.h> 7056# #undef WIN32_LEAN_AND_MEAN 7057# #include <stdio.h> 7058# 7059# #ifndef __CYGWIN__ 7060# # ifdef __CYGWIN32__ 7061# # define __CYGWIN__ __CYGWIN32__ 7062# # endif 7063# #endif 7064# 7065# #ifdef __cplusplus 7066# extern "C" { 7067# #endif 7068# BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved); 7069# #ifdef __cplusplus 7070# } 7071# #endif 7072# 7073# #ifdef __CYGWIN__ 7074# #include <cygwin/cygwin_dll.h> 7075# DECLARE_CYGWIN_DLL( DllMain ); 7076# #endif 7077# HINSTANCE __hDllInstance_base; 7078# 7079# BOOL APIENTRY 7080# DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved) 7081# { 7082# __hDllInstance_base = hInst; 7083# return TRUE; 7084# } 7085# /* ltdll.c ends here */ 7086]) 7087m4trace:acinclude.m4:6915: -1- AC_DEFUN([_LT_AC_TAGVAR], [ifelse([$2], [], [$1], [$1_$2])]) 7088m4trace:acinclude.m4:6919: -1- AC_DEFUN([AM_PROG_LIBTOOL], [AC_PROG_LIBTOOL]) 7089m4trace:acinclude.m4:6920: -1- AC_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) 7090m4trace:acinclude.m4:6921: -1- AC_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) 7091m4trace:acinclude.m4:6922: -1- AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) 7092m4trace:acinclude.m4:6923: -1- AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) 7093m4trace:acinclude.m4:6924: -1- AC_DEFUN([AM_PROG_LD], [AC_PROG_LD]) 7094m4trace:acinclude.m4:6925: -1- AC_DEFUN([AM_PROG_NM], [AC_PROG_NM]) 7095m4trace:acinclude.m4:6930: -1- AC_DEFUN([LT_AC_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj, no) 7096 test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" 7097 AC_SUBST(GCJFLAGS) 7098]) 7099m4trace:acinclude.m4:6936: -1- AC_DEFUN([LT_AC_PROG_RC], [AC_CHECK_TOOL(RC, windres, no) 7100]) 7101m4trace:acinclude.m4:6950: -1- AC_DEFUN([LT_AC_PROG_SED], [AC_MSG_CHECKING([for a sed that does not truncate output]) 7102AC_CACHE_VAL(lt_cv_path_SED, 7103[# Loop through the user's path and test for sed and gsed. 7104# Then use that list of sed's as ones to test for truncation. 7105as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 7106for as_dir in $PATH 7107do 7108 IFS=$as_save_IFS 7109 test -z "$as_dir" && as_dir=. 7110 for lt_ac_prog in sed gsed; do 7111 for ac_exec_ext in '' $ac_executable_extensions; do 7112 if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then 7113 lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" 7114 fi 7115 done 7116 done 7117done 7118lt_ac_max=0 7119lt_ac_count=0 7120# Add /usr/xpg4/bin/sed as it is typically found on Solaris 7121# along with /bin/sed that truncates output. 7122for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do 7123 test ! -f $lt_ac_sed && continue 7124 cat /dev/null > conftest.in 7125 lt_ac_count=0 7126 echo $ECHO_N "0123456789$ECHO_C" >conftest.in 7127 # Check for GNU sed and select it if it is found. 7128 if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then 7129 lt_cv_path_SED=$lt_ac_sed 7130 break 7131 fi 7132 while true; do 7133 cat conftest.in conftest.in >conftest.tmp 7134 mv conftest.tmp conftest.in 7135 cp conftest.in conftest.nl 7136 echo >>conftest.nl 7137 $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break 7138 cmp -s conftest.out conftest.nl || break 7139 # 10000 chars as input seems more than enough 7140 test $lt_ac_count -gt 10 && break 7141 lt_ac_count=`expr $lt_ac_count + 1` 7142 if test $lt_ac_count -gt $lt_ac_max; then 7143 lt_ac_max=$lt_ac_count 7144 lt_cv_path_SED=$lt_ac_sed 7145 fi 7146 done 7147done 7148]) 7149SED=$lt_cv_path_SED 7150AC_MSG_RESULT([$SED]) 7151]) 7152m4trace:acinclude.m4:7025: -1- AC_DEFUN([AM_PATH_LIBGCRYPT], [ AC_ARG_WITH(libgcrypt-prefix, 7153 AC_HELP_STRING([--with-libgcrypt-prefix=PFX], 7154 [prefix where LIBGCRYPT is installed (optional)]), 7155 libgcrypt_config_prefix="$withval", libgcrypt_config_prefix="") 7156 if test x$libgcrypt_config_prefix != x ; then 7157 if test x${LIBGCRYPT_CONFIG+set} != xset ; then 7158 LIBGCRYPT_CONFIG=$libgcrypt_config_prefix/bin/libgcrypt-config 7159 fi 7160 fi 7161 7162 AC_PATH_PROG(LIBGCRYPT_CONFIG, libgcrypt-config, no) 7163 tmp=ifelse([$1], ,1:1.2.0,$1) 7164 if echo "$tmp" | grep ':' >/dev/null 2>/dev/null ; then 7165 req_libgcrypt_api=`echo "$tmp" | sed 's/\(.*\):\(.*\)/\1/'` 7166 min_libgcrypt_version=`echo "$tmp" | sed 's/\(.*\):\(.*\)/\2/'` 7167 else 7168 req_libgcrypt_api=0 7169 min_libgcrypt_version="$tmp" 7170 fi 7171 7172 AC_MSG_CHECKING(for LIBGCRYPT - version >= $min_libgcrypt_version) 7173 ok=no 7174 if test "$LIBGCRYPT_CONFIG" != "no" ; then 7175 req_major=`echo $min_libgcrypt_version | \ 7176 sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\1/'` 7177 req_minor=`echo $min_libgcrypt_version | \ 7178 sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\2/'` 7179 req_micro=`echo $min_libgcrypt_version | \ 7180 sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\3/'` 7181 libgcrypt_config_version=`$LIBGCRYPT_CONFIG --version` 7182 major=`echo $libgcrypt_config_version | \ 7183 sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\).*/\1/'` 7184 minor=`echo $libgcrypt_config_version | \ 7185 sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\).*/\2/'` 7186 micro=`echo $libgcrypt_config_version | \ 7187 sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\).*/\3/'` 7188 if test "$major" -gt "$req_major"; then 7189 ok=yes 7190 else 7191 if test "$major" -eq "$req_major"; then 7192 if test "$minor" -gt "$req_minor"; then 7193 ok=yes 7194 else 7195 if test "$minor" -eq "$req_minor"; then 7196 if test "$micro" -ge "$req_micro"; then 7197 ok=yes 7198 fi 7199 fi 7200 fi 7201 fi 7202 fi 7203 fi 7204 if test $ok = yes; then 7205 AC_MSG_RESULT([yes ($libgcrypt_config_version)]) 7206 else 7207 AC_MSG_RESULT(no) 7208 fi 7209 if test $ok = yes; then 7210 # If we have a recent libgcrypt, we should also check that the 7211 # API is compatible 7212 if test "$req_libgcrypt_api" -gt 0 ; then 7213 tmp=`$LIBGCRYPT_CONFIG --api-version 2>/dev/null || echo 0` 7214 if test "$tmp" -gt 0 ; then 7215 AC_MSG_CHECKING([LIBGCRYPT API version]) 7216 if test "$req_libgcrypt_api" -eq "$tmp" ; then 7217 AC_MSG_RESULT([okay]) 7218 else 7219 ok=no 7220 AC_MSG_RESULT([does not match. want=$req_libgcrypt_api got=$tmp]) 7221 fi 7222 fi 7223 fi 7224 fi 7225 if test $ok = yes; then 7226 LIBGCRYPT_CFLAGS=`$LIBGCRYPT_CONFIG --cflags` 7227 LIBGCRYPT_LIBS=`$LIBGCRYPT_CONFIG --libs` 7228 ifelse([$2], , :, [$2]) 7229 else 7230 LIBGCRYPT_CFLAGS="" 7231 LIBGCRYPT_LIBS="" 7232 ifelse([$3], , :, [$3]) 7233 fi 7234 AC_SUBST(LIBGCRYPT_CFLAGS) 7235 AC_SUBST(LIBGCRYPT_LIBS) 7236]) 7237m4trace:configure.ac:2: -1- m4_pattern_forbid([^_?A[CHUM]_]) 7238m4trace:configure.ac:2: -1- m4_pattern_forbid([_AC_]) 7239m4trace:configure.ac:2: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS']) 7240m4trace:configure.ac:2: -1- m4_pattern_allow([^AS_FLAGS$]) 7241m4trace:configure.ac:2: -1- m4_pattern_forbid([^_?m4_]) 7242m4trace:configure.ac:2: -1- m4_pattern_forbid([^dnl$]) 7243m4trace:configure.ac:2: -1- m4_pattern_forbid([^_?AS_]) 7244m4trace:configure.ac:2: -1- m4_pattern_allow([^SHELL$]) 7245m4trace:configure.ac:2: -1- m4_pattern_allow([^PATH_SEPARATOR$]) 7246m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_NAME$]) 7247m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_TARNAME$]) 7248m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_VERSION$]) 7249m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_STRING$]) 7250m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$]) 7251m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_URL$]) 7252m4trace:configure.ac:2: -1- m4_pattern_allow([^exec_prefix$]) 7253m4trace:configure.ac:2: -1- m4_pattern_allow([^prefix$]) 7254m4trace:configure.ac:2: -1- m4_pattern_allow([^program_transform_name$]) 7255m4trace:configure.ac:2: -1- m4_pattern_allow([^bindir$]) 7256m4trace:configure.ac:2: -1- m4_pattern_allow([^sbindir$]) 7257m4trace:configure.ac:2: -1- m4_pattern_allow([^libexecdir$]) 7258m4trace:configure.ac:2: -1- m4_pattern_allow([^datarootdir$]) 7259m4trace:configure.ac:2: -1- m4_pattern_allow([^datadir$]) 7260m4trace:configure.ac:2: -1- m4_pattern_allow([^sysconfdir$]) 7261m4trace:configure.ac:2: -1- m4_pattern_allow([^sharedstatedir$]) 7262m4trace:configure.ac:2: -1- m4_pattern_allow([^localstatedir$]) 7263m4trace:configure.ac:2: -1- m4_pattern_allow([^includedir$]) 7264m4trace:configure.ac:2: -1- m4_pattern_allow([^oldincludedir$]) 7265m4trace:configure.ac:2: -1- m4_pattern_allow([^docdir$]) 7266m4trace:configure.ac:2: -1- m4_pattern_allow([^infodir$]) 7267m4trace:configure.ac:2: -1- m4_pattern_allow([^htmldir$]) 7268m4trace:configure.ac:2: -1- m4_pattern_allow([^dvidir$]) 7269m4trace:configure.ac:2: -1- m4_pattern_allow([^pdfdir$]) 7270m4trace:configure.ac:2: -1- m4_pattern_allow([^psdir$]) 7271m4trace:configure.ac:2: -1- m4_pattern_allow([^libdir$]) 7272m4trace:configure.ac:2: -1- m4_pattern_allow([^localedir$]) 7273m4trace:configure.ac:2: -1- m4_pattern_allow([^mandir$]) 7274m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_NAME$]) 7275m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_TARNAME$]) 7276m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_VERSION$]) 7277m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_STRING$]) 7278m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$]) 7279m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_URL$]) 7280m4trace:configure.ac:2: -1- m4_pattern_allow([^DEFS$]) 7281m4trace:configure.ac:2: -1- m4_pattern_allow([^ECHO_C$]) 7282m4trace:configure.ac:2: -1- m4_pattern_allow([^ECHO_N$]) 7283m4trace:configure.ac:2: -1- m4_pattern_allow([^ECHO_T$]) 7284m4trace:configure.ac:2: -1- m4_pattern_allow([^LIBS$]) 7285m4trace:configure.ac:2: -1- m4_pattern_allow([^build_alias$]) 7286m4trace:configure.ac:2: -1- m4_pattern_allow([^host_alias$]) 7287m4trace:configure.ac:2: -1- m4_pattern_allow([^target_alias$]) 7288m4trace:configure.ac:3: -1- AM_INIT_AUTOMAKE([LibVNCServer], [0.9.9]) 7289m4trace:configure.ac:3: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$]) 7290m4trace:configure.ac:3: -1- AM_SET_CURRENT_AUTOMAKE_VERSION 7291m4trace:configure.ac:3: -1- AM_AUTOMAKE_VERSION([1.11.6]) 7292m4trace:configure.ac:3: -1- _AM_AUTOCONF_VERSION([2.69]) 7293m4trace:configure.ac:3: -1- m4_pattern_allow([^INSTALL_PROGRAM$]) 7294m4trace:configure.ac:3: -1- m4_pattern_allow([^INSTALL_SCRIPT$]) 7295m4trace:configure.ac:3: -1- m4_pattern_allow([^INSTALL_DATA$]) 7296m4trace:configure.ac:3: -1- m4_pattern_allow([^am__isrc$]) 7297m4trace:configure.ac:3: -1- _AM_SUBST_NOTMAKE([am__isrc]) 7298m4trace:configure.ac:3: -1- m4_pattern_allow([^CYGPATH_W$]) 7299m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE$]) 7300m4trace:configure.ac:3: -1- m4_pattern_allow([^VERSION$]) 7301m4trace:configure.ac:3: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) 7302 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])]) 7303m4trace:configure.ac:3: -2- _AM_MANGLE_OPTION([no-define]) 7304m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE$]) 7305m4trace:configure.ac:3: -1- m4_pattern_allow([^VERSION$]) 7306m4trace:configure.ac:3: -1- AM_SANITY_CHECK 7307m4trace:configure.ac:3: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) 7308m4trace:configure.ac:3: -1- AM_MISSING_HAS_RUN 7309m4trace:configure.ac:3: -1- AM_AUX_DIR_EXPAND 7310m4trace:configure.ac:3: -1- m4_pattern_allow([^ACLOCAL$]) 7311m4trace:configure.ac:3: -1- AM_MISSING_PROG([AUTOCONF], [autoconf]) 7312m4trace:configure.ac:3: -1- m4_pattern_allow([^AUTOCONF$]) 7313m4trace:configure.ac:3: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) 7314m4trace:configure.ac:3: -1- m4_pattern_allow([^AUTOMAKE$]) 7315m4trace:configure.ac:3: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader]) 7316m4trace:configure.ac:3: -1- m4_pattern_allow([^AUTOHEADER$]) 7317m4trace:configure.ac:3: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo]) 7318m4trace:configure.ac:3: -1- m4_pattern_allow([^MAKEINFO$]) 7319m4trace:configure.ac:3: -1- AM_PROG_INSTALL_SH 7320m4trace:configure.ac:3: -1- m4_pattern_allow([^install_sh$]) 7321m4trace:configure.ac:3: -1- AM_PROG_INSTALL_STRIP 7322m4trace:configure.ac:3: -1- m4_pattern_allow([^STRIP$]) 7323m4trace:configure.ac:3: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$]) 7324m4trace:configure.ac:3: -1- AM_PROG_MKDIR_P 7325m4trace:configure.ac:3: -1- m4_pattern_allow([^MKDIR_P$]) 7326m4trace:configure.ac:3: -1- m4_pattern_allow([^mkdir_p$]) 7327m4trace:configure.ac:3: -1- m4_pattern_allow([^AWK$]) 7328m4trace:configure.ac:3: -1- m4_pattern_allow([^SET_MAKE$]) 7329m4trace:configure.ac:3: -1- AM_SET_LEADING_DOT 7330m4trace:configure.ac:3: -1- m4_pattern_allow([^am__leading_dot$]) 7331m4trace:configure.ac:3: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], 7332 [_AM_PROG_TAR([v7])])]) 7333m4trace:configure.ac:3: -2- _AM_MANGLE_OPTION([tar-ustar]) 7334m4trace:configure.ac:3: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])]) 7335m4trace:configure.ac:3: -2- _AM_MANGLE_OPTION([tar-pax]) 7336m4trace:configure.ac:3: -1- _AM_PROG_TAR([v7]) 7337m4trace:configure.ac:3: -1- m4_pattern_allow([^AMTAR$]) 7338m4trace:configure.ac:3: -1- m4_pattern_allow([^am__tar$]) 7339m4trace:configure.ac:3: -1- m4_pattern_allow([^am__untar$]) 7340m4trace:configure.ac:3: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC], 7341 [_AM_DEPENDENCIES(CC)], 7342 [define([AC_PROG_CC], 7343 defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl 7344AC_PROVIDE_IFELSE([AC_PROG_CXX], 7345 [_AM_DEPENDENCIES(CXX)], 7346 [define([AC_PROG_CXX], 7347 defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl 7348AC_PROVIDE_IFELSE([AC_PROG_OBJC], 7349 [_AM_DEPENDENCIES(OBJC)], 7350 [define([AC_PROG_OBJC], 7351 defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl 7352]) 7353m4trace:configure.ac:3: -2- _AM_MANGLE_OPTION([no-dependencies]) 7354m4trace:configure.ac:3: -1- _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])]) 7355m4trace:configure.ac:3: -2- _AM_MANGLE_OPTION([silent-rules]) 7356m4trace:configure.ac:4: -1- AM_SILENT_RULES([yes]) 7357m4trace:configure.ac:4: -1- m4_pattern_allow([^AM_V$]) 7358m4trace:configure.ac:4: -1- AM_SUBST_NOTMAKE([AM_V]) 7359m4trace:configure.ac:4: -1- _AM_SUBST_NOTMAKE([AM_V]) 7360m4trace:configure.ac:4: -1- m4_pattern_allow([^AM_DEFAULT_V$]) 7361m4trace:configure.ac:4: -1- AM_SUBST_NOTMAKE([AM_DEFAULT_V]) 7362m4trace:configure.ac:4: -1- _AM_SUBST_NOTMAKE([AM_DEFAULT_V]) 7363m4trace:configure.ac:4: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$]) 7364m4trace:configure.ac:4: -1- m4_pattern_allow([^AM_BACKSLASH$]) 7365m4trace:configure.ac:4: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH]) 7366m4trace:configure.ac:5: -1- AM_CONFIG_HEADER([rfbconfig.h]) 7367m4trace:configure.ac:5: -1- _m4_warn([obsolete], [The macro `AM_CONFIG_HEADER' is obsolete. 7368You should run autoupdate.], [/usr/share/aclocal-1.11/header.m4:12: AM_CONFIG_HEADER is expanded from... 7369configure.ac:5: the top level]) 7370m4trace:configure.ac:6: -1- AX_PREFIX_CONFIG_H([rfb/rfbconfig.h]) 7371m4trace:configure.ac:9: -1- m4_pattern_allow([^CC$]) 7372m4trace:configure.ac:9: -1- m4_pattern_allow([^CFLAGS$]) 7373m4trace:configure.ac:9: -1- m4_pattern_allow([^LDFLAGS$]) 7374m4trace:configure.ac:9: -1- m4_pattern_allow([^LIBS$]) 7375m4trace:configure.ac:9: -1- m4_pattern_allow([^CPPFLAGS$]) 7376m4trace:configure.ac:9: -1- m4_pattern_allow([^CC$]) 7377m4trace:configure.ac:9: -1- m4_pattern_allow([^CC$]) 7378m4trace:configure.ac:9: -1- m4_pattern_allow([^CC$]) 7379m4trace:configure.ac:9: -1- m4_pattern_allow([^CC$]) 7380m4trace:configure.ac:9: -1- m4_pattern_allow([^ac_ct_CC$]) 7381m4trace:configure.ac:9: -1- m4_pattern_allow([^EXEEXT$]) 7382m4trace:configure.ac:9: -1- m4_pattern_allow([^OBJEXT$]) 7383m4trace:configure.ac:9: -1- _AM_DEPENDENCIES([CC]) 7384m4trace:configure.ac:9: -1- AM_SET_DEPDIR 7385m4trace:configure.ac:9: -1- m4_pattern_allow([^DEPDIR$]) 7386m4trace:configure.ac:9: -1- AM_OUTPUT_DEPENDENCY_COMMANDS 7387m4trace:configure.ac:9: -1- AM_MAKE_INCLUDE 7388m4trace:configure.ac:9: -1- m4_pattern_allow([^am__include$]) 7389m4trace:configure.ac:9: -1- m4_pattern_allow([^am__quote$]) 7390m4trace:configure.ac:9: -1- AM_DEP_TRACK 7391m4trace:configure.ac:9: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) 7392m4trace:configure.ac:9: -1- m4_pattern_allow([^AMDEP_TRUE$]) 7393m4trace:configure.ac:9: -1- m4_pattern_allow([^AMDEP_FALSE$]) 7394m4trace:configure.ac:9: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE]) 7395m4trace:configure.ac:9: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE]) 7396m4trace:configure.ac:9: -1- m4_pattern_allow([^AMDEPBACKSLASH$]) 7397m4trace:configure.ac:9: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH]) 7398m4trace:configure.ac:9: -1- m4_pattern_allow([^am__nodep$]) 7399m4trace:configure.ac:9: -1- _AM_SUBST_NOTMAKE([am__nodep]) 7400m4trace:configure.ac:9: -1- m4_pattern_allow([^CCDEPMODE$]) 7401m4trace:configure.ac:9: -1- AM_CONDITIONAL([am__fastdepCC], [ 7402 test "x$enable_dependency_tracking" != xno \ 7403 && test "$am_cv_CC_dependencies_compiler_type" = gcc3]) 7404m4trace:configure.ac:9: -1- m4_pattern_allow([^am__fastdepCC_TRUE$]) 7405m4trace:configure.ac:9: -1- m4_pattern_allow([^am__fastdepCC_FALSE$]) 7406m4trace:configure.ac:9: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE]) 7407m4trace:configure.ac:9: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE]) 7408m4trace:configure.ac:10: -1- AM_PROG_CC_C_O 7409m4trace:configure.ac:10: -1- m4_pattern_allow([^NO_MINUS_C_MINUS_O$]) 7410m4trace:configure.ac:17: -1- m4_pattern_allow([^SET_MAKE$]) 7411m4trace:configure.ac:18: -1- AC_LIBTOOL_WIN32_DLL 7412m4trace:configure.ac:19: -1- AC_PROG_LIBTOOL 7413m4trace:configure.ac:19: -1- _AC_PROG_LIBTOOL 7414m4trace:configure.ac:19: -1- AC_LIBTOOL_SETUP 7415m4trace:configure.ac:19: -1- AC_ENABLE_SHARED 7416m4trace:configure.ac:19: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. 7417You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... 7418../../lib/autoconf/general.m4:1462: AC_ARG_ENABLE is expanded from... 7419acinclude.m4:2513: AC_ENABLE_SHARED is expanded from... 7420acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 7421acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 7422acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 7423configure.ac:19: the top level]) 7424m4trace:configure.ac:19: -1- AC_ENABLE_STATIC 7425m4trace:configure.ac:19: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. 7426You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... 7427../../lib/autoconf/general.m4:1462: AC_ARG_ENABLE is expanded from... 7428acinclude.m4:2552: AC_ENABLE_STATIC is expanded from... 7429acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 7430acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 7431acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 7432configure.ac:19: the top level]) 7433m4trace:configure.ac:19: -1- AC_ENABLE_FAST_INSTALL 7434m4trace:configure.ac:19: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. 7435You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... 7436../../lib/autoconf/general.m4:1462: AC_ARG_ENABLE is expanded from... 7437acinclude.m4:2591: AC_ENABLE_FAST_INSTALL is expanded from... 7438acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 7439acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 7440acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 7441configure.ac:19: the top level]) 7442m4trace:configure.ac:19: -1- m4_pattern_allow([^build$]) 7443m4trace:configure.ac:19: -1- m4_pattern_allow([^build_cpu$]) 7444m4trace:configure.ac:19: -1- m4_pattern_allow([^build_vendor$]) 7445m4trace:configure.ac:19: -1- m4_pattern_allow([^build_os$]) 7446m4trace:configure.ac:19: -1- m4_pattern_allow([^host$]) 7447m4trace:configure.ac:19: -1- m4_pattern_allow([^host_cpu$]) 7448m4trace:configure.ac:19: -1- m4_pattern_allow([^host_vendor$]) 7449m4trace:configure.ac:19: -1- m4_pattern_allow([^host_os$]) 7450m4trace:configure.ac:19: -1- AC_PROG_LD 7451m4trace:configure.ac:19: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. 7452You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... 7453../../lib/autoconf/general.m4:1481: AC_ARG_WITH is expanded from... 7454acinclude.m4:2732: AC_PROG_LD is expanded from... 7455acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 7456acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 7457acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 7458configure.ac:19: the top level]) 7459m4trace:configure.ac:19: -1- LT_AC_PROG_SED 7460m4trace:configure.ac:19: -1- AC_PROG_LD_GNU 7461m4trace:configure.ac:19: -1- AC_PROG_EGREP 7462m4trace:configure.ac:19: -1- m4_pattern_allow([^GREP$]) 7463m4trace:configure.ac:19: -1- m4_pattern_allow([^EGREP$]) 7464m4trace:configure.ac:19: -1- AC_PROG_LD_RELOAD_FLAG 7465m4trace:configure.ac:19: -1- AC_PROG_NM 7466m4trace:configure.ac:19: -1- m4_pattern_allow([^LN_S$]) 7467m4trace:configure.ac:19: -1- AC_DEPLIBS_CHECK_METHOD 7468m4trace:configure.ac:19: -1- AC_LIBTOOL_SYS_MAX_CMD_LEN 7469m4trace:configure.ac:19: -1- AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE 7470m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], []) 7471m4trace:configure.ac:19: -1- AC_LIBTOOL_OBJDIR 7472m4trace:configure.ac:19: -1- _LT_AC_SYS_COMPILER 7473m4trace:configure.ac:19: -1- _LT_AC_PROG_ECHO_BACKSLASH 7474m4trace:configure.ac:19: -1- _LT_AC_SHELL_INIT([ 7475# Check that we are running under the correct shell. 7476SHELL=${CONFIG_SHELL-/bin/sh} 7477 7478case X$ECHO in 7479X*--fallback-echo) 7480 # Remove one level of quotation (which was required for Make). 7481 ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','` 7482 ;; 7483esac 7484 7485echo=${ECHO-echo} 7486if test "X[$]1" = X--no-reexec; then 7487 # Discard the --no-reexec flag, and continue. 7488 shift 7489elif test "X[$]1" = X--fallback-echo; then 7490 # Avoid inline document here, it may be left over 7491 : 7492elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then 7493 # Yippee, $echo works! 7494 : 7495else 7496 # Restart under the correct shell. 7497 exec $SHELL "[$]0" --no-reexec ${1+"[$]@"} 7498fi 7499 7500if test "X[$]1" = X--fallback-echo; then 7501 # used as fallback echo 7502 shift 7503 cat <<EOF 7504[$]* 7505EOF 7506 exit 0 7507fi 7508 7509# The HP-UX ksh and POSIX shell print the target directory to stdout 7510# if CDPATH is set. 7511(unset CDPATH) >/dev/null 2>&1 && unset CDPATH 7512 7513if test -z "$ECHO"; then 7514if test "X${echo_test_string+set}" != Xset; then 7515# find a string as large as possible, as long as the shell can cope with it 7516 for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do 7517 # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... 7518 if (echo_test_string=`eval $cmd`) 2>/dev/null && 7519 echo_test_string=`eval $cmd` && 7520 (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null 7521 then 7522 break 7523 fi 7524 done 7525fi 7526 7527if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && 7528 echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && 7529 test "X$echo_testing_string" = "X$echo_test_string"; then 7530 : 7531else 7532 # The Solaris, AIX, and Digital Unix default echo programs unquote 7533 # backslashes. This makes it impossible to quote backslashes using 7534 # echo "$something" | sed 's/\\/\\\\/g' 7535 # 7536 # So, first we look for a working echo in the user's PATH. 7537 7538 lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR 7539 for dir in $PATH /usr/ucb; do 7540 IFS="$lt_save_ifs" 7541 if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && 7542 test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && 7543 echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && 7544 test "X$echo_testing_string" = "X$echo_test_string"; then 7545 echo="$dir/echo" 7546 break 7547 fi 7548 done 7549 IFS="$lt_save_ifs" 7550 7551 if test "X$echo" = Xecho; then 7552 # We didn't find a better echo, so look for alternatives. 7553 if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && 7554 echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && 7555 test "X$echo_testing_string" = "X$echo_test_string"; then 7556 # This shell has a builtin print -r that does the trick. 7557 echo='print -r' 7558 elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && 7559 test "X$CONFIG_SHELL" != X/bin/ksh; then 7560 # If we have ksh, try running configure again with it. 7561 ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} 7562 export ORIGINAL_CONFIG_SHELL 7563 CONFIG_SHELL=/bin/ksh 7564 export CONFIG_SHELL 7565 exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"} 7566 else 7567 # Try using printf. 7568 echo='printf %s\n' 7569 if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && 7570 echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && 7571 test "X$echo_testing_string" = "X$echo_test_string"; then 7572 # Cool, printf works 7573 : 7574 elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && 7575 test "X$echo_testing_string" = 'X\t' && 7576 echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && 7577 test "X$echo_testing_string" = "X$echo_test_string"; then 7578 CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL 7579 export CONFIG_SHELL 7580 SHELL="$CONFIG_SHELL" 7581 export SHELL 7582 echo="$CONFIG_SHELL [$]0 --fallback-echo" 7583 elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && 7584 test "X$echo_testing_string" = 'X\t' && 7585 echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && 7586 test "X$echo_testing_string" = "X$echo_test_string"; then 7587 echo="$CONFIG_SHELL [$]0 --fallback-echo" 7588 else 7589 # maybe with a smaller string... 7590 prev=: 7591 7592 for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do 7593 if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null 7594 then 7595 break 7596 fi 7597 prev="$cmd" 7598 done 7599 7600 if test "$prev" != 'sed 50q "[$]0"'; then 7601 echo_test_string=`eval $prev` 7602 export echo_test_string 7603 exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"} 7604 else 7605 # Oops. We lost completely, so just stick with echo. 7606 echo=echo 7607 fi 7608 fi 7609 fi 7610 fi 7611fi 7612fi 7613 7614# Copy echo and quote the copy suitably for passing to libtool from 7615# the Makefile, instead of quoting the original, which is used later. 7616ECHO=$echo 7617if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then 7618 ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo" 7619fi 7620 7621AC_SUBST(ECHO) 7622]) 7623m4trace:configure.ac:19: -1- m4_pattern_allow([^ECHO$]) 7624m4trace:configure.ac:19: -1- m4_pattern_allow([^AR$]) 7625m4trace:configure.ac:19: -1- m4_pattern_allow([^RANLIB$]) 7626m4trace:configure.ac:19: -1- m4_pattern_allow([^STRIP$]) 7627m4trace:configure.ac:19: -1- _LT_CC_BASENAME([$compiler]) 7628m4trace:configure.ac:19: -1- AC_PATH_MAGIC 7629m4trace:configure.ac:19: -1- AC_PATH_TOOL_PREFIX([${ac_tool_prefix}file], [/usr/bin$PATH_SEPARATOR$PATH]) 7630m4trace:configure.ac:19: -1- AC_PATH_TOOL_PREFIX([file], [/usr/bin$PATH_SEPARATOR$PATH]) 7631m4trace:configure.ac:19: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. 7632You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... 7633../../lib/autoconf/general.m4:1462: AC_ARG_ENABLE is expanded from... 7634acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 7635acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 7636acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 7637configure.ac:19: the top level]) 7638m4trace:configure.ac:19: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. 7639You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... 7640../../lib/autoconf/general.m4:1481: AC_ARG_WITH is expanded from... 7641acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 7642acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 7643acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 7644configure.ac:19: the top level]) 7645m4trace:configure.ac:19: -1- AC_LIBTOOL_LANG_C_CONFIG 7646m4trace:configure.ac:19: -1- _LT_AC_LANG_C_CONFIG 7647m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([objext], []) 7648m4trace:configure.ac:19: -1- _LT_AC_SYS_COMPILER 7649m4trace:configure.ac:19: -1- _LT_COMPILER_BOILERPLATE 7650m4trace:configure.ac:19: -1- _LT_LINKER_BOILERPLATE 7651m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_COMPILER_NO_RTTI([]) 7652m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], []) 7653m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], []) 7654m4trace:configure.ac:19: -1- AC_LIBTOOL_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], [lt_cv_prog_compiler_rtti_exceptions], [-fno-rtti -fno-exceptions], [], [_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, )="$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, ) -fno-rtti -fno-exceptions"]) 7655m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], []) 7656m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], []) 7657m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_COMPILER_PIC([]) 7658m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7659m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7660m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7661m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7662m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7663m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7664m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7665m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7666m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7667m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], []) 7668m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7669m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7670m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7671m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7672m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7673m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7674m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7675m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7676m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7677m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7678m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7679m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7680m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7681m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7682m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7683m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7684m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7685m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7686m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7687m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7688m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7689m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7690m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7691m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7692m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7693m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7694m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7695m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7696m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7697m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7698m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7699m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7700m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7701m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7702m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7703m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7704m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7705m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7706m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7707m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7708m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7709m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7710m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], []) 7711m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7712m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7713m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], []) 7714m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7715m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7716m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7717m4trace:configure.ac:19: -2- _LT_AC_TAGVAR([lt_prog_compiler_pic_works], []) 7718m4trace:configure.ac:19: -1- AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, ) works], [lt_prog_compiler_pic_works], [$_LT_AC_TAGVAR(lt_prog_compiler_pic, )ifelse([],[],[ -DPIC],[ifelse([],[CXX],[ -DPIC],[])])], [], [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, ) in 7719 "" | " "*) ;; 7720 *) _LT_AC_TAGVAR(lt_prog_compiler_pic, )=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, )" ;; 7721 esac], [_LT_AC_TAGVAR(lt_prog_compiler_pic, )= 7722 _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, )=no]) 7723m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7724m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7725m4trace:configure.ac:19: -1- _m4_warn([syntax], [AC_CACHE_VAL(lt_prog_compiler_pic_works, ...): suspicious cache-id, must contain _cv_ to be cached], [../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... 7726../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... 7727acinclude.m4:1219: AC_LIBTOOL_COMPILER_OPTION is expanded from... 7728acinclude.m4:5419: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... 7729acinclude.m4:3255: _LT_AC_LANG_C_CONFIG is expanded from... 7730acinclude.m4:3254: AC_LIBTOOL_LANG_C_CONFIG is expanded from... 7731acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 7732acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 7733acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 7734configure.ac:19: the top level]) 7735m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7736m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7737m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7738m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7739m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7740m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], []) 7741m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7742m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7743m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7744m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7745m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7746m4trace:configure.ac:19: -2- _LT_AC_TAGVAR([lt_prog_compiler_static_works], []) 7747m4trace:configure.ac:19: -1- AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], [lt_prog_compiler_static_works], [$lt_tmp_static_flag], [], [_LT_AC_TAGVAR(lt_prog_compiler_static, )=]) 7748m4trace:configure.ac:19: -1- _m4_warn([syntax], [AC_CACHE_VAL(lt_prog_compiler_static_works, ...): suspicious cache-id, must contain _cv_ to be cached], [../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... 7749../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... 7750acinclude.m4:1264: AC_LIBTOOL_LINKER_OPTION is expanded from... 7751acinclude.m4:5419: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... 7752acinclude.m4:3255: _LT_AC_LANG_C_CONFIG is expanded from... 7753acinclude.m4:3254: AC_LIBTOOL_LANG_C_CONFIG is expanded from... 7754acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 7755acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 7756acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 7757configure.ac:19: the top level]) 7758m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7759m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_CC_C_O([]) 7760m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], []) 7761m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], []) 7762m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], []) 7763m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], []) 7764m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], []) 7765m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], []) 7766m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], []) 7767m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], []) 7768m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], []) 7769m4trace:configure.ac:19: -1- AC_LIBTOOL_SYS_HARD_LINK_LOCKS([]) 7770m4trace:configure.ac:19: -1- _LT_AC_LOCK 7771m4trace:configure.ac:19: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. 7772You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... 7773../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... 7774../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... 7775../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... 7776acinclude.m4:1073: _LT_AC_LOCK is expanded from... 7777acinclude.m4:1677: AC_LIBTOOL_SYS_HARD_LINK_LOCKS is expanded from... 7778acinclude.m4:3255: _LT_AC_LANG_C_CONFIG is expanded from... 7779acinclude.m4:3254: AC_LIBTOOL_LANG_C_CONFIG is expanded from... 7780acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 7781acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 7782acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 7783configure.ac:19: the top level]) 7784m4trace:configure.ac:19: -1- m4_pattern_allow([^DLLTOOL$]) 7785m4trace:configure.ac:19: -1- m4_pattern_allow([^AS$]) 7786m4trace:configure.ac:19: -1- m4_pattern_allow([^OBJDUMP$]) 7787m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], []) 7788m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_LD_SHLIBS([]) 7789m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 7790m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], []) 7791m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7792m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 7793m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], []) 7794m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], []) 7795m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], []) 7796m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], []) 7797m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], []) 7798m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7799m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], []) 7800m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], []) 7801m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 7802m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], []) 7803m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 7804m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], []) 7805m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], []) 7806m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], []) 7807m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], []) 7808m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], []) 7809m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], []) 7810m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([include_expsyms], []) 7811m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([exclude_expsyms], []) 7812m4trace:configure.ac:19: -1- _LT_CC_BASENAME([$compiler]) 7813m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 7814m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7815m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], []) 7816m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], []) 7817m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], []) 7818m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 7819m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7820m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7821m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], []) 7822m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 7823m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 7824m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7825m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 7826m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7827m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 7828m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], []) 7829m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], []) 7830m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], []) 7831m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7832m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 7833m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 7834m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 7835m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 7836m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7837m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], []) 7838m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7839m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 7840m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], []) 7841m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], []) 7842m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7843m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 7844m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 7845m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7846m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7847m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 7848m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 7849m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7850m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 7851m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 7852m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 7853m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7854m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7855m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 7856m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 7857m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7858m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 7859m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 7860m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7861m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 7862m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 7863m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 7864m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7865m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], []) 7866m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], []) 7867m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 7868m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], []) 7869m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 7870m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], []) 7871m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 7872m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], []) 7873m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], []) 7874m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7875m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 7876m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], []) 7877m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], []) 7878m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 7879m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 7880m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], []) 7881m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7882m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], []) 7883m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], []) 7884m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 7885m4trace:configure.ac:19: -1- _LT_AC_SYS_LIBPATH_AIX 7886m4trace:configure.ac:19: -1- _m4_warn([syntax], [AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body], [../../lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from... 7887../../lib/autoconf/general.m4:2661: _AC_LINK_IFELSE is expanded from... 7888../../lib/autoconf/general.m4:2678: AC_LINK_IFELSE is expanded from... 7889acinclude.m4:893: _LT_AC_SYS_LIBPATH_AIX is expanded from... 7890acinclude.m4:5946: AC_LIBTOOL_PROG_LD_SHLIBS is expanded from... 7891acinclude.m4:3255: _LT_AC_LANG_C_CONFIG is expanded from... 7892acinclude.m4:3254: AC_LIBTOOL_LANG_C_CONFIG is expanded from... 7893acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 7894acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 7895acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 7896configure.ac:19: the top level]) 7897m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7898m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 7899m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7900m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 7901m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 7902m4trace:configure.ac:19: -1- _LT_AC_SYS_LIBPATH_AIX 7903m4trace:configure.ac:19: -1- _m4_warn([syntax], [AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body], [../../lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from... 7904../../lib/autoconf/general.m4:2661: _AC_LINK_IFELSE is expanded from... 7905../../lib/autoconf/general.m4:2678: AC_LINK_IFELSE is expanded from... 7906acinclude.m4:893: _LT_AC_SYS_LIBPATH_AIX is expanded from... 7907acinclude.m4:5946: AC_LIBTOOL_PROG_LD_SHLIBS is expanded from... 7908acinclude.m4:3255: _LT_AC_LANG_C_CONFIG is expanded from... 7909acinclude.m4:3254: AC_LIBTOOL_LANG_C_CONFIG is expanded from... 7910acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 7911acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 7912acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 7913configure.ac:19: the top level]) 7914m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7915m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], []) 7916m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 7917m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], []) 7918m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], []) 7919m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 7920m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7921m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7922m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], []) 7923m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 7924m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], []) 7925m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7926m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 7927m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7928m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], []) 7929m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], []) 7930m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([fix_srcfile_path], []) 7931m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], []) 7932m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 7933m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 7934m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 7935m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 7936m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], []) 7937m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 7938m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], []) 7939m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 7940m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], []) 7941m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], []) 7942m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7943m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], []) 7944m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 7945m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], []) 7946m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7947m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], []) 7948m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 7949m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], []) 7950m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 7951m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7952m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7953m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 7954m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 7955m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7956m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7957m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 7958m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 7959m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7960m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 7961m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], []) 7962m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 7963m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7964m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7965m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 7966m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 7967m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7968m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7969m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7970m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], []) 7971m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 7972m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], []) 7973m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], []) 7974m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7975m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7976m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7977m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], []) 7978m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 7979m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], []) 7980m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], []) 7981m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7982m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7983m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7984m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7985m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7986m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7987m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7988m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], []) 7989m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], []) 7990m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 7991m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 7992m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 7993m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], []) 7994m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], []) 7995m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7996m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7997m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], []) 7998m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7999m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], []) 8000m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], []) 8001m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8002m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8003m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8004m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 8005m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8006m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8007m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 8008m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8009m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], []) 8010m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8011m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 8012m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8013m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8014m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 8015m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8016m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], []) 8017m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8018m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8019m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8020m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8021m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8022m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], []) 8023m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8024m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8025m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], []) 8026m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8027m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8028m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8029m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8030m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8031m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], []) 8032m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8033m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8034m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8035m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8036m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8037m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 8038m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8039m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], []) 8040m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], []) 8041m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8042m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 8043m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8044m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 8045m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8046m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8047m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], []) 8048m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], []) 8049m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], []) 8050m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8051m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8052m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8053m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 8054m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], []) 8055m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8056m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8057m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 8058m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8059m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([reload_cmds], []) 8060m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 8061m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8062m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 8063m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8064m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8065m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8066m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], []) 8067m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8068m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8069m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 8070m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], []) 8071m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], []) 8072m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8073m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8074m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 8075m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8076m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 8077m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], []) 8078m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8079m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], []) 8080m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8081m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8082m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], []) 8083m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], []) 8084m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], []) 8085m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8086m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 8087m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8088m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 8089m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8090m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8091m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8092m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 8093m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 8094m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 8095m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 8096m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], []) 8097m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], []) 8098m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8099m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 8100m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 8101m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8102m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8103m4trace:configure.ac:19: -2- _LT_AC_TAGVAR([archive_cmds], []) 8104m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], []) 8105m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], []) 8106m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8107m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], []) 8108m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], []) 8109m4trace:configure.ac:19: -1- AC_LIBTOOL_SYS_DYNAMIC_LINKER([]) 8110m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([]) 8111m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], []) 8112m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8113m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([runpath_var], []) 8114m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], []) 8115m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 8116m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], []) 8117m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], []) 8118m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], []) 8119m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], []) 8120m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], []) 8121m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], []) 8122m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], []) 8123m4trace:configure.ac:19: -1- AC_LIBTOOL_SYS_LIB_STRIP 8124m4trace:configure.ac:19: -1- AC_LIBTOOL_DLOPEN_SELF 8125m4trace:configure.ac:19: -1- _LT_AC_CHECK_DLFCN 8126m4trace:configure.ac:19: -1- m4_pattern_allow([^CPP$]) 8127m4trace:configure.ac:19: -1- m4_pattern_allow([^CPPFLAGS$]) 8128m4trace:configure.ac:19: -1- m4_pattern_allow([^CPP$]) 8129m4trace:configure.ac:19: -1- m4_pattern_allow([^STDC_HEADERS$]) 8130m4trace:configure.ac:19: -1- m4_pattern_allow([^HAVE_DLFCN_H$]) 8131m4trace:configure.ac:19: -1- _LT_AC_TRY_DLOPEN_SELF([lt_cv_dlopen_self=yes], [lt_cv_dlopen_self=yes], [lt_cv_dlopen_self=no], [lt_cv_dlopen_self=cross]) 8132m4trace:configure.ac:19: -1- _LT_AC_TRY_DLOPEN_SELF([lt_cv_dlopen_self_static=yes], [lt_cv_dlopen_self_static=yes], [lt_cv_dlopen_self_static=no], [lt_cv_dlopen_self_static=cross]) 8133m4trace:configure.ac:19: -1- AC_LIBTOOL_CONFIG([]) 8134m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], []) 8135m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([CC], []) 8136m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([LD], []) 8137m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 8138m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 8139m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 8140m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], []) 8141m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], []) 8142m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], []) 8143m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], []) 8144m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], []) 8145m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], []) 8146m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], []) 8147m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], []) 8148m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], []) 8149m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predeps], []) 8150m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], []) 8151m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], []) 8152m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8153m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 8154m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postinstall_cmds], []) 8155m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postuninstall_cmds], []) 8156m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], []) 8157m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8158m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], []) 8159m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], []) 8160m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8161m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], []) 8162m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], []) 8163m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], []) 8164m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], []) 8165m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], []) 8166m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], []) 8167m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([exclude_expsyms], []) 8168m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([include_expsyms], []) 8169m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], []) 8170m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], []) 8171m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8172m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 8173m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], []) 8174m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], []) 8175m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], []) 8176m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], []) 8177m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], []) 8178m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], []) 8179m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], []) 8180m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([GCC], []) 8181m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([LD], []) 8182m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 8183m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 8184m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], []) 8185m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 8186m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], []) 8187m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], []) 8188m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], []) 8189m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], []) 8190m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], []) 8191m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], []) 8192m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], []) 8193m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8194m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 8195m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], []) 8196m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], []) 8197m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], []) 8198m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], []) 8199m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predeps], []) 8200m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], []) 8201m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], []) 8202m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8203m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], []) 8204m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], []) 8205m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8206m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], []) 8207m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], []) 8208m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 8209m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], []) 8210m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8211m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], []) 8212m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], []) 8213m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([fix_srcfile_path], []) 8214m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], []) 8215m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], []) 8216m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([exclude_expsyms], []) 8217m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([include_expsyms], []) 8218m4trace:configure.ac:19: -1- _LT_AC_TAGCONFIG 8219m4trace:configure.ac:19: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. 8220You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... 8221../../lib/autoconf/general.m4:1481: AC_ARG_WITH is expanded from... 8222acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 8223acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 8224acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 8225acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 8226configure.ac:19: the top level]) 8227m4trace:configure.ac:19: -1- _m4_warn([obsolete], [back quotes and double quotes must not be escaped in: tag name \"$tagname\" already exists], [acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 8228acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 8229acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 8230acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 8231configure.ac:19: the top level]) 8232m4trace:configure.ac:19: -1- AC_LIBTOOL_LANG_CXX_CONFIG 8233m4trace:configure.ac:19: -1- _LT_AC_LANG_CXX_CONFIG([CXX]) 8234m4trace:configure.ac:19: -1- m4_pattern_allow([^CXX$]) 8235m4trace:configure.ac:19: -1- m4_pattern_allow([^CXXFLAGS$]) 8236m4trace:configure.ac:19: -1- m4_pattern_allow([^LDFLAGS$]) 8237m4trace:configure.ac:19: -1- m4_pattern_allow([^LIBS$]) 8238m4trace:configure.ac:19: -1- m4_pattern_allow([^CPPFLAGS$]) 8239m4trace:configure.ac:19: -1- m4_pattern_allow([^CXX$]) 8240m4trace:configure.ac:19: -1- m4_pattern_allow([^ac_ct_CXX$]) 8241m4trace:configure.ac:19: -1- _AM_DEPENDENCIES([CXX]) 8242m4trace:configure.ac:19: -1- m4_pattern_allow([^CXXDEPMODE$]) 8243m4trace:configure.ac:19: -1- AM_CONDITIONAL([am__fastdepCXX], [ 8244 test "x$enable_dependency_tracking" != xno \ 8245 && test "$am_cv_CXX_dependencies_compiler_type" = gcc3]) 8246m4trace:configure.ac:19: -1- m4_pattern_allow([^am__fastdepCXX_TRUE$]) 8247m4trace:configure.ac:19: -1- m4_pattern_allow([^am__fastdepCXX_FALSE$]) 8248m4trace:configure.ac:19: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_TRUE]) 8249m4trace:configure.ac:19: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_FALSE]) 8250m4trace:configure.ac:19: -1- _LT_AC_PROG_CXXCPP 8251m4trace:configure.ac:19: -1- m4_pattern_allow([^CXXCPP$]) 8252m4trace:configure.ac:19: -1- m4_pattern_allow([^CPPFLAGS$]) 8253m4trace:configure.ac:19: -1- m4_pattern_allow([^CXXCPP$]) 8254m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8255m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8256m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [CXX]) 8257m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8258m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX]) 8259m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX]) 8260m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8261m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [CXX]) 8262m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8263m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX]) 8264m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX]) 8265m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [CXX]) 8266m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [CXX]) 8267m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX]) 8268m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX]) 8269m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX]) 8270m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX]) 8271m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX]) 8272m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [CXX]) 8273m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [CXX]) 8274m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [CXX]) 8275m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predeps], [CXX]) 8276m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [CXX]) 8277m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX]) 8278m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([objext], [CXX]) 8279m4trace:configure.ac:19: -1- _LT_AC_SYS_COMPILER 8280m4trace:configure.ac:19: -1- _LT_COMPILER_BOILERPLATE 8281m4trace:configure.ac:19: -1- _LT_LINKER_BOILERPLATE 8282m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], [CXX]) 8283m4trace:configure.ac:19: -1- _LT_CC_BASENAME([$compiler]) 8284m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [CXX]) 8285m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [CXX]) 8286m4trace:configure.ac:19: -1- AC_PROG_LD 8287m4trace:configure.ac:19: -1- AC_PROG_LD_GNU 8288m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8289m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8290m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8291m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX]) 8292m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX]) 8293m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX]) 8294m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8295m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8296m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8297m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8298m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX]) 8299m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8300m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX]) 8301m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX]) 8302m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX]) 8303m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX]) 8304m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8305m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8306m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [CXX]) 8307m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8308m4trace:configure.ac:19: -1- _LT_AC_SYS_LIBPATH_AIX 8309m4trace:configure.ac:19: -1- _m4_warn([syntax], [AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body], [../../lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from... 8310../../lib/autoconf/general.m4:2661: _AC_LINK_IFELSE is expanded from... 8311../../lib/autoconf/general.m4:2678: AC_LINK_IFELSE is expanded from... 8312acinclude.m4:893: _LT_AC_SYS_LIBPATH_AIX is expanded from... 8313acinclude.m4:3336: _LT_AC_LANG_CXX_CONFIG is expanded from... 8314acinclude.m4:3335: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from... 8315acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 8316acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 8317acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 8318acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 8319configure.ac:19: the top level]) 8320m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8321m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8322m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8323m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8324m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8325m4trace:configure.ac:19: -1- _LT_AC_SYS_LIBPATH_AIX 8326m4trace:configure.ac:19: -1- _m4_warn([syntax], [AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body], [../../lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from... 8327../../lib/autoconf/general.m4:2661: _AC_LINK_IFELSE is expanded from... 8328../../lib/autoconf/general.m4:2678: AC_LINK_IFELSE is expanded from... 8329acinclude.m4:893: _LT_AC_SYS_LIBPATH_AIX is expanded from... 8330acinclude.m4:3336: _LT_AC_LANG_CXX_CONFIG is expanded from... 8331acinclude.m4:3335: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from... 8332acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 8333acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 8334acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 8335acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 8336configure.ac:19: the top level]) 8337m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8338m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX]) 8339m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8340m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX]) 8341m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8342m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8343m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8344m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8345m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8346m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8347m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8348m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8349m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [CXX]) 8350m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [CXX]) 8351m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8352m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8353m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8354m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8355m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8356m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8357m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8358m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8359m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX]) 8360m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [CXX]) 8361m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX]) 8362m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX]) 8363m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX]) 8364m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8365m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8366m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [CXX]) 8367m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8368m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8369m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX]) 8370m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8371m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [CXX]) 8372m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8373m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX]) 8374m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8375m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8376m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8377m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8378m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8379m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8380m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8381m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8382m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8383m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX]) 8384m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX]) 8385m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX]) 8386m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8387m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8388m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8389m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8390m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8391m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8392m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [CXX]) 8393m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX]) 8394m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX]) 8395m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX]) 8396m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX]) 8397m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX]) 8398m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8399m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8400m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8401m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8402m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8403m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8404m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8405m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8406m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX]) 8407m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX]) 8408m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8409m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX]) 8410m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8411m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8412m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8413m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX]) 8414m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8415m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8416m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX]) 8417m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8418m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8419m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8420m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8421m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8422m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX]) 8423m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX]) 8424m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8425m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8426m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8427m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8428m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8429m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8430m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX]) 8431m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX]) 8432m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8433m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8434m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8435m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX]) 8436m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX]) 8437m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8438m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8439m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8440m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8441m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8442m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8443m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8444m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8445m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8446m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8447m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX]) 8448m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX]) 8449m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8450m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX]) 8451m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX]) 8452m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8453m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8454m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8455m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX]) 8456m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX]) 8457m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8458m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8459m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8460m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX]) 8461m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8462m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8463m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8464m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8465m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8466m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8467m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8468m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8469m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8470m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8471m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8472m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8473m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8474m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX]) 8475m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8476m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8477m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8478m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8479m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8480m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8481m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8482m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8483m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8484m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8485m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8486m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8487m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8488m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8489m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8490m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8491m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX]) 8492m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8493m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8494m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8495m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX]) 8496m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX]) 8497m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX]) 8498m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX]) 8499m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8500m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX]) 8501m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX]) 8502m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8503m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8504m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8505m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8506m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8507m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX]) 8508m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8509m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX]) 8510m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8511m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8512m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8513m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8514m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX]) 8515m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8516m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8517m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX]) 8518m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8519m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8520m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX]) 8521m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX]) 8522m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8523m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8524m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8525m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8526m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8527m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8528m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8529m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8530m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8531m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8532m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8533m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([GCC], [CXX]) 8534m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([LD], [CXX]) 8535m4trace:configure.ac:19: -1- AC_LIBTOOL_POSTDEP_PREDEP([CXX]) 8536m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX]) 8537m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX]) 8538m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX]) 8539m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX]) 8540m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [CXX]) 8541m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [CXX]) 8542m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [CXX]) 8543m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [CXX]) 8544m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [CXX]) 8545m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [CXX]) 8546m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [CXX]) 8547m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [CXX]) 8548m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [CXX]) 8549m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [CXX]) 8550m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [CXX]) 8551m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [CXX]) 8552m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [CXX]) 8553m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [CXX]) 8554m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [CXX]) 8555m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [CXX]) 8556m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [CXX]) 8557m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8558m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_COMPILER_PIC([CXX]) 8559m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8560m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8561m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8562m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8563m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8564m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8565m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8566m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8567m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8568m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8569m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8570m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8571m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8572m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8573m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8574m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8575m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8576m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8577m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8578m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8579m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8580m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8581m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8582m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8583m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8584m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8585m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8586m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8587m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8588m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8589m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8590m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8591m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8592m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8593m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8594m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8595m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8596m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8597m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8598m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8599m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8600m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8601m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8602m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8603m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8604m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8605m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8606m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8607m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8608m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8609m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8610m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8611m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8612m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8613m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [CXX]) 8614m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8615m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8616m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8617m4trace:configure.ac:19: -2- _LT_AC_TAGVAR([lt_prog_compiler_pic_works], [CXX]) 8618m4trace:configure.ac:19: -1- AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, CXX) works], [lt_prog_compiler_pic_works_CXX], [$_LT_AC_TAGVAR(lt_prog_compiler_pic, CXX)ifelse([CXX],[],[ -DPIC],[ifelse([CXX],[CXX],[ -DPIC],[])])], [], [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, CXX) in 8619 "" | " "*) ;; 8620 *) _LT_AC_TAGVAR(lt_prog_compiler_pic, CXX)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, CXX)" ;; 8621 esac], [_LT_AC_TAGVAR(lt_prog_compiler_pic, CXX)= 8622 _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, CXX)=no]) 8623m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8624m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8625m4trace:configure.ac:19: -1- _m4_warn([syntax], [AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached], [../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... 8626../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... 8627acinclude.m4:1219: AC_LIBTOOL_COMPILER_OPTION is expanded from... 8628acinclude.m4:5419: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... 8629acinclude.m4:3336: _LT_AC_LANG_CXX_CONFIG is expanded from... 8630acinclude.m4:3335: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from... 8631acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 8632acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 8633acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 8634acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 8635configure.ac:19: the top level]) 8636m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8637m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8638m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8639m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8640m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8641m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [CXX]) 8642m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8643m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8644m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8645m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8646m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8647m4trace:configure.ac:19: -2- _LT_AC_TAGVAR([lt_prog_compiler_static_works], [CXX]) 8648m4trace:configure.ac:19: -1- AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], [lt_prog_compiler_static_works_CXX], [$lt_tmp_static_flag], [], [_LT_AC_TAGVAR(lt_prog_compiler_static, CXX)=]) 8649m4trace:configure.ac:19: -1- _m4_warn([syntax], [AC_CACHE_VAL(lt_prog_compiler_static_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached], [../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... 8650../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... 8651acinclude.m4:1264: AC_LIBTOOL_LINKER_OPTION is expanded from... 8652acinclude.m4:5419: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... 8653acinclude.m4:3336: _LT_AC_LANG_CXX_CONFIG is expanded from... 8654acinclude.m4:3335: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from... 8655acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 8656acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 8657acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 8658acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 8659configure.ac:19: the top level]) 8660m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8661m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_CC_C_O([CXX]) 8662m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX]) 8663m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX]) 8664m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX]) 8665m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX]) 8666m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX]) 8667m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX]) 8668m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX]) 8669m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX]) 8670m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX]) 8671m4trace:configure.ac:19: -1- AC_LIBTOOL_SYS_HARD_LINK_LOCKS([CXX]) 8672m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX]) 8673m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_LD_SHLIBS([CXX]) 8674m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX]) 8675m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX]) 8676m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX]) 8677m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX]) 8678m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX]) 8679m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX]) 8680m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8681m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8682m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8683m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8684m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8685m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8686m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8687m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8688m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8689m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8690m4trace:configure.ac:19: -2- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8691m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8692m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8693m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8694m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8695m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8696m4trace:configure.ac:19: -1- AC_LIBTOOL_SYS_DYNAMIC_LINKER([CXX]) 8697m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([CXX]) 8698m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [CXX]) 8699m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8700m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([runpath_var], [CXX]) 8701m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [CXX]) 8702m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX]) 8703m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX]) 8704m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [CXX]) 8705m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [CXX]) 8706m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [CXX]) 8707m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [CXX]) 8708m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [CXX]) 8709m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [CXX]) 8710m4trace:configure.ac:19: -1- AC_LIBTOOL_CONFIG([CXX]) 8711m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], [CXX]) 8712m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([CC], [CXX]) 8713m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([LD], [CXX]) 8714m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8715m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8716m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8717m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [CXX]) 8718m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX]) 8719m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [CXX]) 8720m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX]) 8721m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [CXX]) 8722m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX]) 8723m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [CXX]) 8724m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [CXX]) 8725m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [CXX]) 8726m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predeps], [CXX]) 8727m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [CXX]) 8728m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX]) 8729m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8730m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8731m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postinstall_cmds], [CXX]) 8732m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postuninstall_cmds], [CXX]) 8733m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [CXX]) 8734m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8735m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX]) 8736m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX]) 8737m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8738m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [CXX]) 8739m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8740m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [CXX]) 8741m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [CXX]) 8742m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX]) 8743m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX]) 8744m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([exclude_expsyms], [CXX]) 8745m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([include_expsyms], [CXX]) 8746m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX]) 8747m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [CXX]) 8748m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8749m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8750m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [CXX]) 8751m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX]) 8752m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [CXX]) 8753m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX]) 8754m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8755m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [CXX]) 8756m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], [CXX]) 8757m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([GCC], [CXX]) 8758m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([LD], [CXX]) 8759m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8760m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8761m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX]) 8762m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8763m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [CXX]) 8764m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX]) 8765m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX]) 8766m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [CXX]) 8767m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX]) 8768m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [CXX]) 8769m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [CXX]) 8770m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8771m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8772m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [CXX]) 8773m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX]) 8774m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [CXX]) 8775m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [CXX]) 8776m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predeps], [CXX]) 8777m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [CXX]) 8778m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX]) 8779m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8780m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX]) 8781m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [CXX]) 8782m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8783m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [CXX]) 8784m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8785m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX]) 8786m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX]) 8787m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX]) 8788m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [CXX]) 8789m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX]) 8790m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([fix_srcfile_path], [CXX]) 8791m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [CXX]) 8792m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX]) 8793m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([exclude_expsyms], [CXX]) 8794m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([include_expsyms], [CXX]) 8795m4trace:configure.ac:19: -1- AC_LIBTOOL_LANG_F77_CONFIG 8796m4trace:configure.ac:19: -1- _LT_AC_LANG_F77_CONFIG([F77]) 8797m4trace:configure.ac:19: -1- m4_pattern_allow([^F77$]) 8798m4trace:configure.ac:19: -1- m4_pattern_allow([^FFLAGS$]) 8799m4trace:configure.ac:19: -1- m4_pattern_allow([^LDFLAGS$]) 8800m4trace:configure.ac:19: -1- m4_pattern_allow([^LIBS$]) 8801m4trace:configure.ac:19: -1- m4_pattern_allow([^F77$]) 8802m4trace:configure.ac:19: -1- m4_pattern_allow([^ac_ct_F77$]) 8803m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77]) 8804m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 8805m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [F77]) 8806m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 8807m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 8808m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 8809m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 8810m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77]) 8811m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 8812m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 8813m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77]) 8814m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [F77]) 8815m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77]) 8816m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77]) 8817m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [F77]) 8818m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77]) 8819m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77]) 8820m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77]) 8821m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([objext], [F77]) 8822m4trace:configure.ac:19: -1- _LT_AC_SYS_COMPILER 8823m4trace:configure.ac:19: -1- _LT_COMPILER_BOILERPLATE 8824m4trace:configure.ac:19: -1- _LT_LINKER_BOILERPLATE 8825m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], [F77]) 8826m4trace:configure.ac:19: -1- _LT_CC_BASENAME([$compiler]) 8827m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([GCC], [F77]) 8828m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([LD], [F77]) 8829m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_COMPILER_PIC([F77]) 8830m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8831m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8832m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8833m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8834m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8835m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8836m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8837m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8838m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8839m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [F77]) 8840m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8841m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8842m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8843m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8844m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8845m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8846m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8847m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8848m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8849m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8850m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8851m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8852m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8853m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8854m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8855m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8856m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8857m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8858m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8859m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8860m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8861m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8862m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8863m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8864m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8865m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8866m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8867m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8868m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8869m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8870m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8871m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8872m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8873m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8874m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8875m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8876m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8877m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8878m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8879m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8880m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8881m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8882m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [F77]) 8883m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8884m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8885m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [F77]) 8886m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8887m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8888m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8889m4trace:configure.ac:19: -2- _LT_AC_TAGVAR([lt_prog_compiler_pic_works], [F77]) 8890m4trace:configure.ac:19: -1- AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, F77) works], [lt_prog_compiler_pic_works_F77], [$_LT_AC_TAGVAR(lt_prog_compiler_pic, F77)ifelse([F77],[],[ -DPIC],[ifelse([F77],[CXX],[ -DPIC],[])])], [], [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, F77) in 8891 "" | " "*) ;; 8892 *) _LT_AC_TAGVAR(lt_prog_compiler_pic, F77)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, F77)" ;; 8893 esac], [_LT_AC_TAGVAR(lt_prog_compiler_pic, F77)= 8894 _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, F77)=no]) 8895m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8896m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8897m4trace:configure.ac:19: -1- _m4_warn([syntax], [AC_CACHE_VAL(lt_prog_compiler_pic_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached], [../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... 8898../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... 8899acinclude.m4:1219: AC_LIBTOOL_COMPILER_OPTION is expanded from... 8900acinclude.m4:5419: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... 8901acinclude.m4:4503: _LT_AC_LANG_F77_CONFIG is expanded from... 8902acinclude.m4:4502: AC_LIBTOOL_LANG_F77_CONFIG is expanded from... 8903acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 8904acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 8905acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 8906acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 8907configure.ac:19: the top level]) 8908m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8909m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8910m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8911m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8912m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8913m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [F77]) 8914m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8915m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8916m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8917m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8918m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8919m4trace:configure.ac:19: -2- _LT_AC_TAGVAR([lt_prog_compiler_static_works], [F77]) 8920m4trace:configure.ac:19: -1- AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], [lt_prog_compiler_static_works_F77], [$lt_tmp_static_flag], [], [_LT_AC_TAGVAR(lt_prog_compiler_static, F77)=]) 8921m4trace:configure.ac:19: -1- _m4_warn([syntax], [AC_CACHE_VAL(lt_prog_compiler_static_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached], [../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... 8922../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... 8923acinclude.m4:1264: AC_LIBTOOL_LINKER_OPTION is expanded from... 8924acinclude.m4:5419: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... 8925acinclude.m4:4503: _LT_AC_LANG_F77_CONFIG is expanded from... 8926acinclude.m4:4502: AC_LIBTOOL_LANG_F77_CONFIG is expanded from... 8927acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 8928acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 8929acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 8930acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 8931configure.ac:19: the top level]) 8932m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8933m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_CC_C_O([F77]) 8934m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77]) 8935m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77]) 8936m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77]) 8937m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77]) 8938m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77]) 8939m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77]) 8940m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77]) 8941m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77]) 8942m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77]) 8943m4trace:configure.ac:19: -1- AC_LIBTOOL_SYS_HARD_LINK_LOCKS([F77]) 8944m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77]) 8945m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_LD_SHLIBS([F77]) 8946m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 8947m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77]) 8948m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 8949m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 8950m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [F77]) 8951m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [F77]) 8952m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 8953m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77]) 8954m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [F77]) 8955m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 8956m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77]) 8957m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 8958m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 8959m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 8960m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 8961m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77]) 8962m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77]) 8963m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [F77]) 8964m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77]) 8965m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [F77]) 8966m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77]) 8967m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([include_expsyms], [F77]) 8968m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([exclude_expsyms], [F77]) 8969m4trace:configure.ac:19: -1- _LT_CC_BASENAME([$compiler]) 8970m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 8971m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 8972m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 8973m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77]) 8974m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77]) 8975m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 8976m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 8977m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 8978m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 8979m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 8980m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 8981m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 8982m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 8983m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 8984m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 8985m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [F77]) 8986m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77]) 8987m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77]) 8988m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 8989m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 8990m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 8991m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 8992m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 8993m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 8994m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 8995m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 8996m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 8997m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77]) 8998m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77]) 8999m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9000m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9001m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9002m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9003m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9004m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9005m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9006m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9007m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9008m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9009m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9010m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9011m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9012m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9013m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9014m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9015m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9016m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9017m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9018m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9019m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9020m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9021m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9022m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 9023m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77]) 9024m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9025m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [F77]) 9026m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9027m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 9028m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9029m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77]) 9030m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77]) 9031m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9032m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9033m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 9034m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77]) 9035m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9036m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9037m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 9038m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9039m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 9040m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [F77]) 9041m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9042m4trace:configure.ac:19: -1- _LT_AC_SYS_LIBPATH_AIX 9043m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9044m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9045m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9046m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9047m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9048m4trace:configure.ac:19: -1- _LT_AC_SYS_LIBPATH_AIX 9049m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9050m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77]) 9051m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9052m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77]) 9053m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77]) 9054m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9055m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9056m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9057m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 9058m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9059m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 9060m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9061m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9062m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9063m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [F77]) 9064m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [F77]) 9065m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([fix_srcfile_path], [F77]) 9066m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77]) 9067m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9068m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9069m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9070m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9071m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77]) 9072m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9073m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77]) 9074m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9075m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77]) 9076m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77]) 9077m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9078m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [F77]) 9079m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9080m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77]) 9081m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9082m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [F77]) 9083m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9084m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77]) 9085m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9086m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9087m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9088m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9089m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9090m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9091m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9092m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9093m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9094m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9095m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9096m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 9097m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9098m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9099m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9100m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9101m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9102m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9103m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9104m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9105m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 9106m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9107m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 9108m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 9109m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9110m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9111m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9112m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 9113m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9114m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 9115m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 9116m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9117m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9118m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9119m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9120m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9121m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9122m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9123m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 9124m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77]) 9125m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9126m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9127m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9128m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 9129m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 9130m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9131m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9132m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77]) 9133m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9134m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 9135m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77]) 9136m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9137m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9138m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9139m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9140m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9141m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9142m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9143m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9144m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 9145m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9146m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9147m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9148m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9149m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9150m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9151m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 9152m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9153m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9154m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9155m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9156m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9157m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 9158m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9159m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9160m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [F77]) 9161m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9162m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9163m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9164m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9165m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9166m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 9167m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9168m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9169m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9170m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9171m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9172m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9173m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9174m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 9175m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77]) 9176m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9177m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9178m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9179m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9180m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9181m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9182m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77]) 9183m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77]) 9184m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77]) 9185m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9186m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9187m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9188m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9189m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 9190m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9191m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9192m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9193m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9194m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([reload_cmds], [F77]) 9195m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9196m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9197m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9198m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9199m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9200m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9201m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 9202m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9203m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9204m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9205m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77]) 9206m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77]) 9207m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9208m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9209m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9210m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9211m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9212m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77]) 9213m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9214m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77]) 9215m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9216m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9217m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 9218m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77]) 9219m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 9220m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9221m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9222m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9223m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9224m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9225m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9226m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9227m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9228m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9229m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9230m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9231m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77]) 9232m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77]) 9233m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9234m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 9235m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 9236m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9237m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9238m4trace:configure.ac:19: -2- _LT_AC_TAGVAR([archive_cmds], [F77]) 9239m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77]) 9240m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77]) 9241m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9242m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77]) 9243m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77]) 9244m4trace:configure.ac:19: -1- AC_LIBTOOL_SYS_DYNAMIC_LINKER([F77]) 9245m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([F77]) 9246m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [F77]) 9247m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9248m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([runpath_var], [F77]) 9249m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77]) 9250m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9251m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 9252m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [F77]) 9253m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [F77]) 9254m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [F77]) 9255m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [F77]) 9256m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [F77]) 9257m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [F77]) 9258m4trace:configure.ac:19: -1- AC_LIBTOOL_CONFIG([F77]) 9259m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], [F77]) 9260m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([CC], [F77]) 9261m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([LD], [F77]) 9262m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 9263m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 9264m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 9265m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [F77]) 9266m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 9267m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [F77]) 9268m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77]) 9269m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77]) 9270m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [F77]) 9271m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [F77]) 9272m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [F77]) 9273m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [F77]) 9274m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predeps], [F77]) 9275m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [F77]) 9276m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [F77]) 9277m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9278m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9279m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postinstall_cmds], [F77]) 9280m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postuninstall_cmds], [F77]) 9281m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [F77]) 9282m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9283m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77]) 9284m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77]) 9285m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9286m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77]) 9287m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 9288m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77]) 9289m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [F77]) 9290m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77]) 9291m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77]) 9292m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([exclude_expsyms], [F77]) 9293m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([include_expsyms], [F77]) 9294m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [F77]) 9295m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [F77]) 9296m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9297m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9298m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [F77]) 9299m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77]) 9300m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [F77]) 9301m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77]) 9302m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77]) 9303m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77]) 9304m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], [F77]) 9305m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([GCC], [F77]) 9306m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([LD], [F77]) 9307m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 9308m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 9309m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77]) 9310m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 9311m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [F77]) 9312m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 9313m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77]) 9314m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [F77]) 9315m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [F77]) 9316m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [F77]) 9317m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [F77]) 9318m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9319m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9320m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [F77]) 9321m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77]) 9322m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [F77]) 9323m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [F77]) 9324m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predeps], [F77]) 9325m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [F77]) 9326m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [F77]) 9327m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9328m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77]) 9329m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [F77]) 9330m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9331m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77]) 9332m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 9333m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9334m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 9335m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9336m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77]) 9337m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77]) 9338m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([fix_srcfile_path], [F77]) 9339m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [F77]) 9340m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77]) 9341m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([exclude_expsyms], [F77]) 9342m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([include_expsyms], [F77]) 9343m4trace:configure.ac:19: -1- AC_LIBTOOL_LANG_GCJ_CONFIG 9344m4trace:configure.ac:19: -1- _LT_AC_LANG_GCJ_CONFIG([GCJ]) 9345m4trace:configure.ac:19: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. 9346You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... 9347acinclude.m4:4605: _LT_AC_LANG_GCJ_CONFIG is expanded from... 9348acinclude.m4:4604: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from... 9349acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 9350acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 9351acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 9352acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 9353configure.ac:19: the top level]) 9354m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([objext], [GCJ]) 9355m4trace:configure.ac:19: -1- _LT_AC_SYS_COMPILER 9356m4trace:configure.ac:19: -1- _LT_COMPILER_BOILERPLATE 9357m4trace:configure.ac:19: -1- _LT_LINKER_BOILERPLATE 9358m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], [GCJ]) 9359m4trace:configure.ac:19: -1- _LT_CC_BASENAME([$compiler]) 9360m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ]) 9361m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [GCJ]) 9362m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_COMPILER_NO_RTTI([GCJ]) 9363m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ]) 9364m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ]) 9365m4trace:configure.ac:19: -1- AC_LIBTOOL_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], [lt_cv_prog_compiler_rtti_exceptions], [-fno-rtti -fno-exceptions], [], [_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, GCJ)="$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, GCJ) -fno-rtti -fno-exceptions"]) 9366m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ]) 9367m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ]) 9368m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_COMPILER_PIC([GCJ]) 9369m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9370m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9371m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9372m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9373m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9374m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9375m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9376m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9377m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9378m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [GCJ]) 9379m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9380m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9381m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9382m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9383m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9384m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9385m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9386m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9387m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9388m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9389m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9390m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9391m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9392m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9393m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9394m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9395m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9396m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9397m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9398m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9399m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9400m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9401m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9402m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9403m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9404m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9405m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9406m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9407m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9408m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9409m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9410m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9411m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9412m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9413m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9414m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9415m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9416m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9417m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9418m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9419m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9420m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9421m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [GCJ]) 9422m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9423m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9424m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [GCJ]) 9425m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9426m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9427m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9428m4trace:configure.ac:19: -2- _LT_AC_TAGVAR([lt_prog_compiler_pic_works], [GCJ]) 9429m4trace:configure.ac:19: -1- AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, GCJ) works], [lt_prog_compiler_pic_works_GCJ], [$_LT_AC_TAGVAR(lt_prog_compiler_pic, GCJ)ifelse([GCJ],[],[ -DPIC],[ifelse([GCJ],[CXX],[ -DPIC],[])])], [], [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, GCJ) in 9430 "" | " "*) ;; 9431 *) _LT_AC_TAGVAR(lt_prog_compiler_pic, GCJ)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, GCJ)" ;; 9432 esac], [_LT_AC_TAGVAR(lt_prog_compiler_pic, GCJ)= 9433 _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, GCJ)=no]) 9434m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9435m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9436m4trace:configure.ac:19: -1- _m4_warn([syntax], [AC_CACHE_VAL(lt_prog_compiler_pic_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached], [../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... 9437../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... 9438acinclude.m4:1219: AC_LIBTOOL_COMPILER_OPTION is expanded from... 9439acinclude.m4:5419: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... 9440acinclude.m4:4605: _LT_AC_LANG_GCJ_CONFIG is expanded from... 9441acinclude.m4:4604: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from... 9442acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 9443acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 9444acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 9445acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 9446configure.ac:19: the top level]) 9447m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9448m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9449m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9450m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9451m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9452m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [GCJ]) 9453m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9454m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9455m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9456m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9457m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9458m4trace:configure.ac:19: -2- _LT_AC_TAGVAR([lt_prog_compiler_static_works], [GCJ]) 9459m4trace:configure.ac:19: -1- AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], [lt_prog_compiler_static_works_GCJ], [$lt_tmp_static_flag], [], [_LT_AC_TAGVAR(lt_prog_compiler_static, GCJ)=]) 9460m4trace:configure.ac:19: -1- _m4_warn([syntax], [AC_CACHE_VAL(lt_prog_compiler_static_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached], [../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... 9461../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... 9462acinclude.m4:1264: AC_LIBTOOL_LINKER_OPTION is expanded from... 9463acinclude.m4:5419: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... 9464acinclude.m4:4605: _LT_AC_LANG_GCJ_CONFIG is expanded from... 9465acinclude.m4:4604: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from... 9466acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 9467acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 9468acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 9469acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 9470configure.ac:19: the top level]) 9471m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9472m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_CC_C_O([GCJ]) 9473m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ]) 9474m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ]) 9475m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ]) 9476m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ]) 9477m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ]) 9478m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ]) 9479m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ]) 9480m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ]) 9481m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ]) 9482m4trace:configure.ac:19: -1- AC_LIBTOOL_SYS_HARD_LINK_LOCKS([GCJ]) 9483m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ]) 9484m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_LD_SHLIBS([GCJ]) 9485m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9486m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [GCJ]) 9487m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9488m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9489m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [GCJ]) 9490m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [GCJ]) 9491m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ]) 9492m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ]) 9493m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [GCJ]) 9494m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9495m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [GCJ]) 9496m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ]) 9497m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9498m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ]) 9499m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9500m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ]) 9501m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [GCJ]) 9502m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [GCJ]) 9503m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ]) 9504m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [GCJ]) 9505m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ]) 9506m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([include_expsyms], [GCJ]) 9507m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([exclude_expsyms], [GCJ]) 9508m4trace:configure.ac:19: -1- _LT_CC_BASENAME([$compiler]) 9509m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9510m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9511m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ]) 9512m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ]) 9513m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ]) 9514m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9515m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9516m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9517m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ]) 9518m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9519m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9520m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9521m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9522m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9523m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9524m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [GCJ]) 9525m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [GCJ]) 9526m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ]) 9527m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9528m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9529m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9530m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9531m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9532m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9533m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ]) 9534m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9535m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9536m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ]) 9537m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ]) 9538m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9539m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9540m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9541m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9542m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9543m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9544m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9545m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9546m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9547m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9548m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9549m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9550m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9551m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9552m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9553m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9554m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9555m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9556m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9557m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9558m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9559m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9560m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9561m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ]) 9562m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ]) 9563m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9564m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [GCJ]) 9565m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9566m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ]) 9567m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9568m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ]) 9569m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ]) 9570m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9571m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9572m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ]) 9573m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ]) 9574m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9575m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9576m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ]) 9577m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9578m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ]) 9579m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [GCJ]) 9580m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9581m4trace:configure.ac:19: -1- _LT_AC_SYS_LIBPATH_AIX 9582m4trace:configure.ac:19: -1- _m4_warn([syntax], [AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body], [../../lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from... 9583../../lib/autoconf/general.m4:2661: _AC_LINK_IFELSE is expanded from... 9584../../lib/autoconf/general.m4:2678: AC_LINK_IFELSE is expanded from... 9585acinclude.m4:893: _LT_AC_SYS_LIBPATH_AIX is expanded from... 9586acinclude.m4:5946: AC_LIBTOOL_PROG_LD_SHLIBS is expanded from... 9587acinclude.m4:4605: _LT_AC_LANG_GCJ_CONFIG is expanded from... 9588acinclude.m4:4604: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from... 9589acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 9590acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 9591acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 9592acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 9593configure.ac:19: the top level]) 9594m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9595m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9596m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9597m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9598m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9599m4trace:configure.ac:19: -1- _LT_AC_SYS_LIBPATH_AIX 9600m4trace:configure.ac:19: -1- _m4_warn([syntax], [AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body], [../../lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from... 9601../../lib/autoconf/general.m4:2661: _AC_LINK_IFELSE is expanded from... 9602../../lib/autoconf/general.m4:2678: AC_LINK_IFELSE is expanded from... 9603acinclude.m4:893: _LT_AC_SYS_LIBPATH_AIX is expanded from... 9604acinclude.m4:5946: AC_LIBTOOL_PROG_LD_SHLIBS is expanded from... 9605acinclude.m4:4605: _LT_AC_LANG_GCJ_CONFIG is expanded from... 9606acinclude.m4:4604: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from... 9607acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 9608acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 9609acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 9610acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 9611configure.ac:19: the top level]) 9612m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9613m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ]) 9614m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9615m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ]) 9616m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ]) 9617m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9618m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9619m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9620m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ]) 9621m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9622m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ]) 9623m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9624m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9625m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9626m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [GCJ]) 9627m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [GCJ]) 9628m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([fix_srcfile_path], [GCJ]) 9629m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [GCJ]) 9630m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9631m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9632m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9633m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9634m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ]) 9635m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9636m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [GCJ]) 9637m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9638m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ]) 9639m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ]) 9640m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9641m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [GCJ]) 9642m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9643m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ]) 9644m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9645m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [GCJ]) 9646m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9647m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ]) 9648m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9649m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9650m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9651m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9652m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9653m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9654m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9655m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9656m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9657m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9658m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9659m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ]) 9660m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9661m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9662m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9663m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9664m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9665m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9666m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9667m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9668m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ]) 9669m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9670m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ]) 9671m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ]) 9672m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9673m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9674m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9675m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ]) 9676m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9677m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ]) 9678m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ]) 9679m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9680m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9681m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9682m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9683m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9684m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9685m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9686m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ]) 9687m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [GCJ]) 9688m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9689m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9690m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9691m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ]) 9692m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ]) 9693m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9694m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9695m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [GCJ]) 9696m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9697m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ]) 9698m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ]) 9699m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9700m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9701m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9702m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9703m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9704m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9705m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9706m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9707m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ]) 9708m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9709m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9710m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9711m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9712m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9713m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9714m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ]) 9715m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9716m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9717m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9718m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9719m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9720m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ]) 9721m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9722m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9723m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [GCJ]) 9724m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9725m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9726m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9727m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9728m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9729m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ]) 9730m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9731m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9732m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9733m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9734m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9735m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9736m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9737m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ]) 9738m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ]) 9739m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9740m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9741m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9742m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9743m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9744m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9745m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ]) 9746m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ]) 9747m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ]) 9748m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9749m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9750m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9751m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9752m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ]) 9753m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9754m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9755m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9756m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9757m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([reload_cmds], [GCJ]) 9758m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9759m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9760m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9761m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9762m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9763m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9764m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ]) 9765m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9766m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9767m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9768m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ]) 9769m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ]) 9770m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9771m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9772m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9773m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9774m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9775m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ]) 9776m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9777m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ]) 9778m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9779m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9780m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ]) 9781m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ]) 9782m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ]) 9783m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9784m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9785m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9786m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9787m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9788m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9789m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9790m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9791m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9792m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9793m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9794m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ]) 9795m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ]) 9796m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9797m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9798m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9799m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9800m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9801m4trace:configure.ac:19: -2- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9802m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ]) 9803m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ]) 9804m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9805m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ]) 9806m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ]) 9807m4trace:configure.ac:19: -1- AC_LIBTOOL_SYS_DYNAMIC_LINKER([GCJ]) 9808m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([GCJ]) 9809m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ]) 9810m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9811m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([runpath_var], [GCJ]) 9812m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [GCJ]) 9813m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9814m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ]) 9815m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ]) 9816m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ]) 9817m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ]) 9818m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ]) 9819m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ]) 9820m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ]) 9821m4trace:configure.ac:19: -1- AC_LIBTOOL_CONFIG([GCJ]) 9822m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], [GCJ]) 9823m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([CC], [GCJ]) 9824m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([LD], [GCJ]) 9825m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9826m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9827m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9828m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ]) 9829m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ]) 9830m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [GCJ]) 9831m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ]) 9832m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [GCJ]) 9833m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [GCJ]) 9834m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [GCJ]) 9835m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [GCJ]) 9836m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [GCJ]) 9837m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predeps], [GCJ]) 9838m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [GCJ]) 9839m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [GCJ]) 9840m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9841m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9842m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postinstall_cmds], [GCJ]) 9843m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postuninstall_cmds], [GCJ]) 9844m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [GCJ]) 9845m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9846m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ]) 9847m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ]) 9848m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9849m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [GCJ]) 9850m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ]) 9851m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [GCJ]) 9852m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [GCJ]) 9853m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ]) 9854m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ]) 9855m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([exclude_expsyms], [GCJ]) 9856m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([include_expsyms], [GCJ]) 9857m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [GCJ]) 9858m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [GCJ]) 9859m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9860m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9861m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [GCJ]) 9862m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ]) 9863m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [GCJ]) 9864m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ]) 9865m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ]) 9866m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [GCJ]) 9867m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], [GCJ]) 9868m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([GCC], [GCJ]) 9869m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([LD], [GCJ]) 9870m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9871m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9872m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ]) 9873m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9874m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ]) 9875m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ]) 9876m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ]) 9877m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [GCJ]) 9878m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [GCJ]) 9879m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [GCJ]) 9880m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [GCJ]) 9881m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9882m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9883m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [GCJ]) 9884m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ]) 9885m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [GCJ]) 9886m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [GCJ]) 9887m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predeps], [GCJ]) 9888m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [GCJ]) 9889m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [GCJ]) 9890m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9891m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ]) 9892m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ]) 9893m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9894m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [GCJ]) 9895m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ]) 9896m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9897m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ]) 9898m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9899m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [GCJ]) 9900m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ]) 9901m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([fix_srcfile_path], [GCJ]) 9902m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [GCJ]) 9903m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ]) 9904m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([exclude_expsyms], [GCJ]) 9905m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([include_expsyms], [GCJ]) 9906m4trace:configure.ac:19: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. 9907You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... 9908acinclude.m4:4605: _LT_AC_LANG_GCJ_CONFIG is expanded from... 9909acinclude.m4:4604: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from... 9910acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 9911acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 9912acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 9913acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 9914configure.ac:19: the top level]) 9915m4trace:configure.ac:19: -1- AC_LIBTOOL_LANG_RC_CONFIG 9916m4trace:configure.ac:19: -1- _LT_AC_LANG_RC_CONFIG([RC]) 9917m4trace:configure.ac:19: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. 9918You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... 9919acinclude.m4:4665: _LT_AC_LANG_RC_CONFIG is expanded from... 9920acinclude.m4:4664: AC_LIBTOOL_LANG_RC_CONFIG is expanded from... 9921acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 9922acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 9923acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 9924acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 9925configure.ac:19: the top level]) 9926m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([objext], [RC]) 9927m4trace:configure.ac:19: -1- _LT_AC_SYS_COMPILER 9928m4trace:configure.ac:19: -1- _LT_COMPILER_BOILERPLATE 9929m4trace:configure.ac:19: -1- _LT_LINKER_BOILERPLATE 9930m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], [RC]) 9931m4trace:configure.ac:19: -1- _LT_CC_BASENAME([$compiler]) 9932m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [RC]) 9933m4trace:configure.ac:19: -1- AC_LIBTOOL_CONFIG([RC]) 9934m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], [RC]) 9935m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([CC], [RC]) 9936m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([LD], [RC]) 9937m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [RC]) 9938m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [RC]) 9939m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [RC]) 9940m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [RC]) 9941m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [RC]) 9942m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [RC]) 9943m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [RC]) 9944m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [RC]) 9945m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [RC]) 9946m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [RC]) 9947m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [RC]) 9948m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [RC]) 9949m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predeps], [RC]) 9950m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [RC]) 9951m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [RC]) 9952m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [RC]) 9953m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [RC]) 9954m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postinstall_cmds], [RC]) 9955m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postuninstall_cmds], [RC]) 9956m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [RC]) 9957m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [RC]) 9958m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [RC]) 9959m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [RC]) 9960m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [RC]) 9961m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [RC]) 9962m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [RC]) 9963m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [RC]) 9964m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [RC]) 9965m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [RC]) 9966m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [RC]) 9967m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([exclude_expsyms], [RC]) 9968m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([include_expsyms], [RC]) 9969m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [RC]) 9970m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [RC]) 9971m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [RC]) 9972m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [RC]) 9973m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [RC]) 9974m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [RC]) 9975m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [RC]) 9976m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [RC]) 9977m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [RC]) 9978m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [RC]) 9979m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], [RC]) 9980m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([GCC], [RC]) 9981m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([LD], [RC]) 9982m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [RC]) 9983m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [RC]) 9984m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [RC]) 9985m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [RC]) 9986m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [RC]) 9987m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [RC]) 9988m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [RC]) 9989m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [RC]) 9990m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [RC]) 9991m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [RC]) 9992m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [RC]) 9993m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [RC]) 9994m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [RC]) 9995m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [RC]) 9996m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [RC]) 9997m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [RC]) 9998m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [RC]) 9999m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predeps], [RC]) 10000m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [RC]) 10001m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [RC]) 10002m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [RC]) 10003m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [RC]) 10004m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [RC]) 10005m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [RC]) 10006m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [RC]) 10007m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [RC]) 10008m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [RC]) 10009m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [RC]) 10010m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [RC]) 10011m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [RC]) 10012m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [RC]) 10013m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([fix_srcfile_path], [RC]) 10014m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [RC]) 10015m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [RC]) 10016m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([exclude_expsyms], [RC]) 10017m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([include_expsyms], [RC]) 10018m4trace:configure.ac:19: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. 10019You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... 10020acinclude.m4:4665: _LT_AC_LANG_RC_CONFIG is expanded from... 10021acinclude.m4:4664: AC_LIBTOOL_LANG_RC_CONFIG is expanded from... 10022acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 10023acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 10024acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 10025acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 10026configure.ac:19: the top level]) 10027m4trace:configure.ac:19: -1- m4_pattern_allow([^LIBTOOL$]) 10028m4trace:configure.ac:19: -1- AC_LIBTOOL_CXX 10029m4trace:configure.ac:19: -1- _LT_AC_LANG_CXX 10030m4trace:configure.ac:19: -1- _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX]) 10031m4trace:configure.ac:19: -1- AC_LIBTOOL_F77 10032m4trace:configure.ac:19: -1- _LT_AC_LANG_F77 10033m4trace:configure.ac:19: -1- _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}F77]) 10034m4trace:configure.ac:20: -1- m4_pattern_allow([^AR$]) 10035m4trace:configure.ac:43: -1- m4_pattern_allow([^ALLOW24BPP$]) 10036m4trace:configure.ac:48: -1- m4_pattern_allow([^with_ffmpeg$]) 10037m4trace:configure.ac:49: -1- AM_CONDITIONAL([WITH_FFMPEG], [test ! -z "$with_ffmpeg"]) 10038m4trace:configure.ac:49: -1- m4_pattern_allow([^WITH_FFMPEG_TRUE$]) 10039m4trace:configure.ac:49: -1- m4_pattern_allow([^WITH_FFMPEG_FALSE$]) 10040m4trace:configure.ac:49: -1- _AM_SUBST_NOTMAKE([WITH_FFMPEG_TRUE]) 10041m4trace:configure.ac:49: -1- _AM_SUBST_NOTMAKE([WITH_FFMPEG_FALSE]) 10042m4trace:configure.ac:53: -1- AM_CONDITIONAL([HAVE_MP3LAME], [test "$HAVE_MP3LAME" = "true"]) 10043m4trace:configure.ac:53: -1- m4_pattern_allow([^HAVE_MP3LAME_TRUE$]) 10044m4trace:configure.ac:53: -1- m4_pattern_allow([^HAVE_MP3LAME_FALSE$]) 10045m4trace:configure.ac:53: -1- _AM_SUBST_NOTMAKE([HAVE_MP3LAME_TRUE]) 10046m4trace:configure.ac:53: -1- _AM_SUBST_NOTMAKE([HAVE_MP3LAME_FALSE]) 10047m4trace:configure.ac:76: -1- m4_pattern_allow([^HAVE_CRYPT$]) 10048m4trace:configure.ac:78: -1- m4_pattern_allow([^HAVE_LIBCRYPT$]) 10049m4trace:configure.ac:83: -1- m4_pattern_allow([^CRYPT_LIBS$]) 10050m4trace:configure.ac:109: -1- m4_pattern_allow([^HAVE_LIBCRYPTO$]) 10051m4trace:configure.ac:122: -1- m4_pattern_allow([^HAVE_LIBSSL$]) 10052m4trace:configure.ac:127: -1- m4_pattern_allow([^HAVE_LIBSSL$]) 10053m4trace:configure.ac:132: -1- m4_pattern_allow([^SSL_LIBS$]) 10054m4trace:configure.ac:133: -1- AM_CONDITIONAL([HAVE_LIBSSL], [test ! -z "$SSL_LIBS"]) 10055m4trace:configure.ac:133: -1- m4_pattern_allow([^HAVE_LIBSSL_TRUE$]) 10056m4trace:configure.ac:133: -1- m4_pattern_allow([^HAVE_LIBSSL_FALSE$]) 10057m4trace:configure.ac:133: -1- _AM_SUBST_NOTMAKE([HAVE_LIBSSL_TRUE]) 10058m4trace:configure.ac:133: -1- _AM_SUBST_NOTMAKE([HAVE_LIBSSL_FALSE]) 10059m4trace:configure.ac:137: -1- m4_pattern_allow([^XMKMF$]) 10060m4trace:configure.ac:137: -1- m4_pattern_allow([^X_DISPLAY_MISSING$]) 10061m4trace:configure.ac:137: -1- m4_pattern_allow([^X_CFLAGS$]) 10062m4trace:configure.ac:137: -1- m4_pattern_allow([^X_PRE_LIBS$]) 10063m4trace:configure.ac:137: -1- m4_pattern_allow([^X_LIBS$]) 10064m4trace:configure.ac:137: -1- m4_pattern_allow([^X_EXTRA_LIBS$]) 10065m4trace:configure.ac:214: -1- m4_pattern_allow([^HAVE_X11$]) 10066m4trace:configure.ac:222: -1- m4_pattern_allow([^HAVE_XSHM$]) 10067m4trace:configure.ac:226: -1- m4_pattern_allow([^HAVE_SOLARIS_XREADSCREEN$]) 10068m4trace:configure.ac:230: -1- m4_pattern_allow([^HAVE_IRIX_XREADDISPLAY$]) 10069m4trace:configure.ac:235: -1- m4_pattern_allow([^HAVE_FBPM$]) 10070m4trace:configure.ac:241: -1- m4_pattern_allow([^HAVE_DPMS$]) 10071m4trace:configure.ac:246: -1- m4_pattern_allow([^HAVE_XTESTGRABCONTROL$]) 10072m4trace:configure.ac:251: -1- m4_pattern_allow([^HAVE_XTEST$]) 10073m4trace:configure.ac:257: -1- m4_pattern_allow([^HAVE_RECORD$]) 10074m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_LIBXTRAP$]) 10075m4trace:configure.ac:271: -1- m4_pattern_allow([^HAVE_LIBXTRAP$]) 10076m4trace:configure.ac:285: -1- m4_pattern_allow([^HAVE_XKEYBOARD$]) 10077m4trace:configure.ac:292: -1- m4_pattern_allow([^HAVE_LIBXINERAMA$]) 10078m4trace:configure.ac:299: -1- m4_pattern_allow([^HAVE_LIBXRANDR$]) 10079m4trace:configure.ac:306: -1- m4_pattern_allow([^HAVE_LIBXFIXES$]) 10080m4trace:configure.ac:313: -1- m4_pattern_allow([^HAVE_LIBXDAMAGE$]) 10081m4trace:configure.ac:337: -1- m4_pattern_allow([^X_LIBS$]) 10082m4trace:configure.ac:338: -1- AM_CONDITIONAL([HAVE_X11], [test $HAVE_X11 != "false"]) 10083m4trace:configure.ac:338: -1- m4_pattern_allow([^HAVE_X11_TRUE$]) 10084m4trace:configure.ac:338: -1- m4_pattern_allow([^HAVE_X11_FALSE$]) 10085m4trace:configure.ac:338: -1- _AM_SUBST_NOTMAKE([HAVE_X11_TRUE]) 10086m4trace:configure.ac:338: -1- _AM_SUBST_NOTMAKE([HAVE_X11_FALSE]) 10087m4trace:configure.ac:378: -1- m4_pattern_allow([^HAVE_LINUX_VIDEODEV_H$]) 10088m4trace:configure.ac:382: -1- m4_pattern_allow([^HAVE_LINUX_FB_H$]) 10089m4trace:configure.ac:386: -1- m4_pattern_allow([^HAVE_LINUX_INPUT_H$]) 10090m4trace:configure.ac:389: -1- m4_pattern_allow([^HAVE_LINUX_UINPUT_H$]) 10091m4trace:configure.ac:395: -1- m4_pattern_allow([^HAVE_MACOSX_NATIVE_DISPLAY$]) 10092m4trace:configure.ac:399: -1- m4_pattern_allow([^HAVE_MACOSX_OPENGL_H$]) 10093m4trace:configure.ac:424: -1- m4_pattern_allow([^HAVE_AVAHI$]) 10094m4trace:configure.ac:425: -1- m4_pattern_allow([^AVAHI_CFLAGS$]) 10095m4trace:configure.ac:426: -1- m4_pattern_allow([^AVAHI_LIBS$]) 10096m4trace:configure.ac:433: -1- AM_CONDITIONAL([OSX_OPENGL], [test "$HAVE_MACOSX_OPENGL_H" = "true"]) 10097m4trace:configure.ac:433: -1- m4_pattern_allow([^OSX_OPENGL_TRUE$]) 10098m4trace:configure.ac:433: -1- m4_pattern_allow([^OSX_OPENGL_FALSE$]) 10099m4trace:configure.ac:433: -1- _AM_SUBST_NOTMAKE([OSX_OPENGL_TRUE]) 10100m4trace:configure.ac:433: -1- _AM_SUBST_NOTMAKE([OSX_OPENGL_FALSE]) 10101m4trace:configure.ac:515: -1- m4_pattern_allow([^HAVE_SYSTEM_LIBVNCSERVER$]) 10102m4trace:configure.ac:516: -1- m4_pattern_allow([^SYSTEM_LIBVNCSERVER_CFLAGS$]) 10103m4trace:configure.ac:517: -1- m4_pattern_allow([^SYSTEM_LIBVNCSERVER_LIBS$]) 10104m4trace:configure.ac:519: -1- AM_CONDITIONAL([HAVE_SYSTEM_LIBVNCSERVER], [test "x$with_system_libvncserver" = "xyes"]) 10105m4trace:configure.ac:519: -1- m4_pattern_allow([^HAVE_SYSTEM_LIBVNCSERVER_TRUE$]) 10106m4trace:configure.ac:519: -1- m4_pattern_allow([^HAVE_SYSTEM_LIBVNCSERVER_FALSE$]) 10107m4trace:configure.ac:519: -1- _AM_SUBST_NOTMAKE([HAVE_SYSTEM_LIBVNCSERVER_TRUE]) 10108m4trace:configure.ac:519: -1- _AM_SUBST_NOTMAKE([HAVE_SYSTEM_LIBVNCSERVER_FALSE]) 10109m4trace:configure.ac:535: -1- m4_pattern_allow([^JPEG_LDFLAGS$]) 10110m4trace:configure.ac:562: -1- m4_pattern_allow([^HAVE_LIBJPEG$]) 10111m4trace:configure.ac:603: -1- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2748: AC_RUN_IFELSE is expanded from... 10112configure.ac:603: the top level]) 10113m4trace:configure.ac:653: -1- m4_pattern_allow([^HAVE_LIBPNG$]) 10114m4trace:configure.ac:701: -1- m4_pattern_allow([^HAVE_LIBZ$]) 10115m4trace:configure.ac:731: -1- m4_pattern_allow([^HAVE_LIBPTHREAD$]) 10116m4trace:configure.ac:735: -1- AM_CONDITIONAL([HAVE_LIBPTHREAD], [test ! -z "$HAVE_LIBPTHREAD"]) 10117m4trace:configure.ac:735: -1- m4_pattern_allow([^HAVE_LIBPTHREAD_TRUE$]) 10118m4trace:configure.ac:735: -1- m4_pattern_allow([^HAVE_LIBPTHREAD_FALSE$]) 10119m4trace:configure.ac:735: -1- _AM_SUBST_NOTMAKE([HAVE_LIBPTHREAD_TRUE]) 10120m4trace:configure.ac:735: -1- _AM_SUBST_NOTMAKE([HAVE_LIBPTHREAD_FALSE]) 10121m4trace:configure.ac:738: -1- m4_pattern_allow([^HAVE_TLS$]) 10122m4trace:configure.ac:749: -1- m4_pattern_allow([^WITH_TIGHTVNC_FILETRANSFER$]) 10123m4trace:configure.ac:751: -1- AM_CONDITIONAL([WITH_TIGHTVNC_FILETRANSFER], [test "$with_tightvnc_filetransfer" = "yes"]) 10124m4trace:configure.ac:751: -1- m4_pattern_allow([^WITH_TIGHTVNC_FILETRANSFER_TRUE$]) 10125m4trace:configure.ac:751: -1- m4_pattern_allow([^WITH_TIGHTVNC_FILETRANSFER_FALSE$]) 10126m4trace:configure.ac:751: -1- _AM_SUBST_NOTMAKE([WITH_TIGHTVNC_FILETRANSFER_TRUE]) 10127m4trace:configure.ac:751: -1- _AM_SUBST_NOTMAKE([WITH_TIGHTVNC_FILETRANSFER_FALSE]) 10128m4trace:configure.ac:759: -1- m4_pattern_allow([^WITH_WEBSOCKETS$]) 10129m4trace:configure.ac:761: -1- AM_CONDITIONAL([WITH_WEBSOCKETS], [test "$with_websockets" = "yes"]) 10130m4trace:configure.ac:761: -1- m4_pattern_allow([^WITH_WEBSOCKETS_TRUE$]) 10131m4trace:configure.ac:761: -1- m4_pattern_allow([^WITH_WEBSOCKETS_FALSE$]) 10132m4trace:configure.ac:761: -1- _AM_SUBST_NOTMAKE([WITH_WEBSOCKETS_TRUE]) 10133m4trace:configure.ac:761: -1- _AM_SUBST_NOTMAKE([WITH_WEBSOCKETS_FALSE]) 10134m4trace:configure.ac:763: -1- AM_CONDITIONAL([HAVE_LIBZ], [test ! -z "$HAVE_ZLIB_H"]) 10135m4trace:configure.ac:763: -1- m4_pattern_allow([^HAVE_LIBZ_TRUE$]) 10136m4trace:configure.ac:763: -1- m4_pattern_allow([^HAVE_LIBZ_FALSE$]) 10137m4trace:configure.ac:763: -1- _AM_SUBST_NOTMAKE([HAVE_LIBZ_TRUE]) 10138m4trace:configure.ac:763: -1- _AM_SUBST_NOTMAKE([HAVE_LIBZ_FALSE]) 10139m4trace:configure.ac:764: -1- AM_CONDITIONAL([HAVE_LIBJPEG], [test ! -z "$HAVE_JPEGLIB_H"]) 10140m4trace:configure.ac:764: -1- m4_pattern_allow([^HAVE_LIBJPEG_TRUE$]) 10141m4trace:configure.ac:764: -1- m4_pattern_allow([^HAVE_LIBJPEG_FALSE$]) 10142m4trace:configure.ac:764: -1- _AM_SUBST_NOTMAKE([HAVE_LIBJPEG_TRUE]) 10143m4trace:configure.ac:764: -1- _AM_SUBST_NOTMAKE([HAVE_LIBJPEG_FALSE]) 10144m4trace:configure.ac:765: -1- AM_CONDITIONAL([HAVE_LIBPNG], [test ! -z "$HAVE_PNGLIB_H"]) 10145m4trace:configure.ac:765: -1- m4_pattern_allow([^HAVE_LIBPNG_TRUE$]) 10146m4trace:configure.ac:765: -1- m4_pattern_allow([^HAVE_LIBPNG_FALSE$]) 10147m4trace:configure.ac:765: -1- _AM_SUBST_NOTMAKE([HAVE_LIBPNG_TRUE]) 10148m4trace:configure.ac:765: -1- _AM_SUBST_NOTMAKE([HAVE_LIBPNG_FALSE]) 10149m4trace:configure.ac:788: -1- AM_CONDITIONAL([HAVE_LIBSDL], [test "x$with_sdl" = "xyes"]) 10150m4trace:configure.ac:788: -1- m4_pattern_allow([^HAVE_LIBSDL_TRUE$]) 10151m4trace:configure.ac:788: -1- m4_pattern_allow([^HAVE_LIBSDL_FALSE$]) 10152m4trace:configure.ac:788: -1- _AM_SUBST_NOTMAKE([HAVE_LIBSDL_TRUE]) 10153m4trace:configure.ac:788: -1- _AM_SUBST_NOTMAKE([HAVE_LIBSDL_FALSE]) 10154m4trace:configure.ac:789: -1- m4_pattern_allow([^SDL_CFLAGS$]) 10155m4trace:configure.ac:790: -1- m4_pattern_allow([^SDL_LIBS$]) 10156m4trace:configure.ac:795: -1- AM_CONDITIONAL([HAVE_LIBGTK], [test ! -z "$GTK_LIBS"]) 10157m4trace:configure.ac:795: -1- m4_pattern_allow([^HAVE_LIBGTK_TRUE$]) 10158m4trace:configure.ac:795: -1- m4_pattern_allow([^HAVE_LIBGTK_FALSE$]) 10159m4trace:configure.ac:795: -1- _AM_SUBST_NOTMAKE([HAVE_LIBGTK_TRUE]) 10160m4trace:configure.ac:795: -1- _AM_SUBST_NOTMAKE([HAVE_LIBGTK_FALSE]) 10161m4trace:configure.ac:799: -1- AM_CONDITIONAL([MINGW], [test ! -z "$MINGW" ]) 10162m4trace:configure.ac:799: -1- m4_pattern_allow([^MINGW_TRUE$]) 10163m4trace:configure.ac:799: -1- m4_pattern_allow([^MINGW_FALSE$]) 10164m4trace:configure.ac:799: -1- _AM_SUBST_NOTMAKE([MINGW_TRUE]) 10165m4trace:configure.ac:799: -1- _AM_SUBST_NOTMAKE([MINGW_FALSE]) 10166m4trace:configure.ac:804: -1- m4_pattern_allow([^WSOCKLIB$]) 10167m4trace:configure.ac:814: -1- AM_PATH_LIBGCRYPT([1.4.0], [], [with_client_gcrypt=no]) 10168m4trace:configure.ac:814: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. 10169You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... 10170acinclude.m4:7025: AM_PATH_LIBGCRYPT is expanded from... 10171configure.ac:814: the top level]) 10172m4trace:configure.ac:814: -1- m4_pattern_allow([^LIBGCRYPT_CONFIG$]) 10173m4trace:configure.ac:814: -1- m4_pattern_allow([^LIBGCRYPT_CFLAGS$]) 10174m4trace:configure.ac:814: -1- m4_pattern_allow([^LIBGCRYPT_LIBS$]) 10175m4trace:configure.ac:818: -1- m4_pattern_allow([^WITH_CLIENT_GCRYPT$]) 10176m4trace:configure.ac:833: -1- AM_CONDITIONAL([HAVE_GNUTLS], [test ! -z "$GNUTLS_LIBS"]) 10177m4trace:configure.ac:833: -1- m4_pattern_allow([^HAVE_GNUTLS_TRUE$]) 10178m4trace:configure.ac:833: -1- m4_pattern_allow([^HAVE_GNUTLS_FALSE$]) 10179m4trace:configure.ac:833: -1- _AM_SUBST_NOTMAKE([HAVE_GNUTLS_TRUE]) 10180m4trace:configure.ac:833: -1- _AM_SUBST_NOTMAKE([HAVE_GNUTLS_FALSE]) 10181m4trace:configure.ac:835: -1- m4_pattern_allow([^HAVE_GNUTLS$]) 10182m4trace:configure.ac:858: -2- m4_pattern_allow([^IPv6$]) 10183m4trace:configure.ac:859: -3- m4_pattern_allow([^IPv6$]) 10184m4trace:configure.ac:859: -2- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. 10185You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... 10186../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... 10187../../lib/autoconf/libs.m4:99: AC_CHECK_LIB is expanded from... 10188configure.ac:859: the top level]) 10189m4trace:configure.ac:859: -2- m4_pattern_allow([^IPv6$]) 10190m4trace:configure.ac:873: -1- m4_pattern_allow([^STDC_HEADERS$]) 10191m4trace:configure.ac:882: -1- m4_pattern_allow([^const$]) 10192m4trace:configure.ac:884: -1- m4_pattern_allow([^WORDS_BIGENDIAN$]) 10193m4trace:configure.ac:884: -1- m4_pattern_allow([^AC_APPLE_UNIVERSAL_BUILD$]) 10194m4trace:configure.ac:885: -1- m4_pattern_allow([^size_t$]) 10195m4trace:configure.ac:886: -1- m4_pattern_allow([^TIME_WITH_SYS_TIME$]) 10196m4trace:configure.ac:887: -1- m4_pattern_allow([^HAVE_SYS_WAIT_H$]) 10197m4trace:configure.ac:888: -1- AC_TYPE_SOCKLEN_T 10198m4trace:configure.ac:888: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. 10199You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... 10200../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... 10201../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... 10202../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... 10203acinclude.m4:2: AC_TYPE_SOCKLEN_T is expanded from... 10204configure.ac:888: the top level]) 10205m4trace:configure.ac:888: -1- m4_pattern_allow([^socklen_t$]) 10206m4trace:configure.ac:893: -1- AC_CREATE_STDINT_H([rfb/rfbint.h]) 10207m4trace:configure.ac:893: -1- AC_COMPILE_CHECK_SIZEOF([char]) 10208m4trace:configure.ac:893: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. 10209You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... 10210../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... 10211../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... 10212acinclude.m4:20: AC_COMPILE_CHECK_SIZEOF is expanded from... 10213acinclude.m4:49: AC_CREATE_STDINT_H is expanded from... 10214configure.ac:893: the top level]) 10215m4trace:configure.ac:893: -1- m4_pattern_allow([^SIZEOF_CHAR$]) 10216m4trace:configure.ac:893: -1- AC_COMPILE_CHECK_SIZEOF([short]) 10217m4trace:configure.ac:893: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. 10218You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... 10219../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... 10220../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... 10221acinclude.m4:20: AC_COMPILE_CHECK_SIZEOF is expanded from... 10222acinclude.m4:49: AC_CREATE_STDINT_H is expanded from... 10223configure.ac:893: the top level]) 10224m4trace:configure.ac:893: -1- m4_pattern_allow([^SIZEOF_SHORT$]) 10225m4trace:configure.ac:893: -1- AC_COMPILE_CHECK_SIZEOF([int]) 10226m4trace:configure.ac:893: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. 10227You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... 10228../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... 10229../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... 10230acinclude.m4:20: AC_COMPILE_CHECK_SIZEOF is expanded from... 10231acinclude.m4:49: AC_CREATE_STDINT_H is expanded from... 10232configure.ac:893: the top level]) 10233m4trace:configure.ac:893: -1- m4_pattern_allow([^SIZEOF_INT$]) 10234m4trace:configure.ac:893: -1- AC_COMPILE_CHECK_SIZEOF([long]) 10235m4trace:configure.ac:893: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. 10236You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... 10237../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... 10238../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... 10239acinclude.m4:20: AC_COMPILE_CHECK_SIZEOF is expanded from... 10240acinclude.m4:49: AC_CREATE_STDINT_H is expanded from... 10241configure.ac:893: the top level]) 10242m4trace:configure.ac:893: -1- m4_pattern_allow([^SIZEOF_LONG$]) 10243m4trace:configure.ac:893: -1- AC_COMPILE_CHECK_SIZEOF([void*]) 10244m4trace:configure.ac:893: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. 10245You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... 10246../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... 10247../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... 10248acinclude.m4:20: AC_COMPILE_CHECK_SIZEOF is expanded from... 10249acinclude.m4:49: AC_CREATE_STDINT_H is expanded from... 10250configure.ac:893: the top level]) 10251m4trace:configure.ac:893: -1- m4_pattern_allow([^SIZEOF_VOIDP$]) 10252m4trace:configure.ac:894: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. 10253You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... 10254../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... 10255../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... 10256../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... 10257configure.ac:894: the top level]) 10258m4trace:configure.ac:904: -1- m4_pattern_allow([^NEED_INADDR_T$]) 10259m4trace:configure.ac:907: -1- m4_pattern_allow([^LIB@&t@OBJS$]) 10260m4trace:configure.ac:908: -1- m4_pattern_allow([^LSTAT_FOLLOWS_SLASHED_SYMLINK$]) 10261m4trace:configure.ac:908: -1- m4_pattern_allow([^LIB@&t@OBJS$]) 10262m4trace:configure.ac:908: -1- m4_pattern_allow([^LIB@&t@OBJS$]) 10263m4trace:configure.ac:908: -1- m4_pattern_allow([^HAVE_STAT_EMPTY_STRING_BUG$]) 10264m4trace:configure.ac:909: -1- m4_pattern_allow([^HAVE_STRFTIME$]) 10265m4trace:configure.ac:909: -1- m4_pattern_allow([^HAVE_STRFTIME$]) 10266m4trace:configure.ac:910: -1- m4_pattern_allow([^HAVE_VPRINTF$]) 10267m4trace:configure.ac:910: -1- m4_pattern_allow([^HAVE_DOPRNT$]) 10268m4trace:configure.ac:911: -1- m4_pattern_allow([^pid_t$]) 10269m4trace:configure.ac:911: -1- m4_pattern_allow([^HAVE_VFORK_H$]) 10270m4trace:configure.ac:911: -1- m4_pattern_allow([^HAVE_WORKING_VFORK$]) 10271m4trace:configure.ac:911: -1- m4_pattern_allow([^vfork$]) 10272m4trace:configure.ac:911: -1- m4_pattern_allow([^HAVE_WORKING_FORK$]) 10273m4trace:configure.ac:912: -1- m4_pattern_allow([^HAVE_LIBNSL$]) 10274m4trace:configure.ac:913: -1- m4_pattern_allow([^HAVE_LIBSOCKET$]) 10275m4trace:configure.ac:928: -1- m4_pattern_allow([^HAVE_LIBCYGIPC$]) 10276m4trace:configure.ac:929: -1- AM_CONDITIONAL([CYGIPC], [test "$HAVE_CYGIPC" = "true"]) 10277m4trace:configure.ac:929: -1- m4_pattern_allow([^CYGIPC_TRUE$]) 10278m4trace:configure.ac:929: -1- m4_pattern_allow([^CYGIPC_FALSE$]) 10279m4trace:configure.ac:929: -1- _AM_SUBST_NOTMAKE([CYGIPC_TRUE]) 10280m4trace:configure.ac:929: -1- _AM_SUBST_NOTMAKE([CYGIPC_FALSE]) 10281m4trace:configure.ac:932: -1- AM_CONDITIONAL([LINUX], [test -d /usr/include/linux]) 10282m4trace:configure.ac:932: -1- m4_pattern_allow([^LINUX_TRUE$]) 10283m4trace:configure.ac:932: -1- m4_pattern_allow([^LINUX_FALSE$]) 10284m4trace:configure.ac:932: -1- _AM_SUBST_NOTMAKE([LINUX_TRUE]) 10285m4trace:configure.ac:932: -1- _AM_SUBST_NOTMAKE([LINUX_FALSE]) 10286m4trace:configure.ac:936: -1- AM_CONDITIONAL([OSX], [test "$HAVE_OSX" = "true"]) 10287m4trace:configure.ac:936: -1- m4_pattern_allow([^OSX_TRUE$]) 10288m4trace:configure.ac:936: -1- m4_pattern_allow([^OSX_FALSE$]) 10289m4trace:configure.ac:936: -1- _AM_SUBST_NOTMAKE([OSX_TRUE]) 10290m4trace:configure.ac:936: -1- _AM_SUBST_NOTMAKE([OSX_FALSE]) 10291m4trace:configure.ac:940: -1- AM_CONDITIONAL([ANDROID], [test "$HAVE_ANDROID" = "true"]) 10292m4trace:configure.ac:940: -1- m4_pattern_allow([^ANDROID_TRUE$]) 10293m4trace:configure.ac:940: -1- m4_pattern_allow([^ANDROID_FALSE$]) 10294m4trace:configure.ac:940: -1- _AM_SUBST_NOTMAKE([ANDROID_TRUE]) 10295m4trace:configure.ac:940: -1- _AM_SUBST_NOTMAKE([ANDROID_FALSE]) 10296m4trace:configure.ac:942: -1- m4_pattern_allow([^HAVE_ANDROID$]) 10297m4trace:configure.ac:949: -1- m4_pattern_allow([^ENOENT_WORKAROUND$]) 10298m4trace:configure.ac:962: -1- AM_CONDITIONAL([HAVE_RPM], [test "$RPMSOURCEDIR" != "NOT-FOUND"]) 10299m4trace:configure.ac:962: -1- m4_pattern_allow([^HAVE_RPM_TRUE$]) 10300m4trace:configure.ac:962: -1- m4_pattern_allow([^HAVE_RPM_FALSE$]) 10301m4trace:configure.ac:962: -1- _AM_SUBST_NOTMAKE([HAVE_RPM_TRUE]) 10302m4trace:configure.ac:962: -1- _AM_SUBST_NOTMAKE([HAVE_RPM_FALSE]) 10303m4trace:configure.ac:963: -1- AM_CONDITIONAL([WITH_X11VNC], [test "$build_x11vnc" = "yes"]) 10304m4trace:configure.ac:963: -1- m4_pattern_allow([^WITH_X11VNC_TRUE$]) 10305m4trace:configure.ac:963: -1- m4_pattern_allow([^WITH_X11VNC_FALSE$]) 10306m4trace:configure.ac:963: -1- _AM_SUBST_NOTMAKE([WITH_X11VNC_TRUE]) 10307m4trace:configure.ac:963: -1- _AM_SUBST_NOTMAKE([WITH_X11VNC_FALSE]) 10308m4trace:configure.ac:964: -1- m4_pattern_allow([^RPMSOURCEDIR$]) 10309m4trace:configure.ac:1013: -1- m4_pattern_allow([^LIB@&t@OBJS$]) 10310m4trace:configure.ac:1013: -1- m4_pattern_allow([^LTLIBOBJS$]) 10311m4trace:configure.ac:1013: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"]) 10312m4trace:configure.ac:1013: -1- m4_pattern_allow([^am__EXEEXT_TRUE$]) 10313m4trace:configure.ac:1013: -1- m4_pattern_allow([^am__EXEEXT_FALSE$]) 10314m4trace:configure.ac:1013: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE]) 10315m4trace:configure.ac:1013: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE]) 10316m4trace:configure.ac:1013: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"]) 10317m4trace:configure.ac:1013: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS 10318