1m4trace:/usr/share/aclocal/pkg.m4:27: -1- AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) 2m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) 3m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$]) 4AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) 5AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) 6AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) 7 8if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then 9 AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) 10fi 11if test -n "$PKG_CONFIG"; then 12 _pkg_min_version=m4_default([$1], [0.9.0]) 13 AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) 14 if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then 15 AC_MSG_RESULT([yes]) 16 else 17 AC_MSG_RESULT([no]) 18 PKG_CONFIG="" 19 fi 20fi[]dnl 21]) 22m4trace:/usr/share/aclocal/pkg.m4:60: -1- AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl 23if test -n "$PKG_CONFIG" && \ 24 AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then 25 m4_default([$2], [:]) 26m4_ifvaln([$3], [else 27 $3])dnl 28fi]) 29m4trace:/usr/share/aclocal/pkg.m4:86: -1- AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) 30if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then 31 _pkg_short_errors_supported=yes 32else 33 _pkg_short_errors_supported=no 34fi[]dnl 35]) 36m4trace:/usr/share/aclocal/pkg.m4:106: -1- AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl 37AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl 38AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl 39 40pkg_failed=no 41AC_MSG_CHECKING([for $1]) 42 43_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) 44_PKG_CONFIG([$1][_LIBS], [libs], [$2]) 45 46m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS 47and $1[]_LIBS to avoid the need to call pkg-config. 48See the pkg-config man page for more details.]) 49 50if test $pkg_failed = yes; then 51 AC_MSG_RESULT([no]) 52 _PKG_SHORT_ERRORS_SUPPORTED 53 if test $_pkg_short_errors_supported = yes; then 54 $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1` 55 else 56 $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1` 57 fi 58 # Put the nasty error message in config.log where it belongs 59 echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD 60 61 m4_default([$4], [AC_MSG_ERROR( 62[Package requirements ($2) were not met: 63 64$$1_PKG_ERRORS 65 66Consider adjusting the PKG_CONFIG_PATH environment variable if you 67installed software in a non-standard prefix. 68 69_PKG_TEXT])[]dnl 70 ]) 71elif test $pkg_failed = untried; then 72 AC_MSG_RESULT([no]) 73 m4_default([$4], [AC_MSG_FAILURE( 74[The pkg-config script could not be found or is too old. Make sure it 75is in your PATH or set the PKG_CONFIG environment variable to the full 76path to pkg-config. 77 78_PKG_TEXT 79 80To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl 81 ]) 82else 83 $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS 84 $1[]_LIBS=$pkg_cv_[]$1[]_LIBS 85 AC_MSG_RESULT([yes]) 86 $3 87fi[]dnl 88]) 89m4trace:/usr/share/aclocal-1.11/amversion.m4:17: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.11' 90dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to 91dnl require some minimum version. Point them to the right macro. 92m4_if([$1], [1.11.6], [], 93 [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl 94]) 95m4trace:/usr/share/aclocal-1.11/amversion.m4:36: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.11.6])dnl 96m4_ifndef([AC_AUTOCONF_VERSION], 97 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl 98_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) 99m4trace:/usr/share/aclocal-1.11/auxdir.m4:49: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly. 100AC_PREREQ([2.50])dnl 101# expand $ac_aux_dir to an absolute path 102am_aux_dir=`cd $ac_aux_dir && pwd` 103]) 104m4trace:/usr/share/aclocal-1.11/cond.m4:15: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl 105 ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], 106 [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl 107AC_SUBST([$1_TRUE])dnl 108AC_SUBST([$1_FALSE])dnl 109_AM_SUBST_NOTMAKE([$1_TRUE])dnl 110_AM_SUBST_NOTMAKE([$1_FALSE])dnl 111m4_define([_AM_COND_VALUE_$1], [$2])dnl 112if $2; then 113 $1_TRUE= 114 $1_FALSE='#' 115else 116 $1_TRUE='#' 117 $1_FALSE= 118fi 119AC_CONFIG_COMMANDS_PRE( 120[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then 121 AC_MSG_ERROR([[conditional "$1" was never defined. 122Usually this means the macro was only invoked conditionally.]]) 123fi])]) 124m4trace:/usr/share/aclocal-1.11/depend.m4:28: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl 125AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl 126AC_REQUIRE([AM_MAKE_INCLUDE])dnl 127AC_REQUIRE([AM_DEP_TRACK])dnl 128 129ifelse([$1], CC, [depcc="$CC" am_compiler_list=], 130 [$1], CXX, [depcc="$CXX" am_compiler_list=], 131 [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], 132 [$1], UPC, [depcc="$UPC" am_compiler_list=], 133 [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], 134 [depcc="$$1" am_compiler_list=]) 135 136AC_CACHE_CHECK([dependency style of $depcc], 137 [am_cv_$1_dependencies_compiler_type], 138[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then 139 # We make a subdir and do the tests there. Otherwise we can end up 140 # making bogus files that we don't know about and never remove. For 141 # instance it was reported that on HP-UX the gcc test will end up 142 # making a dummy file named `D' -- because `-MD' means `put the output 143 # in D'. 144 rm -rf conftest.dir 145 mkdir conftest.dir 146 # Copy depcomp to subdir because otherwise we won't find it if we're 147 # using a relative directory. 148 cp "$am_depcomp" conftest.dir 149 cd conftest.dir 150 # We will build objects and dependencies in a subdirectory because 151 # it helps to detect inapplicable dependency modes. For instance 152 # both Tru64's cc and ICC support -MD to output dependencies as a 153 # side effect of compilation, but ICC will put the dependencies in 154 # the current directory while Tru64 will put them in the object 155 # directory. 156 mkdir sub 157 158 am_cv_$1_dependencies_compiler_type=none 159 if test "$am_compiler_list" = ""; then 160 am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` 161 fi 162 am__universal=false 163 m4_case([$1], [CC], 164 [case " $depcc " in #( 165 *\ -arch\ *\ -arch\ *) am__universal=true ;; 166 esac], 167 [CXX], 168 [case " $depcc " in #( 169 *\ -arch\ *\ -arch\ *) am__universal=true ;; 170 esac]) 171 172 for depmode in $am_compiler_list; do 173 # Setup a source with many dependencies, because some compilers 174 # like to wrap large dependency lists on column 80 (with \), and 175 # we should not choose a depcomp mode which is confused by this. 176 # 177 # We need to recreate these files for each test, as the compiler may 178 # overwrite some of them when testing with obscure command lines. 179 # This happens at least with the AIX C compiler. 180 : > sub/conftest.c 181 for i in 1 2 3 4 5 6; do 182 echo '#include "conftst'$i'.h"' >> sub/conftest.c 183 # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with 184 # Solaris 8's {/usr,}/bin/sh. 185 touch sub/conftst$i.h 186 done 187 echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf 188 189 # We check with `-c' and `-o' for the sake of the "dashmstdout" 190 # mode. It turns out that the SunPro C++ compiler does not properly 191 # handle `-M -o', and we need to detect this. Also, some Intel 192 # versions had trouble with output in subdirs 193 am__obj=sub/conftest.${OBJEXT-o} 194 am__minus_obj="-o $am__obj" 195 case $depmode in 196 gcc) 197 # This depmode causes a compiler race in universal mode. 198 test "$am__universal" = false || continue 199 ;; 200 nosideeffect) 201 # after this tag, mechanisms are not by side-effect, so they'll 202 # only be used when explicitly requested 203 if test "x$enable_dependency_tracking" = xyes; then 204 continue 205 else 206 break 207 fi 208 ;; 209 msvc7 | msvc7msys | msvisualcpp | msvcmsys) 210 # This compiler won't grok `-c -o', but also, the minuso test has 211 # not run yet. These depmodes are late enough in the game, and 212 # so weak that their functioning should not be impacted. 213 am__obj=conftest.${OBJEXT-o} 214 am__minus_obj= 215 ;; 216 none) break ;; 217 esac 218 if depmode=$depmode \ 219 source=sub/conftest.c object=$am__obj \ 220 depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ 221 $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ 222 >/dev/null 2>conftest.err && 223 grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && 224 grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && 225 grep $am__obj sub/conftest.Po > /dev/null 2>&1 && 226 ${MAKE-make} -s -f confmf > /dev/null 2>&1; then 227 # icc doesn't choke on unknown options, it will just issue warnings 228 # or remarks (even with -Werror). So we grep stderr for any message 229 # that says an option was ignored or not supported. 230 # When given -MP, icc 7.0 and 7.1 complain thusly: 231 # icc: Command line warning: ignoring option '-M'; no argument required 232 # The diagnosis changed in icc 8.0: 233 # icc: Command line remark: option '-MP' not supported 234 if (grep 'ignoring option' conftest.err || 235 grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else 236 am_cv_$1_dependencies_compiler_type=$depmode 237 break 238 fi 239 fi 240 done 241 242 cd .. 243 rm -rf conftest.dir 244else 245 am_cv_$1_dependencies_compiler_type=none 246fi 247]) 248AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) 249AM_CONDITIONAL([am__fastdep$1], [ 250 test "x$enable_dependency_tracking" != xno \ 251 && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) 252]) 253m4trace:/usr/share/aclocal-1.11/depend.m4:164: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl 254AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl 255]) 256m4trace:/usr/share/aclocal-1.11/depend.m4:172: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking, 257[ --disable-dependency-tracking speeds up one-time build 258 --enable-dependency-tracking do not reject slow dependency extractors]) 259if test "x$enable_dependency_tracking" != xno; then 260 am_depcomp="$ac_aux_dir/depcomp" 261 AMDEPBACKSLASH='\' 262 am__nodep='_no' 263fi 264AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) 265AC_SUBST([AMDEPBACKSLASH])dnl 266_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl 267AC_SUBST([am__nodep])dnl 268_AM_SUBST_NOTMAKE([am__nodep])dnl 269]) 270m4trace:/usr/share/aclocal-1.11/depout.m4:14: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ 271 # Autoconf 2.62 quotes --file arguments for eval, but not when files 272 # are listed without --file. Let's play safe and only enable the eval 273 # if we detect the quoting. 274 case $CONFIG_FILES in 275 *\'*) eval set x "$CONFIG_FILES" ;; 276 *) set x $CONFIG_FILES ;; 277 esac 278 shift 279 for mf 280 do 281 # Strip MF so we end up with the name of the file. 282 mf=`echo "$mf" | sed -e 's/:.*$//'` 283 # Check whether this is an Automake generated Makefile or not. 284 # We used to match only the files named `Makefile.in', but 285 # some people rename them; so instead we look at the file content. 286 # Grep'ing the first line is not enough: some people post-process 287 # each Makefile.in and add a new line on top of each file to say so. 288 # Grep'ing the whole file is not good either: AIX grep has a line 289 # limit of 2048, but all sed's we know have understand at least 4000. 290 if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then 291 dirpart=`AS_DIRNAME("$mf")` 292 else 293 continue 294 fi 295 # Extract the definition of DEPDIR, am__include, and am__quote 296 # from the Makefile without running `make'. 297 DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` 298 test -z "$DEPDIR" && continue 299 am__include=`sed -n 's/^am__include = //p' < "$mf"` 300 test -z "am__include" && continue 301 am__quote=`sed -n 's/^am__quote = //p' < "$mf"` 302 # When using ansi2knr, U may be empty or an underscore; expand it 303 U=`sed -n 's/^U = //p' < "$mf"` 304 # Find all dependency output files, they are included files with 305 # $(DEPDIR) in their names. We invoke sed twice because it is the 306 # simplest approach to changing $(DEPDIR) to its actual value in the 307 # expansion. 308 for file in `sed -n " 309 s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ 310 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do 311 # Make sure the directory exists. 312 test -f "$dirpart/$file" && continue 313 fdir=`AS_DIRNAME(["$file"])` 314 AS_MKDIR_P([$dirpart/$fdir]) 315 # echo "creating $dirpart/$file" 316 echo '# dummy' > "$dirpart/$file" 317 done 318 done 319} 320]) 321m4trace:/usr/share/aclocal-1.11/depout.m4:75: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], 322 [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], 323 [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) 324]) 325m4trace:/usr/share/aclocal-1.11/header.m4:12: -1- AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)]) 326m4trace:/usr/share/aclocal-1.11/header.m4:12: -1- AC_DEFUN([AM_CONFIG_HEADER], [AC_DIAGNOSE([obsolete], [The macro `AM_CONFIG_HEADER' is obsolete. 327You should run autoupdate.])dnl 328AC_CONFIG_HEADERS($@)]) 329m4trace:/usr/share/aclocal-1.11/init.m4:26: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.62])dnl 330dnl Autoconf wants to disallow AM_ names. We explicitly allow 331dnl the ones we care about. 332m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl 333AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl 334AC_REQUIRE([AC_PROG_INSTALL])dnl 335if test "`cd $srcdir && pwd`" != "`pwd`"; then 336 # Use -I$(srcdir) only when $(srcdir) != ., so that make's output 337 # is not polluted with repeated "-I." 338 AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl 339 # test to see if srcdir already configured 340 if test -f $srcdir/config.status; then 341 AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) 342 fi 343fi 344 345# test whether we have cygpath 346if test -z "$CYGPATH_W"; then 347 if (cygpath --version) >/dev/null 2>/dev/null; then 348 CYGPATH_W='cygpath -w' 349 else 350 CYGPATH_W=echo 351 fi 352fi 353AC_SUBST([CYGPATH_W]) 354 355# Define the identity of the package. 356dnl Distinguish between old-style and new-style calls. 357m4_ifval([$2], 358[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl 359 AC_SUBST([PACKAGE], [$1])dnl 360 AC_SUBST([VERSION], [$2])], 361[_AM_SET_OPTIONS([$1])dnl 362dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. 363m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, 364 [m4_fatal([AC_INIT should be called with package and version arguments])])dnl 365 AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl 366 AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl 367 368_AM_IF_OPTION([no-define],, 369[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) 370 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl 371 372# Some tools Automake needs. 373AC_REQUIRE([AM_SANITY_CHECK])dnl 374AC_REQUIRE([AC_ARG_PROGRAM])dnl 375AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) 376AM_MISSING_PROG(AUTOCONF, autoconf) 377AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) 378AM_MISSING_PROG(AUTOHEADER, autoheader) 379AM_MISSING_PROG(MAKEINFO, makeinfo) 380AC_REQUIRE([AM_PROG_INSTALL_SH])dnl 381AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl 382AC_REQUIRE([AM_PROG_MKDIR_P])dnl 383# We need awk for the "check" target. The system "awk" is bad on 384# some platforms. 385AC_REQUIRE([AC_PROG_AWK])dnl 386AC_REQUIRE([AC_PROG_MAKE_SET])dnl 387AC_REQUIRE([AM_SET_LEADING_DOT])dnl 388_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], 389 [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], 390 [_AM_PROG_TAR([v7])])]) 391_AM_IF_OPTION([no-dependencies],, 392[AC_PROVIDE_IFELSE([AC_PROG_CC], 393 [_AM_DEPENDENCIES(CC)], 394 [define([AC_PROG_CC], 395 defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl 396AC_PROVIDE_IFELSE([AC_PROG_CXX], 397 [_AM_DEPENDENCIES(CXX)], 398 [define([AC_PROG_CXX], 399 defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl 400AC_PROVIDE_IFELSE([AC_PROG_OBJC], 401 [_AM_DEPENDENCIES(OBJC)], 402 [define([AC_PROG_OBJC], 403 defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl 404]) 405_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl 406dnl The `parallel-tests' driver may need to know about EXEEXT, so add the 407dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro 408dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. 409AC_CONFIG_COMMANDS_PRE(dnl 410[m4_provide_if([_AM_COMPILER_EXEEXT], 411 [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl 412]) 413m4trace:/usr/share/aclocal-1.11/init.m4:126: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. 414_am_arg=$1 415_am_stamp_count=1 416for _am_header in $config_headers :; do 417 case $_am_header in 418 $_am_arg | $_am_arg:* ) 419 break ;; 420 * ) 421 _am_stamp_count=`expr $_am_stamp_count + 1` ;; 422 esac 423done 424echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) 425m4trace:/usr/share/aclocal-1.11/install-sh.m4:14: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl 426if test x"${install_sh}" != xset; then 427 case $am_aux_dir in 428 *\ * | *\ *) 429 install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; 430 *) 431 install_sh="\${SHELL} $am_aux_dir/install-sh" 432 esac 433fi 434AC_SUBST(install_sh)]) 435m4trace:/usr/share/aclocal-1.11/lead-dot.m4:12: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null 436mkdir .tst 2>/dev/null 437if test -d .tst; then 438 am__leading_dot=. 439else 440 am__leading_dot=_ 441fi 442rmdir .tst 2>/dev/null 443AC_SUBST([am__leading_dot])]) 444m4trace:/usr/share/aclocal-1.11/make.m4:14: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} 445cat > confinc << 'END' 446am__doit: 447 @echo this is the am__doit target 448.PHONY: am__doit 449END 450# If we don't find an include directive, just comment out the code. 451AC_MSG_CHECKING([for style of include used by $am_make]) 452am__include="#" 453am__quote= 454_am_result=none 455# First try GNU make style include. 456echo "include confinc" > confmf 457# Ignore all kinds of additional output from `make'. 458case `$am_make -s -f confmf 2> /dev/null` in #( 459*the\ am__doit\ target*) 460 am__include=include 461 am__quote= 462 _am_result=GNU 463 ;; 464esac 465# Now try BSD make style include. 466if test "$am__include" = "#"; then 467 echo '.include "confinc"' > confmf 468 case `$am_make -s -f confmf 2> /dev/null` in #( 469 *the\ am__doit\ target*) 470 am__include=.include 471 am__quote="\"" 472 _am_result=BSD 473 ;; 474 esac 475fi 476AC_SUBST([am__include]) 477AC_SUBST([am__quote]) 478AC_MSG_RESULT([$_am_result]) 479rm -f confinc confmf 480]) 481m4trace:/usr/share/aclocal-1.11/minuso.m4:14: -1- AC_DEFUN([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC_C_O])dnl 482AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl 483AC_REQUIRE_AUX_FILE([compile])dnl 484# FIXME: we rely on the cache variable name because 485# there is no other way. 486set dummy $CC 487am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']` 488eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o 489if test "$am_t" != yes; then 490 # Losing compiler, so override with the script. 491 # FIXME: It is wrong to rewrite CC. 492 # But if we don't then we get into trouble of one sort or another. 493 # A longer-term fix would be to have automake use am__CC in this case, 494 # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" 495 CC="$am_aux_dir/compile $CC" 496fi 497dnl Make sure AC_PROG_CC is never called again, or it will override our 498dnl setting of CC. 499m4_define([AC_PROG_CC], 500 [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])]) 501]) 502m4trace:/usr/share/aclocal-1.11/missing.m4:14: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) 503$1=${$1-"${am_missing_run}$2"} 504AC_SUBST($1)]) 505m4trace:/usr/share/aclocal-1.11/missing.m4:24: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl 506AC_REQUIRE_AUX_FILE([missing])dnl 507if test x"${MISSING+set}" != xset; then 508 case $am_aux_dir in 509 *\ * | *\ *) 510 MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; 511 *) 512 MISSING="\${SHELL} $am_aux_dir/missing" ;; 513 esac 514fi 515# Use eval to expand $SHELL 516if eval "$MISSING --run true"; then 517 am_missing_run="$MISSING --run " 518else 519 am_missing_run= 520 AC_MSG_WARN([`missing' script is too old or missing]) 521fi 522]) 523m4trace:/usr/share/aclocal-1.11/mkdirp.m4:14: -1- AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl 524AC_REQUIRE([AC_PROG_MKDIR_P])dnl 525dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, 526dnl while keeping a definition of mkdir_p for backward compatibility. 527dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. 528dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of 529dnl Makefile.ins that do not define MKDIR_P, so we do our own 530dnl adjustment using top_builddir (which is defined more often than 531dnl MKDIR_P). 532AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl 533case $mkdir_p in 534 [[\\/$]]* | ?:[[\\/]]*) ;; 535 */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; 536esac 537]) 538m4trace:/usr/share/aclocal-1.11/options.m4:14: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) 539m4trace:/usr/share/aclocal-1.11/options.m4:20: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)]) 540m4trace:/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)])]) 541m4trace:/usr/share/aclocal-1.11/options.m4:32: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) 542m4trace:/usr/share/aclocal-1.11/runlog.m4:14: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD 543 ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD 544 ac_status=$? 545 echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD 546 (exit $ac_status); }]) 547m4trace:/usr/share/aclocal-1.11/sanity.m4:14: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) 548# Just in case 549sleep 1 550echo timestamp > conftest.file 551# Reject unsafe characters in $srcdir or the absolute working directory 552# name. Accept space and tab only in the latter. 553am_lf=' 554' 555case `pwd` in 556 *[[\\\"\#\$\&\'\`$am_lf]]*) 557 AC_MSG_ERROR([unsafe absolute working directory name]);; 558esac 559case $srcdir in 560 *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) 561 AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; 562esac 563 564# Do `set' in a subshell so we don't clobber the current shell's 565# arguments. Must try -L first in case configure is actually a 566# symlink; some systems play weird games with the mod time of symlinks 567# (eg FreeBSD returns the mod time of the symlink's containing 568# directory). 569if ( 570 set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` 571 if test "$[*]" = "X"; then 572 # -L didn't work. 573 set X `ls -t "$srcdir/configure" conftest.file` 574 fi 575 rm -f conftest.file 576 if test "$[*]" != "X $srcdir/configure conftest.file" \ 577 && test "$[*]" != "X conftest.file $srcdir/configure"; then 578 579 # If neither matched, then we have a broken ls. This can happen 580 # if, for instance, CONFIG_SHELL is bash and it inherits a 581 # broken ls alias from the environment. This has actually 582 # happened. Such a system could not be considered "sane". 583 AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken 584alias in your environment]) 585 fi 586 587 test "$[2]" = conftest.file 588 ) 589then 590 # Ok. 591 : 592else 593 AC_MSG_ERROR([newly created file is older than distributed files! 594Check your system clock]) 595fi 596AC_MSG_RESULT(yes)]) 597m4trace:/usr/share/aclocal-1.11/silent.m4:14: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], 598[ --enable-silent-rules less verbose build output (undo: `make V=1') 599 --disable-silent-rules verbose build output (undo: `make V=0')]) 600case $enable_silent_rules in 601yes) AM_DEFAULT_VERBOSITY=0;; 602no) AM_DEFAULT_VERBOSITY=1;; 603*) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; 604esac 605dnl 606dnl A few `make' implementations (e.g., NonStop OS and NextStep) 607dnl do not support nested variable expansions. 608dnl See automake bug#9928 and bug#10237. 609am_make=${MAKE-make} 610AC_CACHE_CHECK([whether $am_make supports nested variables], 611 [am_cv_make_support_nested_variables], 612 [if AS_ECHO([['TRUE=$(BAR$(V)) 613BAR0=false 614BAR1=true 615V=1 616am__doit: 617 @$(TRUE) 618.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then 619 am_cv_make_support_nested_variables=yes 620else 621 am_cv_make_support_nested_variables=no 622fi]) 623if test $am_cv_make_support_nested_variables = yes; then 624 dnl Using `$V' instead of `$(V)' breaks IRIX make. 625 AM_V='$(V)' 626 AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' 627else 628 AM_V=$AM_DEFAULT_VERBOSITY 629 AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY 630fi 631AC_SUBST([AM_V])dnl 632AM_SUBST_NOTMAKE([AM_V])dnl 633AC_SUBST([AM_DEFAULT_V])dnl 634AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl 635AC_SUBST([AM_DEFAULT_VERBOSITY])dnl 636AM_BACKSLASH='\' 637AC_SUBST([AM_BACKSLASH])dnl 638_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl 639]) 640m4trace:/usr/share/aclocal-1.11/strip.m4:19: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl 641# Installed binaries are usually stripped using `strip' when the user 642# run `make install-strip'. However `strip' might not be the right 643# tool to use in cross-compilation environments, therefore Automake 644# will honor the `STRIP' environment variable to overrule this program. 645dnl Don't test for $cross_compiling = yes, because it might be `maybe'. 646if test "$cross_compiling" != no; then 647 AC_CHECK_TOOL([STRIP], [strip], :) 648fi 649INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" 650AC_SUBST([INSTALL_STRIP_PROGRAM])]) 651m4trace:/usr/share/aclocal-1.11/substnot.m4:14: -1- AC_DEFUN([_AM_SUBST_NOTMAKE]) 652m4trace:/usr/share/aclocal-1.11/substnot.m4:19: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) 653m4trace:/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 654# in the wild :-( We should find a proper way to deprecate it ... 655AC_SUBST([AMTAR], ['$${TAR-tar}']) 656m4_if([$1], [v7], 657 [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], 658 [m4_case([$1], [ustar],, [pax],, 659 [m4_fatal([Unknown tar format])]) 660AC_MSG_CHECKING([how to create a $1 tar archive]) 661# Loop over all known methods to create a tar archive until one works. 662_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' 663_am_tools=${am_cv_prog_tar_$1-$_am_tools} 664# Do not fold the above two line into one, because Tru64 sh and 665# Solaris sh will not grok spaces in the rhs of `-'. 666for _am_tool in $_am_tools 667do 668 case $_am_tool in 669 gnutar) 670 for _am_tar in tar gnutar gtar; 671 do 672 AM_RUN_LOG([$_am_tar --version]) && break 673 done 674 am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' 675 am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' 676 am__untar="$_am_tar -xf -" 677 ;; 678 plaintar) 679 # Must skip GNU tar: if it does not support --format= it doesn't create 680 # ustar tarball either. 681 (tar --version) >/dev/null 2>&1 && continue 682 am__tar='tar chf - "$$tardir"' 683 am__tar_='tar chf - "$tardir"' 684 am__untar='tar xf -' 685 ;; 686 pax) 687 am__tar='pax -L -x $1 -w "$$tardir"' 688 am__tar_='pax -L -x $1 -w "$tardir"' 689 am__untar='pax -r' 690 ;; 691 cpio) 692 am__tar='find "$$tardir" -print | cpio -o -H $1 -L' 693 am__tar_='find "$tardir" -print | cpio -o -H $1 -L' 694 am__untar='cpio -i -H $1 -d' 695 ;; 696 none) 697 am__tar=false 698 am__tar_=false 699 am__untar=false 700 ;; 701 esac 702 703 # If the value was cached, stop now. We just wanted to have am__tar 704 # and am__untar set. 705 test -n "${am_cv_prog_tar_$1}" && break 706 707 # tar/untar a dummy directory, and stop if the command works 708 rm -rf conftest.dir 709 mkdir conftest.dir 710 echo GrepMe > conftest.dir/file 711 AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) 712 rm -rf conftest.dir 713 if test -s conftest.tar; then 714 AM_RUN_LOG([$am__untar <conftest.tar]) 715 grep GrepMe conftest.dir/file >/dev/null 2>&1 && break 716 fi 717done 718rm -rf conftest.dir 719 720AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) 721AC_MSG_RESULT([$am_cv_prog_tar_$1])]) 722AC_SUBST([am__tar]) 723AC_SUBST([am__untar]) 724]) 725m4trace:acinclude.m4:2: -1- AC_DEFUN([AC_TYPE_SOCKLEN_T], [AC_CACHE_CHECK([for socklen_t], ac_cv_type_socklen_t, 726[ 727 AC_TRY_COMPILE( 728 [#include <sys/types.h> 729 #include <sys/socket.h>], 730 [socklen_t len = 42; return 0;], 731 ac_cv_type_socklen_t=yes, 732 ac_cv_type_socklen_t=no) 733]) 734 if test $ac_cv_type_socklen_t != yes; then 735 AC_DEFINE(socklen_t, int) 736 fi 737]) 738m4trace:acinclude.m4:20: -1- AC_DEFUN([AC_COMPILE_CHECK_SIZEOF], [changequote(<<, >>)dnl 739dnl The name to #define. 740define(<<AC_TYPE_NAME>>, translit(sizeof_$1, [a-z *], [A-Z_P]))dnl 741dnl The cache variable name. 742define(<<AC_CV_NAME>>, translit(ac_cv_sizeof_$1, [ *], [_p]))dnl 743changequote([, ])dnl 744AC_MSG_CHECKING(size of $1) 745AC_CACHE_VAL(AC_CV_NAME, 746[for ac_size in 4 8 1 2 16 $2 ; do # List sizes in rough order of prevalence. 747 AC_TRY_COMPILE([#include "confdefs.h" 748#include <sys/types.h> 749$2 750], [switch (0) case 0: case (sizeof ($1) == $ac_size):;], AC_CV_NAME=$ac_size) 751 if test x$AC_CV_NAME != x ; then break; fi 752done 753]) 754if test x$AC_CV_NAME = x ; then 755 AC_MSG_ERROR([cannot determine a size for $1]) 756fi 757AC_MSG_RESULT($AC_CV_NAME) 758AC_DEFINE_UNQUOTED(AC_TYPE_NAME, $AC_CV_NAME, [The number of bytes in type $1]) 759undefine([AC_TYPE_NAME])dnl 760undefine([AC_CV_NAME])dnl 761]) 762m4trace:acinclude.m4:49: -1- AC_DEFUN([AC_CREATE_STDINT_H], [# ------ AC CREATE STDINT H ------------------------------------- 763AC_MSG_CHECKING([for stdint-types....]) 764ac_stdint_h=`echo ifelse($1, , _stdint.h, $1)` 765if test "$ac_stdint_h" = "stdint.h" ; then 766 AC_MSG_RESULT("(are you sure you want them in ./stdint.h?)") 767elif test "$ac_stdint_h" = "inttypes.h" ; then 768 AC_MSG_RESULT("(are you sure you want them in ./inttypes.h?)") 769else 770 AC_MSG_RESULT("(putting them into $ac_stdint_h)") 771fi 772 773inttype_headers=`echo inttypes.h sys/inttypes.h sys/inttypes.h $2 \ 774| sed -e 's/,/ /g'` 775 776 ac_cv_header_stdint_x="no-file" 777 ac_cv_header_stdint_o="no-file" 778 ac_cv_header_stdint_u="no-file" 779 for i in stdint.h $inttype_headers ; do 780 unset ac_cv_type_uintptr_t 781 unset ac_cv_type_uint64_t 782 _AC_CHECK_TYPE_NEW(uintptr_t,[ac_cv_header_stdint_x=$i],dnl 783 continue,[#include <$i>]) 784 AC_CHECK_TYPE(uint64_t,[and64="(uint64_t too)"],[and64=""],[#include<$i>]) 785 AC_MSG_RESULT(... seen our uintptr_t in $i $and64) 786 break; 787 done 788 if test "$ac_cv_header_stdint_x" = "no-file" ; then 789 for i in stdint.h $inttype_headers ; do 790 unset ac_cv_type_uint32_t 791 unset ac_cv_type_uint64_t 792 AC_CHECK_TYPE(uint32_t,[ac_cv_header_stdint_o=$i],dnl 793 continue,[#include <$i>]) 794 AC_CHECK_TYPE(uint64_t,[and64="(uint64_t too)"],[and64=""],[#include<$i>]) 795 AC_MSG_RESULT(... seen our uint32_t in $i $and64) 796 break; 797 done 798 if test "$ac_cv_header_stdint_o" = "no-file" ; then 799 for i in sys/types.h $inttype_headers ; do 800 unset ac_cv_type_u_int32_t 801 unset ac_cv_type_u_int64_t 802 AC_CHECK_TYPE(u_int32_t,[ac_cv_header_stdint_u=$i],dnl 803 continue,[#include <$i>]) 804 AC_CHECK_TYPE(uint64_t,[and64="(u_int64_t too)"],[and64=""],[#include<$i>]) 805 AC_MSG_RESULT(... seen our u_int32_t in $i $and64) 806 break; 807 done 808 fi 809 fi 810 811# ----------------- DONE inttypes.h checks MAYBE C basic types -------- 812 813if test "$ac_cv_header_stdint_x" = "no-file" ; then 814 AC_COMPILE_CHECK_SIZEOF(char) 815 AC_COMPILE_CHECK_SIZEOF(short) 816 AC_COMPILE_CHECK_SIZEOF(int) 817 AC_COMPILE_CHECK_SIZEOF(long) 818 AC_COMPILE_CHECK_SIZEOF(void*) 819 ac_cv_header_stdint_test="yes" 820else 821 ac_cv_header_stdint_test="no" 822fi 823 824# ----------------- DONE inttypes.h checks START header ------------- 825_ac_stdint_h=AS_TR_CPP(_$ac_stdint_h) 826AC_MSG_RESULT(creating $ac_stdint_h : $_ac_stdint_h) 827echo "#ifndef" $_ac_stdint_h >$ac_stdint_h 828echo "#define" $_ac_stdint_h "1" >>$ac_stdint_h 829echo "#ifndef" _GENERATED_STDINT_H >>$ac_stdint_h 830echo "#define" _GENERATED_STDINT_H '"'$PACKAGE $VERSION'"' >>$ac_stdint_h 831if test "$GCC" = "yes" ; then 832 echo "/* generated using a gnu compiler version" `$CC --version` "*/" \ 833 >>$ac_stdint_h 834else 835 echo "/* generated using $CC */" >>$ac_stdint_h 836fi 837echo "" >>$ac_stdint_h 838 839if test "$ac_cv_header_stdint_x" != "no-file" ; then 840 ac_cv_header_stdint="$ac_cv_header_stdint_x" 841elif test "$ac_cv_header_stdint_o" != "no-file" ; then 842 ac_cv_header_stdint="$ac_cv_header_stdint_o" 843elif test "$ac_cv_header_stdint_u" != "no-file" ; then 844 ac_cv_header_stdint="$ac_cv_header_stdint_u" 845else 846 ac_cv_header_stdint="stddef.h" 847fi 848 849# ----------------- See if int_least and int_fast types are present 850unset ac_cv_type_int_least32_t 851unset ac_cv_type_int_fast32_t 852AC_CHECK_TYPE(int_least32_t,,,[#include <$ac_cv_header_stdint>]) 853AC_CHECK_TYPE(int_fast32_t,,,[#include<$ac_cv_header_stdint>]) 854 855if test "$ac_cv_header_stdint" != "stddef.h" ; then 856if test "$ac_cv_header_stdint" != "stdint.h" ; then 857AC_MSG_RESULT(..adding include stddef.h) 858 echo "#include <stddef.h>" >>$ac_stdint_h 859fi ; fi 860AC_MSG_RESULT(..adding include $ac_cv_header_stdint) 861 echo "#include <$ac_cv_header_stdint>" >>$ac_stdint_h 862echo "" >>$ac_stdint_h 863 864# ----------------- DONE header START basic int types ------------- 865if test "$ac_cv_header_stdint_x" = "no-file" ; then 866 AC_MSG_RESULT(... need to look at C basic types) 867dnl ac_cv_header_stdint_test="yes" # moved up before creating the file 868else 869 AC_MSG_RESULT(... seen good stdint.h inttypes) 870dnl ac_cv_header_stdint_test="no" # moved up before creating the file 871fi 872 873if test "$ac_cv_header_stdint_u" != "no-file" ; then 874 AC_MSG_RESULT(... seen bsd/sysv typedefs) 875 cat >>$ac_stdint_h <<EOF 876 877/* int8_t int16_t int32_t defined by inet code, redeclare the u_intXX types */ 878typedef u_int8_t uint8_t; 879typedef u_int16_t uint16_t; 880typedef u_int32_t uint32_t; 881EOF 882 cat >>$ac_stdint_h <<EOF 883 884/* glibc compatibility */ 885#ifndef __int8_t_defined 886#define __int8_t_defined 887#endif 888EOF 889fi 890 891ac_cv_sizeof_x="$ac_cv_sizeof_char:$ac_cv_sizeof_short" 892ac_cv_sizeof_X="$ac_cv_sizeof_x:$ac_cv_sizeof_int" 893ac_cv_sizeof_X="$ac_cv_sizeof_X:$ac_cv_sizeof_voidp:$ac_cv_sizeof_long" 894if test "$ac_cv_header_stdint" = "stddef.h" ; then 895# we must guess all the basic types. Apart from byte-adressable system, 896# there a few 32-bit-only dsp-systems. nibble-addressable systems are way off. 897 cat >>$ac_stdint_h <<EOF 898/* ------------ BITSPECIFIC INTTYPES SECTION --------------- */ 899EOF 900 t="typedefs for a" 901 case "$ac_cv_sizeof_X" in 902 1:2:2:2:4) AC_MSG_RESULT(..adding $t normal 16-bit system) 903 cat >>$ac_stdint_h <<EOF 904/* a normal 16-bit system */ 905typedef unsigned char uint8_t; 906typedef unsigned short uint16_t; 907typedef unsigned long uint32_t; 908#ifndef __int8_t_defined 909#define __int8_t_defined 910typedef char int8_t; 911typedef short int16_t; 912typedef long int32_t; 913#endif 914EOF 915;; 916 1:2:2:4:4) AC_MSG_RESULT(..adding $t 32-bit system derived from a 16-bit) 917 cat >>$ac_stdint_h <<EOF 918/* a 32-bit system derived from a 16-bit */ 919typedef unsigned char uint8_t; 920typedef unsigned short uint16_t; 921typedef unsigned int uint32_t; 922#ifndef __int8_t_defined 923#define __int8_t_defined 924typedef char int8_t; 925typedef short int16_t; 926typedef int int32_t; 927#endif 928EOF 929;; 930 1:2:4:4:4) AC_MSG_RESULT(..adding $t normal 32-bit system) 931 cat >>$ac_stdint_h <<EOF 932/* a normal 32-bit system */ 933typedef unsigned char uint8_t; 934typedef unsigned short uint16_t; 935typedef unsigned int uint32_t; 936#ifndef __int8_t_defined 937#define __int8_t_defined 938typedef char int8_t; 939typedef short int16_t; 940typedef int int32_t; 941#endif 942EOF 943;; 944 1:2:4:4:8) AC_MSG_RESULT(..adding $t 32-bit system prepared for 64-bit) 945 cat >>$ac_stdint_h <<EOF 946 947/* a 32-bit system prepared for 64-bit */ 948typedef unsigned char uint8_t; 949typedef unsigned short uint16_t; 950typedef unsigned int uint32_t; 951#ifndef __int8_t_defined 952#define __int8_t_defined 953typedef char int8_t; 954typedef short int16_t; 955typedef int int32_t; 956#endif 957EOF 958;; 959 1:2:4:8:8) AC_MSG_RESULT(..adding $t normal 64-bit system) 960 cat >>$ac_stdint_h <<EOF 961 962/* a normal 64-bit system */ 963typedef unsigned char uint8_t; 964typedef unsigned short uint16_t; 965typedef unsigned int uint32_t; 966#ifndef __int8_t_defined 967#define __int8_t_defined 968typedef char int8_t; 969typedef short int16_t; 970typedef int int32_t; 971#endif 972EOF 973;; 974 1:2:4:8:4) AC_MSG_RESULT(..adding $t 64-bit system derived from a 32-bit) 975 cat >>$ac_stdint_h <<EOF 976 977/* a 64-bit system derived from a 32-bit system */ 978typedef unsigned char uint8_t; 979typedef unsigned short uint16_t; 980typedef unsigned int uint32_t; 981#ifndef __int8_t_defined 982#define __int8_t_defined 983typedef char int8_t; 984typedef short int16_t; 985typedef int int32_t; 986#endif 987EOF 988;; 989 *) 990 AC_MSG_ERROR([ $ac_cv_sizeof_X dnl 991 what is that a system? contact the author, quick! http://ac-archive.sf.net]) 992 exit 1 993;; 994 esac 995fi 996 997# ------------- DONE basic int types START int64_t types ------------ 998if test "$ac_cv_type_uint64_t" = "yes" 999then AC_MSG_RESULT(... seen good uint64_t) 1000 cat >>$ac_stdint_h <<EOF 1001 1002/* system headers have good uint64_t */ 1003#ifndef _HAVE_UINT64_T 1004#define _HAVE_UINT64_T 1005#endif 1006EOF 1007 1008elif test "$ac_cv_type_u_int64_t" = "yes" 1009then AC_MSG_RESULT(..adding typedef u_int64_t uint64_t) 1010 cat >>$ac_stdint_h <<EOF 1011 1012/* system headers have an u_int64_t */ 1013#ifndef _HAVE_UINT64_T 1014#define _HAVE_UINT64_T 1015typedef u_int64_t uint64_t; 1016#endif 1017EOF 1018else AC_MSG_RESULT(..adding generic uint64_t runtime checks) 1019 cat >>$ac_stdint_h <<EOF 1020 1021/* -------------------- 64 BIT GENERIC SECTION -------------------- */ 1022/* here are some common heuristics using compiler runtime specifics */ 1023#if defined __STDC_VERSION__ && defined __STDC_VERSION__ > 199901L 1024 1025#ifndef _HAVE_UINT64_T 1026#define _HAVE_UINT64_T 1027typedef long long int64_t; 1028typedef unsigned long long uint64_t; 1029#endif 1030 1031#elif !defined __STRICT_ANSI__ 1032#if defined _MSC_VER || defined __WATCOMC__ || defined __BORLANDC__ 1033 1034#ifndef _HAVE_UINT64_T 1035#define _HAVE_UINT64_T 1036typedef __int64 int64_t; 1037typedef unsigned __int64 uint64_t; 1038#endif 1039 1040#elif defined __GNUC__ || defined __MWERKS__ || defined __ELF__ 1041dnl /* note: all ELF-systems seem to have loff-support which needs 64-bit */ 1042 1043#if !defined _NO_LONGLONG 1044#ifndef _HAVE_UINT64_T 1045#define _HAVE_UINT64_T 1046typedef long long int64_t; 1047typedef unsigned long long uint64_t; 1048#endif 1049#endif 1050 1051#elif defined __alpha || (defined __mips && defined _ABIN32) 1052 1053#if !defined _NO_LONGLONG 1054#ifndef _HAVE_UINT64_T 1055#define _HAVE_UINT64_T 1056typedef long int64_t; 1057typedef unsigned long uint64_t; 1058#endif 1059#endif 1060 /* compiler/cpu type ... or just ISO C99 */ 1061#endif 1062#endif 1063EOF 1064 1065# plus a default 64-bit for systems that are likely to be 64-bit ready 1066 case "$ac_cv_sizeof_x:$ac_cv_sizeof_voidp:$ac_cv_sizeof_long" in 1067 1:2:8:8) AC_MSG_RESULT(..adding uint64_t default, normal 64-bit system) 1068cat >>$ac_stdint_h <<EOF 1069/* DEFAULT: */ 1070/* seen normal 64-bit system, CC has sizeof(long and void*) == 8 bytes */ 1071#ifndef _HAVE_UINT64_T 1072#define _HAVE_UINT64_T 1073typedef long int64_t; 1074typedef unsigned long uint64_t; 1075#endif 1076EOF 1077;; 1078 1:2:4:8) AC_MSG_RESULT(..adding uint64_t default, typedef to long) 1079cat >>$ac_stdint_h <<EOF 1080/* DEFAULT: */ 1081/* seen 32-bit system prepared for 64-bit, CC has sizeof(long) == 8 bytes */ 1082#ifndef _HAVE_UINT64_T 1083#define _HAVE_UINT64_T 1084typedef long int64_t; 1085typedef unsigned long uint64_t; 1086#endif 1087EOF 1088;; 1089 1:2:8:4) AC_MSG_RESULT(..adding uint64_t default, typedef long long) 1090cat >>$ac_stdint_h <<EOF 1091/* DEFAULT: */ 1092/* seen 64-bit derived from a 32-bit, CC has sizeof(long) == 4 bytes */ 1093#ifndef _HAVE_UINT64_T 1094#define _HAVE_UINT64_T 1095typedef long long int64_t; 1096typedef unsigned long long uint64_t; 1097#endif 1098EOF 1099;; 1100 *) 1101cat >>$ac_stdint_h <<EOF 1102/* NOTE: */ 1103/* the configure-checks for the basic types did not make us believe */ 1104/* that we could add a fallback to a 'long long' typedef to int64_t */ 1105EOF 1106 esac 1107fi 1108 1109# ------------- DONE int64_t types START intptr types ------------ 1110if test "$ac_cv_header_stdint_x" = "no-file" ; then 1111 cat >>$ac_stdint_h <<EOF 1112 1113/* -------------------------- INPTR SECTION --------------------------- */ 1114EOF 1115 case "$ac_cv_sizeof_x:$ac_cv_sizeof_voidp" in 1116 1:2:2) 1117 a="int16_t" ; cat >>$ac_stdint_h <<EOF 1118/* we tested sizeof(void*) to be of 2 chars, hence we declare it 16-bit */ 1119 1120typedef uint16_t uintptr_t; 1121typedef int16_t intptr_t; 1122EOF 1123;; 1124 1:2:4) 1125 a="int32_t" ; cat >>$ac_stdint_h <<EOF 1126/* we tested sizeof(void*) to be of 4 chars, hence we declare it 32-bit */ 1127 1128typedef uint32_t uintptr_t; 1129typedef int32_t intptr_t; 1130EOF 1131;; 1132 1:2:8) 1133 a="int64_t" ; cat >>$ac_stdint_h <<EOF 1134/* we tested sizeof(void*) to be of 8 chars, hence we declare it 64-bit */ 1135 1136typedef uint64_t uintptr_t; 1137typedef int64_t intptr_t; 1138EOF 1139;; 1140 *) 1141 a="long" ; cat >>$ac_stdint_h <<EOF 1142/* we tested sizeof(void*) but got no guess, hence we declare it as if long */ 1143 1144typedef unsigned long uintptr_t; 1145typedef long intptr_t; 1146EOF 1147;; 1148 esac 1149AC_MSG_RESULT(..adding typedef $a intptr_t) 1150fi 1151 1152# ------------- DONE intptr types START int_least types ------------ 1153if test "$ac_cv_type_int_least32_t" = "no"; then 1154AC_MSG_RESULT(..adding generic int_least-types) 1155 cat >>$ac_stdint_h <<EOF 1156 1157/* --------------GENERIC INT_LEAST ------------------ */ 1158 1159typedef int8_t int_least8_t; 1160typedef int16_t int_least16_t; 1161typedef int32_t int_least32_t; 1162#ifdef _HAVE_INT64_T 1163typedef int64_t int_least64_t; 1164#endif 1165 1166typedef uint8_t uint_least8_t; 1167typedef uint16_t uint_least16_t; 1168typedef uint32_t uint_least32_t; 1169#ifdef _HAVE_INT64_T 1170typedef uint64_t uint_least64_t; 1171#endif 1172EOF 1173fi 1174 1175# ------------- DONE intptr types START int_least types ------------ 1176if test "$ac_cv_type_int_fast32_t" = "no"; then 1177AC_MSG_RESULT(..adding generic int_fast-types) 1178 cat >>$ac_stdint_h <<EOF 1179 1180/* --------------GENERIC INT_FAST ------------------ */ 1181 1182typedef int8_t int_fast8_t; 1183typedef int32_t int_fast16_t; 1184typedef int32_t int_fast32_t; 1185#ifdef _HAVE_INT64_T 1186typedef int64_t int_fast64_t; 1187#endif 1188 1189typedef uint8_t uint_fast8_t; 1190typedef uint32_t uint_fast16_t; 1191typedef uint32_t uint_fast32_t; 1192#ifdef _HAVE_INT64_T 1193typedef uint64_t uint_fast64_t; 1194#endif 1195EOF 1196fi 1197 1198if test "$ac_cv_header_stdint_x" = "no-file" ; then 1199 cat >>$ac_stdint_h <<EOF 1200 1201#ifdef _HAVE_INT64_T 1202typedef int64_t intmax_t; 1203typedef uint64_t uintmax_t; 1204#else 1205typedef long int intmax_t; 1206typedef unsigned long uintmax_t; 1207#endif 1208EOF 1209fi 1210 1211AC_MSG_RESULT(... DONE $ac_stdint_h) 1212 cat >>$ac_stdint_h <<EOF 1213 1214 /* once */ 1215#endif 1216#endif 1217EOF 1218]) 1219m4trace:acinclude.m4:518: -1- AC_DEFUN([AX_PREFIX_CONFIG_H], [AC_REQUIRE([AC_CONFIG_HEADER]) 1220AC_CONFIG_COMMANDS([ifelse($1,,$PACKAGE-config.h,$1)],[dnl 1221AS_VAR_PUSHDEF([_OUT],[ac_prefix_conf_OUT])dnl 1222AS_VAR_PUSHDEF([_DEF],[ac_prefix_conf_DEF])dnl 1223AS_VAR_PUSHDEF([_PKG],[ac_prefix_conf_PKG])dnl 1224AS_VAR_PUSHDEF([_LOW],[ac_prefix_conf_LOW])dnl 1225AS_VAR_PUSHDEF([_UPP],[ac_prefix_conf_UPP])dnl 1226AS_VAR_PUSHDEF([_INP],[ac_prefix_conf_INP])dnl 1227m4_pushdef([_script],[conftest.prefix])dnl 1228m4_pushdef([_symbol],[m4_cr_Letters[]m4_cr_digits[]_])dnl 1229_OUT=`echo ifelse($1, , $PACKAGE-config.h, $1)` 1230_DEF=`echo _$_OUT | sed -e "y:m4_cr_letters:m4_cr_LETTERS[]:" -e "s/@<:@^m4_cr_Letters@:>@/_/g"` 1231_PKG=`echo ifelse($2, , $PACKAGE, $2)` 1232_LOW=`echo _$_PKG | sed -e "y:m4_cr_LETTERS-:m4_cr_letters[]_:"` 1233_UPP=`echo $_PKG | sed -e "y:m4_cr_letters-:m4_cr_LETTERS[]_:" -e "/^@<:@m4_cr_digits@:>@/s/^/_/"` 1234_INP=`echo ifelse($3, , _, $3)` 1235if test "$ac_prefix_conf_INP" = "_"; then 1236 for ac_file in : $CONFIG_HEADERS; do test "_$ac_file" = _: && continue 1237 test -f "$ac_prefix_conf_INP" && continue 1238 case $ac_file in 1239 *.h) test -f $ac_file && _INP=$ac_file ;; 1240 *) 1241 esac 1242 done 1243fi 1244if test "$_INP" = "_"; then 1245 case "$_OUT" in 1246 */*) _INP=`basename "$_OUT"` 1247 ;; 1248 *-*) _INP=`echo "$_OUT" | sed -e "s/@<:@_symbol@:>@*-//"` 1249 ;; 1250 *) _INP=config.h 1251 ;; 1252 esac 1253fi 1254if test -z "$_PKG" ; then 1255 AC_MSG_ERROR([no prefix for _PREFIX_PKG_CONFIG_H]) 1256else 1257 if test ! -f "$_INP" ; then if test -f "$srcdir/$_INP" ; then 1258 _INP="$srcdir/$_INP" 1259 fi fi 1260 AC_MSG_NOTICE(creating $_OUT - prefix $_UPP for $_INP defines) 1261 if test -f $_INP ; then 1262 echo "s/@%:@undef *\\(@<:@m4_cr_LETTERS[]_@:>@\\)/@%:@undef $_UPP""_\\1/" > _script 1263 # no! these are things like socklen_t, const, vfork 1264 # echo "s/@%:@undef *\\(@<:@m4_cr_letters@:>@\\)/@%:@undef $_LOW""_\\1/" >> _script 1265 echo "s/@%:@def[]ine *\\(@<:@m4_cr_LETTERS[]_@:>@@<:@_symbol@:>@*\\)\\(.*\\)/@%:@ifndef $_UPP""_\\1 \\" >> _script 1266 echo "@%:@def[]ine $_UPP""_\\1 \\2 \\" >> _script 1267 echo "@%:@endif/" >>_script 1268 # no! these are things like socklen_t, const, vfork 1269 # echo "s/@%:@def[]ine *\\(@<:@m4_cr_letters@:>@@<:@_symbol@:>@*\\)\\(.*\\)/@%:@ifndef $_LOW""_\\1 \\" >> _script 1270 # echo "@%:@define $_LOW""_\\1 \\2 \\" >> _script 1271 # echo "@%:@endif/" >> _script 1272 # now executing _script on _DEF input to create _OUT output file 1273 echo "@%:@ifndef $_DEF" >$tmp/pconfig.h 1274 echo "@%:@def[]ine $_DEF 1" >>$tmp/pconfig.h 1275 echo ' ' >>$tmp/pconfig.h 1276 echo /'*' $_OUT. Generated automatically at end of configure. '*'/ >>$tmp/pconfig.h 1277 1278 sed -f _script $_INP >>$tmp/pconfig.h 1279 echo ' ' >>$tmp/pconfig.h 1280 echo '/* once:' $_DEF '*/' >>$tmp/pconfig.h 1281 echo "@%:@endif" >>$tmp/pconfig.h 1282 if cmp -s $_OUT $tmp/pconfig.h 2>/dev/null; then 1283 AC_MSG_NOTICE([$_OUT is unchanged]) 1284 else 1285 ac_dir=`AS_DIRNAME(["$_OUT"])` 1286 AS_MKDIR_P(["$ac_dir"]) 1287 rm -f "$_OUT" 1288 mv $tmp/pconfig.h "$_OUT" 1289 fi 1290 cp _script _configs.sed 1291 else 1292 AC_MSG_ERROR([input file $_INP does not exist - skip generating $_OUT]) 1293 fi 1294 rm -f conftest.* 1295fi 1296m4_popdef([_symbol])dnl 1297m4_popdef([_script])dnl 1298AS_VAR_POPDEF([_INP])dnl 1299AS_VAR_POPDEF([_UPP])dnl 1300AS_VAR_POPDEF([_LOW])dnl 1301AS_VAR_POPDEF([_PKG])dnl 1302AS_VAR_POPDEF([_DEF])dnl 1303AS_VAR_POPDEF([_OUT])dnl 1304],[PACKAGE="$PACKAGE"])]) 1305m4trace:acinclude.m4:629: -1- AC_DEFUN([AC_PROG_LIBTOOL], [AC_REQUIRE([_AC_PROG_LIBTOOL])dnl 1306dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX 1307dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX. 1308 AC_PROVIDE_IFELSE([AC_PROG_CXX], 1309 [AC_LIBTOOL_CXX], 1310 [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX 1311 ])]) 1312dnl And a similar setup for Fortran 77 support 1313 AC_PROVIDE_IFELSE([AC_PROG_F77], 1314 [AC_LIBTOOL_F77], 1315 [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77 1316])]) 1317 1318dnl Quote AM_PROG_GCJ so that aclocal doesn't bring it in needlessly. 1319dnl If either AC_PROG_GCJ or AM_PROG_GCJ have already been expanded, run 1320dnl AC_LIBTOOL_GCJ immediately, otherwise, hook it in at the end of both. 1321 AC_PROVIDE_IFELSE([AC_PROG_GCJ], 1322 [AC_LIBTOOL_GCJ], 1323 [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], 1324 [AC_LIBTOOL_GCJ], 1325 [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ], 1326 [AC_LIBTOOL_GCJ], 1327 [ifdef([AC_PROG_GCJ], 1328 [define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[AC_LIBTOOL_GCJ])]) 1329 ifdef([A][M_PROG_GCJ], 1330 [define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[AC_LIBTOOL_GCJ])]) 1331 ifdef([LT_AC_PROG_GCJ], 1332 [define([LT_AC_PROG_GCJ], 1333 defn([LT_AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])])]) 1334])]) 1335m4trace:acinclude.m4:664: -1- AC_DEFUN([_AC_PROG_LIBTOOL], [AC_REQUIRE([AC_LIBTOOL_SETUP])dnl 1336AC_BEFORE([$0],[AC_LIBTOOL_CXX])dnl 1337AC_BEFORE([$0],[AC_LIBTOOL_F77])dnl 1338AC_BEFORE([$0],[AC_LIBTOOL_GCJ])dnl 1339 1340# This can be used to rebuild libtool when needed 1341LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" 1342 1343# Always use our own libtool. 1344LIBTOOL='$(SHELL) $(top_builddir)/libtool' 1345AC_SUBST(LIBTOOL)dnl 1346 1347# Prevent multiple expansion 1348define([AC_PROG_LIBTOOL], []) 1349]) 1350m4trace:acinclude.m4:684: -1- AC_DEFUN([AC_LIBTOOL_SETUP], [AC_PREREQ(2.50)dnl 1351AC_REQUIRE([AC_ENABLE_SHARED])dnl 1352AC_REQUIRE([AC_ENABLE_STATIC])dnl 1353AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl 1354AC_REQUIRE([AC_CANONICAL_HOST])dnl 1355AC_REQUIRE([AC_CANONICAL_BUILD])dnl 1356AC_REQUIRE([AC_PROG_CC])dnl 1357AC_REQUIRE([AC_PROG_LD])dnl 1358AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl 1359AC_REQUIRE([AC_PROG_NM])dnl 1360 1361AC_REQUIRE([AC_PROG_LN_S])dnl 1362AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl 1363# Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! 1364AC_REQUIRE([AC_OBJEXT])dnl 1365AC_REQUIRE([AC_EXEEXT])dnl 1366dnl 1367 1368AC_LIBTOOL_SYS_MAX_CMD_LEN 1369AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE 1370AC_LIBTOOL_OBJDIR 1371 1372AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl 1373_LT_AC_PROG_ECHO_BACKSLASH 1374 1375case $host_os in 1376aix3*) 1377 # AIX sometimes has problems with the GCC collect2 program. For some 1378 # reason, if we set the COLLECT_NAMES environment variable, the problems 1379 # vanish in a puff of smoke. 1380 if test "X${COLLECT_NAMES+set}" != Xset; then 1381 COLLECT_NAMES= 1382 export COLLECT_NAMES 1383 fi 1384 ;; 1385esac 1386 1387# Sed substitution that helps us do robust quoting. It backslashifies 1388# metacharacters that are still active within double-quoted strings. 1389Xsed='sed -e 1s/^X//' 1390[sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g'] 1391 1392# Same as above, but do not quote variable references. 1393[double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g'] 1394 1395# Sed substitution to delay expansion of an escaped shell variable in a 1396# double_quote_subst'ed string. 1397delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' 1398 1399# Sed substitution to avoid accidental globbing in evaled expressions 1400no_glob_subst='s/\*/\\\*/g' 1401 1402# Constants: 1403rm="rm -f" 1404 1405# Global variables: 1406default_ofile=libtool 1407can_build_shared=yes 1408 1409# All known linkers require a `.a' archive for static linking (except MSVC, 1410# which needs '.lib'). 1411libext=a 1412ltmain="$ac_aux_dir/ltmain.sh" 1413ofile="$default_ofile" 1414with_gnu_ld="$lt_cv_prog_gnu_ld" 1415 1416AC_CHECK_TOOL(AR, ar, false) 1417AC_CHECK_TOOL(RANLIB, ranlib, :) 1418AC_CHECK_TOOL(STRIP, strip, :) 1419 1420old_CC="$CC" 1421old_CFLAGS="$CFLAGS" 1422 1423# Set sane defaults for various variables 1424test -z "$AR" && AR=ar 1425test -z "$AR_FLAGS" && AR_FLAGS=cru 1426test -z "$AS" && AS=as 1427test -z "$CC" && CC=cc 1428test -z "$LTCC" && LTCC=$CC 1429test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS 1430test -z "$DLLTOOL" && DLLTOOL=dlltool 1431test -z "$LD" && LD=ld 1432test -z "$LN_S" && LN_S="ln -s" 1433test -z "$MAGIC_CMD" && MAGIC_CMD=file 1434test -z "$NM" && NM=nm 1435test -z "$SED" && SED=sed 1436test -z "$OBJDUMP" && OBJDUMP=objdump 1437test -z "$RANLIB" && RANLIB=: 1438test -z "$STRIP" && STRIP=: 1439test -z "$ac_objext" && ac_objext=o 1440 1441# Determine commands to create old-style static archives. 1442old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs' 1443old_postinstall_cmds='chmod 644 $oldlib' 1444old_postuninstall_cmds= 1445 1446if test -n "$RANLIB"; then 1447 case $host_os in 1448 openbsd*) 1449 old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" 1450 ;; 1451 *) 1452 old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" 1453 ;; 1454 esac 1455 old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" 1456fi 1457 1458_LT_CC_BASENAME([$compiler]) 1459 1460# Only perform the check for file, if the check method requires it 1461case $deplibs_check_method in 1462file_magic*) 1463 if test "$file_magic_cmd" = '$MAGIC_CMD'; then 1464 AC_PATH_MAGIC 1465 fi 1466 ;; 1467esac 1468 1469AC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no) 1470AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], 1471enable_win32_dll=yes, enable_win32_dll=no) 1472 1473AC_ARG_ENABLE([libtool-lock], 1474 [AC_HELP_STRING([--disable-libtool-lock], 1475 [avoid locking (might break parallel builds)])]) 1476test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes 1477 1478AC_ARG_WITH([pic], 1479 [AC_HELP_STRING([--with-pic], 1480 [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], 1481 [pic_mode="$withval"], 1482 [pic_mode=default]) 1483test -z "$pic_mode" && pic_mode=default 1484 1485# Use C for the default configuration in the libtool script 1486tagname= 1487AC_LIBTOOL_LANG_C_CONFIG 1488_LT_AC_TAGCONFIG 1489]) 1490m4trace:acinclude.m4:829: -1- AC_DEFUN([_LT_AC_SYS_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl 1491 1492# If no C compiler was specified, use CC. 1493LTCC=${LTCC-"$CC"} 1494 1495# If no C compiler flags were specified, use CFLAGS. 1496LTCFLAGS=${LTCFLAGS-"$CFLAGS"} 1497 1498# Allow CC to be a program name with arguments. 1499compiler=$CC 1500]) 1501m4trace:acinclude.m4:846: -1- AC_DEFUN([_LT_CC_BASENAME], [for cc_temp in $1""; do 1502 case $cc_temp in 1503 compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; 1504 distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; 1505 \-*) ;; 1506 *) break;; 1507 esac 1508done 1509cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` 1510]) 1511m4trace:acinclude.m4:863: -1- AC_DEFUN([_LT_COMPILER_BOILERPLATE], [ac_outfile=conftest.$ac_objext 1512printf "$lt_simple_compile_test_code" >conftest.$ac_ext 1513eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err 1514_lt_compiler_boilerplate=`cat conftest.err` 1515$rm conftest* 1516]) 1517m4trace:acinclude.m4:876: -1- AC_DEFUN([_LT_LINKER_BOILERPLATE], [ac_outfile=conftest.$ac_objext 1518printf "$lt_simple_link_test_code" >conftest.$ac_ext 1519eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err 1520_lt_linker_boilerplate=`cat conftest.err` 1521$rm conftest* 1522]) 1523m4trace:acinclude.m4:893: -1- AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX], [AC_LINK_IFELSE(AC_LANG_PROGRAM,[ 1524aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } 1525}'` 1526# Check for a 64-bit object if we didn't find anything. 1527if 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; } 1528}'`; fi],[]) 1529if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi 1530]) 1531m4trace:acinclude.m4:906: -1- AC_DEFUN([_LT_AC_SHELL_INIT], [ifdef([AC_DIVERSION_NOTICE], 1532 [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)], 1533 [AC_DIVERT_PUSH(NOTICE)]) 1534$1 1535AC_DIVERT_POP 1536]) 1537m4trace:acinclude.m4:919: -1- AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH], [_LT_AC_SHELL_INIT([ 1538# Check that we are running under the correct shell. 1539SHELL=${CONFIG_SHELL-/bin/sh} 1540 1541case X$ECHO in 1542X*--fallback-echo) 1543 # Remove one level of quotation (which was required for Make). 1544 ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','` 1545 ;; 1546esac 1547 1548echo=${ECHO-echo} 1549if test "X[$]1" = X--no-reexec; then 1550 # Discard the --no-reexec flag, and continue. 1551 shift 1552elif test "X[$]1" = X--fallback-echo; then 1553 # Avoid inline document here, it may be left over 1554 : 1555elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then 1556 # Yippee, $echo works! 1557 : 1558else 1559 # Restart under the correct shell. 1560 exec $SHELL "[$]0" --no-reexec ${1+"[$]@"} 1561fi 1562 1563if test "X[$]1" = X--fallback-echo; then 1564 # used as fallback echo 1565 shift 1566 cat <<EOF 1567[$]* 1568EOF 1569 exit 0 1570fi 1571 1572# The HP-UX ksh and POSIX shell print the target directory to stdout 1573# if CDPATH is set. 1574(unset CDPATH) >/dev/null 2>&1 && unset CDPATH 1575 1576if test -z "$ECHO"; then 1577if test "X${echo_test_string+set}" != Xset; then 1578# find a string as large as possible, as long as the shell can cope with it 1579 for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do 1580 # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... 1581 if (echo_test_string=`eval $cmd`) 2>/dev/null && 1582 echo_test_string=`eval $cmd` && 1583 (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null 1584 then 1585 break 1586 fi 1587 done 1588fi 1589 1590if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && 1591 echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && 1592 test "X$echo_testing_string" = "X$echo_test_string"; then 1593 : 1594else 1595 # The Solaris, AIX, and Digital Unix default echo programs unquote 1596 # backslashes. This makes it impossible to quote backslashes using 1597 # echo "$something" | sed 's/\\/\\\\/g' 1598 # 1599 # So, first we look for a working echo in the user's PATH. 1600 1601 lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR 1602 for dir in $PATH /usr/ucb; do 1603 IFS="$lt_save_ifs" 1604 if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && 1605 test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && 1606 echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && 1607 test "X$echo_testing_string" = "X$echo_test_string"; then 1608 echo="$dir/echo" 1609 break 1610 fi 1611 done 1612 IFS="$lt_save_ifs" 1613 1614 if test "X$echo" = Xecho; then 1615 # We didn't find a better echo, so look for alternatives. 1616 if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && 1617 echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && 1618 test "X$echo_testing_string" = "X$echo_test_string"; then 1619 # This shell has a builtin print -r that does the trick. 1620 echo='print -r' 1621 elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && 1622 test "X$CONFIG_SHELL" != X/bin/ksh; then 1623 # If we have ksh, try running configure again with it. 1624 ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} 1625 export ORIGINAL_CONFIG_SHELL 1626 CONFIG_SHELL=/bin/ksh 1627 export CONFIG_SHELL 1628 exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"} 1629 else 1630 # Try using printf. 1631 echo='printf %s\n' 1632 if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && 1633 echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && 1634 test "X$echo_testing_string" = "X$echo_test_string"; then 1635 # Cool, printf works 1636 : 1637 elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && 1638 test "X$echo_testing_string" = 'X\t' && 1639 echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && 1640 test "X$echo_testing_string" = "X$echo_test_string"; then 1641 CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL 1642 export CONFIG_SHELL 1643 SHELL="$CONFIG_SHELL" 1644 export SHELL 1645 echo="$CONFIG_SHELL [$]0 --fallback-echo" 1646 elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && 1647 test "X$echo_testing_string" = 'X\t' && 1648 echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && 1649 test "X$echo_testing_string" = "X$echo_test_string"; then 1650 echo="$CONFIG_SHELL [$]0 --fallback-echo" 1651 else 1652 # maybe with a smaller string... 1653 prev=: 1654 1655 for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do 1656 if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null 1657 then 1658 break 1659 fi 1660 prev="$cmd" 1661 done 1662 1663 if test "$prev" != 'sed 50q "[$]0"'; then 1664 echo_test_string=`eval $prev` 1665 export echo_test_string 1666 exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"} 1667 else 1668 # Oops. We lost completely, so just stick with echo. 1669 echo=echo 1670 fi 1671 fi 1672 fi 1673 fi 1674fi 1675fi 1676 1677# Copy echo and quote the copy suitably for passing to libtool from 1678# the Makefile, instead of quoting the original, which is used later. 1679ECHO=$echo 1680if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then 1681 ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo" 1682fi 1683 1684AC_SUBST(ECHO) 1685])]) 1686m4trace:acinclude.m4:1073: -1- AC_DEFUN([_LT_AC_LOCK], [AC_ARG_ENABLE([libtool-lock], 1687 [AC_HELP_STRING([--disable-libtool-lock], 1688 [avoid locking (might break parallel builds)])]) 1689test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes 1690 1691# Some flags need to be propagated to the compiler or linker for good 1692# libtool support. 1693case $host in 1694ia64-*-hpux*) 1695 # Find out which ABI we are using. 1696 echo 'int i;' > conftest.$ac_ext 1697 if AC_TRY_EVAL(ac_compile); then 1698 case `/usr/bin/file conftest.$ac_objext` in 1699 *ELF-32*) 1700 HPUX_IA64_MODE="32" 1701 ;; 1702 *ELF-64*) 1703 HPUX_IA64_MODE="64" 1704 ;; 1705 esac 1706 fi 1707 rm -rf conftest* 1708 ;; 1709*-*-irix6*) 1710 # Find out which ABI we are using. 1711 echo '[#]line __oline__ "configure"' > conftest.$ac_ext 1712 if AC_TRY_EVAL(ac_compile); then 1713 if test "$lt_cv_prog_gnu_ld" = yes; then 1714 case `/usr/bin/file conftest.$ac_objext` in 1715 *32-bit*) 1716 LD="${LD-ld} -melf32bsmip" 1717 ;; 1718 *N32*) 1719 LD="${LD-ld} -melf32bmipn32" 1720 ;; 1721 *64-bit*) 1722 LD="${LD-ld} -melf64bmip" 1723 ;; 1724 esac 1725 else 1726 case `/usr/bin/file conftest.$ac_objext` in 1727 *32-bit*) 1728 LD="${LD-ld} -32" 1729 ;; 1730 *N32*) 1731 LD="${LD-ld} -n32" 1732 ;; 1733 *64-bit*) 1734 LD="${LD-ld} -64" 1735 ;; 1736 esac 1737 fi 1738 fi 1739 rm -rf conftest* 1740 ;; 1741 1742x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*) 1743 # Find out which ABI we are using. 1744 echo 'int i;' > conftest.$ac_ext 1745 if AC_TRY_EVAL(ac_compile); then 1746 case `/usr/bin/file conftest.o` in 1747 *32-bit*) 1748 case $host in 1749 x86_64-*linux*) 1750 LD="${LD-ld} -m elf_i386" 1751 ;; 1752 ppc64-*linux*|powerpc64-*linux*) 1753 LD="${LD-ld} -m elf32ppclinux" 1754 ;; 1755 s390x-*linux*) 1756 LD="${LD-ld} -m elf_s390" 1757 ;; 1758 sparc64-*linux*) 1759 LD="${LD-ld} -m elf32_sparc" 1760 ;; 1761 esac 1762 ;; 1763 *64-bit*) 1764 case $host in 1765 x86_64-*linux*) 1766 LD="${LD-ld} -m elf_x86_64" 1767 ;; 1768 ppc*-*linux*|powerpc*-*linux*) 1769 LD="${LD-ld} -m elf64ppc" 1770 ;; 1771 s390*-*linux*) 1772 LD="${LD-ld} -m elf64_s390" 1773 ;; 1774 sparc*-*linux*) 1775 LD="${LD-ld} -m elf64_sparc" 1776 ;; 1777 esac 1778 ;; 1779 esac 1780 fi 1781 rm -rf conftest* 1782 ;; 1783 1784*-*-sco3.2v5*) 1785 # On SCO OpenServer 5, we need -belf to get full-featured binaries. 1786 SAVE_CFLAGS="$CFLAGS" 1787 CFLAGS="$CFLAGS -belf" 1788 AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, 1789 [AC_LANG_PUSH(C) 1790 AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) 1791 AC_LANG_POP]) 1792 if test x"$lt_cv_cc_needs_belf" != x"yes"; then 1793 # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf 1794 CFLAGS="$SAVE_CFLAGS" 1795 fi 1796 ;; 1797sparc*-*solaris*) 1798 # Find out which ABI we are using. 1799 echo 'int i;' > conftest.$ac_ext 1800 if AC_TRY_EVAL(ac_compile); then 1801 case `/usr/bin/file conftest.o` in 1802 *64-bit*) 1803 case $lt_cv_prog_gnu_ld in 1804 yes*) LD="${LD-ld} -m elf64_sparc" ;; 1805 *) LD="${LD-ld} -64" ;; 1806 esac 1807 ;; 1808 esac 1809 fi 1810 rm -rf conftest* 1811 ;; 1812 1813AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], 1814[*-*-cygwin* | *-*-mingw* | *-*-pw32*) 1815 AC_CHECK_TOOL(DLLTOOL, dlltool, false) 1816 AC_CHECK_TOOL(AS, as, false) 1817 AC_CHECK_TOOL(OBJDUMP, objdump, false) 1818 ;; 1819 ]) 1820esac 1821 1822need_locks="$enable_libtool_lock" 1823 1824]) 1825m4trace:acinclude.m4:1219: -1- AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_REQUIRE([LT_AC_PROG_SED]) 1826AC_CACHE_CHECK([$1], [$2], 1827 [$2=no 1828 ifelse([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) 1829 printf "$lt_simple_compile_test_code" > conftest.$ac_ext 1830 lt_compiler_flag="$3" 1831 # Insert the option either (1) after the last *FLAGS variable, or 1832 # (2) before a word containing "conftest.", or (3) at the end. 1833 # Note that $ac_compile itself does not contain backslashes and begins 1834 # with a dollar sign (not a hyphen), so the echo should work correctly. 1835 # The option is referenced via a variable to avoid confusing sed. 1836 lt_compile=`echo "$ac_compile" | $SED \ 1837 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ 1838 -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ 1839 -e 's:$: $lt_compiler_flag:'` 1840 (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) 1841 (eval "$lt_compile" 2>conftest.err) 1842 ac_status=$? 1843 cat conftest.err >&AS_MESSAGE_LOG_FD 1844 echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD 1845 if (exit $ac_status) && test -s "$ac_outfile"; then 1846 # The compiler can only warn and ignore the option if not recognized 1847 # So say no if there are warnings other than the usual output. 1848 $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp 1849 $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 1850 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then 1851 $2=yes 1852 fi 1853 fi 1854 $rm conftest* 1855]) 1856 1857if test x"[$]$2" = xyes; then 1858 ifelse([$5], , :, [$5]) 1859else 1860 ifelse([$6], , :, [$6]) 1861fi 1862]) 1863m4trace:acinclude.m4:1264: -1- AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_CACHE_CHECK([$1], [$2], 1864 [$2=no 1865 save_LDFLAGS="$LDFLAGS" 1866 LDFLAGS="$LDFLAGS $3" 1867 printf "$lt_simple_link_test_code" > conftest.$ac_ext 1868 if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then 1869 # The linker can only warn and ignore the option if not recognized 1870 # So say no if there are warnings 1871 if test -s conftest.err; then 1872 # Append any errors to the config.log. 1873 cat conftest.err 1>&AS_MESSAGE_LOG_FD 1874 $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp 1875 $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 1876 if diff conftest.exp conftest.er2 >/dev/null; then 1877 $2=yes 1878 fi 1879 else 1880 $2=yes 1881 fi 1882 fi 1883 $rm conftest* 1884 LDFLAGS="$save_LDFLAGS" 1885]) 1886 1887if test x"[$]$2" = xyes; then 1888 ifelse([$4], , :, [$4]) 1889else 1890 ifelse([$5], , :, [$5]) 1891fi 1892]) 1893m4trace:acinclude.m4:1299: -1- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [# find the maximum length of command line arguments 1894AC_MSG_CHECKING([the maximum length of command line arguments]) 1895AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl 1896 i=0 1897 teststring="ABCD" 1898 1899 case $build_os in 1900 msdosdjgpp*) 1901 # On DJGPP, this test can blow up pretty badly due to problems in libc 1902 # (any single argument exceeding 2000 bytes causes a buffer overrun 1903 # during glob expansion). Even if it were fixed, the result of this 1904 # check would be larger than it should be. 1905 lt_cv_sys_max_cmd_len=12288; # 12K is about right 1906 ;; 1907 1908 gnu*) 1909 # Under GNU Hurd, this test is not required because there is 1910 # no limit to the length of command line arguments. 1911 # Libtool will interpret -1 as no limit whatsoever 1912 lt_cv_sys_max_cmd_len=-1; 1913 ;; 1914 1915 cygwin* | mingw*) 1916 # On Win9x/ME, this test blows up -- it succeeds, but takes 1917 # about 5 minutes as the teststring grows exponentially. 1918 # Worse, since 9x/ME are not pre-emptively multitasking, 1919 # you end up with a "frozen" computer, even though with patience 1920 # the test eventually succeeds (with a max line length of 256k). 1921 # Instead, let's just punt: use the minimum linelength reported by 1922 # all of the supported platforms: 8192 (on NT/2K/XP). 1923 lt_cv_sys_max_cmd_len=8192; 1924 ;; 1925 1926 amigaos*) 1927 # On AmigaOS with pdksh, this test takes hours, literally. 1928 # So we just punt and use a minimum line length of 8192. 1929 lt_cv_sys_max_cmd_len=8192; 1930 ;; 1931 1932 netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) 1933 # This has been around since 386BSD, at least. Likely further. 1934 if test -x /sbin/sysctl; then 1935 lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` 1936 elif test -x /usr/sbin/sysctl; then 1937 lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` 1938 else 1939 lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs 1940 fi 1941 # And add a safety zone 1942 lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` 1943 lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` 1944 ;; 1945 1946 interix*) 1947 # We know the value 262144 and hardcode it with a safety zone (like BSD) 1948 lt_cv_sys_max_cmd_len=196608 1949 ;; 1950 1951 osf*) 1952 # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure 1953 # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not 1954 # nice to cause kernel panics so lets avoid the loop below. 1955 # First set a reasonable default. 1956 lt_cv_sys_max_cmd_len=16384 1957 # 1958 if test -x /sbin/sysconfig; then 1959 case `/sbin/sysconfig -q proc exec_disable_arg_limit` in 1960 *1*) lt_cv_sys_max_cmd_len=-1 ;; 1961 esac 1962 fi 1963 ;; 1964 sco3.2v5*) 1965 lt_cv_sys_max_cmd_len=102400 1966 ;; 1967 sysv5* | sco5v6* | sysv4.2uw2*) 1968 kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` 1969 if test -n "$kargmax"; then 1970 lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` 1971 else 1972 lt_cv_sys_max_cmd_len=32768 1973 fi 1974 ;; 1975 *) 1976 # If test is not a shell built-in, we'll probably end up computing a 1977 # maximum length that is only half of the actual maximum length, but 1978 # we can't tell. 1979 SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} 1980 while (test "X"`$SHELL [$]0 --fallback-echo "X$teststring" 2>/dev/null` \ 1981 = "XX$teststring") >/dev/null 2>&1 && 1982 new_result=`expr "X$teststring" : ".*" 2>&1` && 1983 lt_cv_sys_max_cmd_len=$new_result && 1984 test $i != 17 # 1/2 MB should be enough 1985 do 1986 i=`expr $i + 1` 1987 teststring=$teststring$teststring 1988 done 1989 teststring= 1990 # Add a significant safety factor because C++ compilers can tack on massive 1991 # amounts of additional arguments before passing them to the linker. 1992 # It appears as though 1/2 is a usable value. 1993 lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` 1994 ;; 1995 esac 1996]) 1997if test -n $lt_cv_sys_max_cmd_len ; then 1998 AC_MSG_RESULT($lt_cv_sys_max_cmd_len) 1999else 2000 AC_MSG_RESULT(none) 2001fi 2002]) 2003m4trace:acinclude.m4:1414: -1- AC_DEFUN([_LT_AC_CHECK_DLFCN], [AC_CHECK_HEADERS(dlfcn.h)dnl 2004]) 2005m4trace:acinclude.m4:1422: -1- AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF], [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl 2006if test "$cross_compiling" = yes; then : 2007 [$4] 2008else 2009 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 2010 lt_status=$lt_dlunknown 2011 cat > conftest.$ac_ext <<EOF 2012[#line __oline__ "configure" 2013#include "confdefs.h" 2014 2015#if HAVE_DLFCN_H 2016#include <dlfcn.h> 2017#endif 2018 2019#include <stdio.h> 2020 2021#ifdef RTLD_GLOBAL 2022# define LT_DLGLOBAL RTLD_GLOBAL 2023#else 2024# ifdef DL_GLOBAL 2025# define LT_DLGLOBAL DL_GLOBAL 2026# else 2027# define LT_DLGLOBAL 0 2028# endif 2029#endif 2030 2031/* We may have to define LT_DLLAZY_OR_NOW in the command line if we 2032 find out it does not work in some platform. */ 2033#ifndef LT_DLLAZY_OR_NOW 2034# ifdef RTLD_LAZY 2035# define LT_DLLAZY_OR_NOW RTLD_LAZY 2036# else 2037# ifdef DL_LAZY 2038# define LT_DLLAZY_OR_NOW DL_LAZY 2039# else 2040# ifdef RTLD_NOW 2041# define LT_DLLAZY_OR_NOW RTLD_NOW 2042# else 2043# ifdef DL_NOW 2044# define LT_DLLAZY_OR_NOW DL_NOW 2045# else 2046# define LT_DLLAZY_OR_NOW 0 2047# endif 2048# endif 2049# endif 2050# endif 2051#endif 2052 2053#ifdef __cplusplus 2054extern "C" void exit (int); 2055#endif 2056 2057void fnord() { int i=42;} 2058int main () 2059{ 2060 void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); 2061 int status = $lt_dlunknown; 2062 2063 if (self) 2064 { 2065 if (dlsym (self,"fnord")) status = $lt_dlno_uscore; 2066 else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; 2067 /* dlclose (self); */ 2068 } 2069 else 2070 puts (dlerror ()); 2071 2072 exit (status); 2073}] 2074EOF 2075 if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then 2076 (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null 2077 lt_status=$? 2078 case x$lt_status in 2079 x$lt_dlno_uscore) $1 ;; 2080 x$lt_dlneed_uscore) $2 ;; 2081 x$lt_dlunknown|x*) $3 ;; 2082 esac 2083 else : 2084 # compilation failed 2085 $3 2086 fi 2087fi 2088rm -fr conftest* 2089]) 2090m4trace:acinclude.m4:1512: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl 2091if test "x$enable_dlopen" != xyes; then 2092 enable_dlopen=unknown 2093 enable_dlopen_self=unknown 2094 enable_dlopen_self_static=unknown 2095else 2096 lt_cv_dlopen=no 2097 lt_cv_dlopen_libs= 2098 2099 case $host_os in 2100 beos*) 2101 lt_cv_dlopen="load_add_on" 2102 lt_cv_dlopen_libs= 2103 lt_cv_dlopen_self=yes 2104 ;; 2105 2106 mingw* | pw32*) 2107 lt_cv_dlopen="LoadLibrary" 2108 lt_cv_dlopen_libs= 2109 ;; 2110 2111 cygwin*) 2112 lt_cv_dlopen="dlopen" 2113 lt_cv_dlopen_libs= 2114 ;; 2115 2116 darwin*) 2117 # if libdl is installed we need to link against it 2118 AC_CHECK_LIB([dl], [dlopen], 2119 [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ 2120 lt_cv_dlopen="dyld" 2121 lt_cv_dlopen_libs= 2122 lt_cv_dlopen_self=yes 2123 ]) 2124 ;; 2125 2126 *) 2127 AC_CHECK_FUNC([shl_load], 2128 [lt_cv_dlopen="shl_load"], 2129 [AC_CHECK_LIB([dld], [shl_load], 2130 [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"], 2131 [AC_CHECK_FUNC([dlopen], 2132 [lt_cv_dlopen="dlopen"], 2133 [AC_CHECK_LIB([dl], [dlopen], 2134 [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], 2135 [AC_CHECK_LIB([svld], [dlopen], 2136 [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], 2137 [AC_CHECK_LIB([dld], [dld_link], 2138 [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"]) 2139 ]) 2140 ]) 2141 ]) 2142 ]) 2143 ]) 2144 ;; 2145 esac 2146 2147 if test "x$lt_cv_dlopen" != xno; then 2148 enable_dlopen=yes 2149 else 2150 enable_dlopen=no 2151 fi 2152 2153 case $lt_cv_dlopen in 2154 dlopen) 2155 save_CPPFLAGS="$CPPFLAGS" 2156 test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" 2157 2158 save_LDFLAGS="$LDFLAGS" 2159 wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" 2160 2161 save_LIBS="$LIBS" 2162 LIBS="$lt_cv_dlopen_libs $LIBS" 2163 2164 AC_CACHE_CHECK([whether a program can dlopen itself], 2165 lt_cv_dlopen_self, [dnl 2166 _LT_AC_TRY_DLOPEN_SELF( 2167 lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, 2168 lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) 2169 ]) 2170 2171 if test "x$lt_cv_dlopen_self" = xyes; then 2172 wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" 2173 AC_CACHE_CHECK([whether a statically linked program can dlopen itself], 2174 lt_cv_dlopen_self_static, [dnl 2175 _LT_AC_TRY_DLOPEN_SELF( 2176 lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, 2177 lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) 2178 ]) 2179 fi 2180 2181 CPPFLAGS="$save_CPPFLAGS" 2182 LDFLAGS="$save_LDFLAGS" 2183 LIBS="$save_LIBS" 2184 ;; 2185 esac 2186 2187 case $lt_cv_dlopen_self in 2188 yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; 2189 *) enable_dlopen_self=unknown ;; 2190 esac 2191 2192 case $lt_cv_dlopen_self_static in 2193 yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; 2194 *) enable_dlopen_self_static=unknown ;; 2195 esac 2196fi 2197]) 2198m4trace:acinclude.m4:1626: -1- AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O], [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl 2199AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], 2200 [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)], 2201 [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no 2202 $rm -r conftest 2>/dev/null 2203 mkdir conftest 2204 cd conftest 2205 mkdir out 2206 printf "$lt_simple_compile_test_code" > conftest.$ac_ext 2207 2208 lt_compiler_flag="-o out/conftest2.$ac_objext" 2209 # Insert the option either (1) after the last *FLAGS variable, or 2210 # (2) before a word containing "conftest.", or (3) at the end. 2211 # Note that $ac_compile itself does not contain backslashes and begins 2212 # with a dollar sign (not a hyphen), so the echo should work correctly. 2213 lt_compile=`echo "$ac_compile" | $SED \ 2214 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ 2215 -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ 2216 -e 's:$: $lt_compiler_flag:'` 2217 (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) 2218 (eval "$lt_compile" 2>out/conftest.err) 2219 ac_status=$? 2220 cat out/conftest.err >&AS_MESSAGE_LOG_FD 2221 echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD 2222 if (exit $ac_status) && test -s out/conftest2.$ac_objext 2223 then 2224 # The compiler can only warn and ignore the option if not recognized 2225 # So say no if there are warnings 2226 $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp 2227 $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 2228 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then 2229 _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes 2230 fi 2231 fi 2232 chmod u+w . 2>&AS_MESSAGE_LOG_FD 2233 $rm conftest* 2234 # SGI C++ compiler will create directory out/ii_files/ for 2235 # template instantiation 2236 test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files 2237 $rm out/* && rmdir out 2238 cd .. 2239 rmdir conftest 2240 $rm conftest* 2241]) 2242]) 2243m4trace:acinclude.m4:1677: -1- AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_REQUIRE([_LT_AC_LOCK])dnl 2244 2245hard_links="nottested" 2246if test "$_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then 2247 # do not overwrite the value of need_locks provided by the user 2248 AC_MSG_CHECKING([if we can lock with hard links]) 2249 hard_links=yes 2250 $rm conftest* 2251 ln conftest.a conftest.b 2>/dev/null && hard_links=no 2252 touch conftest.a 2253 ln conftest.a conftest.b 2>&5 || hard_links=no 2254 ln conftest.a conftest.b 2>/dev/null && hard_links=no 2255 AC_MSG_RESULT([$hard_links]) 2256 if test "$hard_links" = no; then 2257 AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) 2258 need_locks=warn 2259 fi 2260else 2261 need_locks=no 2262fi 2263]) 2264m4trace:acinclude.m4:1703: -1- AC_DEFUN([AC_LIBTOOL_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir], 2265[rm -f .libs 2>/dev/null 2266mkdir .libs 2>/dev/null 2267if test -d .libs; then 2268 lt_cv_objdir=.libs 2269else 2270 # MS-DOS does not allow filenames that begin with a dot. 2271 lt_cv_objdir=_libs 2272fi 2273rmdir .libs 2>/dev/null]) 2274objdir=$lt_cv_objdir 2275]) 2276m4trace:acinclude.m4:1721: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs]) 2277_LT_AC_TAGVAR(hardcode_action, $1)= 2278if test -n "$_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)" || \ 2279 test -n "$_LT_AC_TAGVAR(runpath_var, $1)" || \ 2280 test "X$_LT_AC_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then 2281 2282 # We can hardcode non-existant directories. 2283 if test "$_LT_AC_TAGVAR(hardcode_direct, $1)" != no && 2284 # If the only mechanism to avoid hardcoding is shlibpath_var, we 2285 # have to relink, otherwise we might link with an installed library 2286 # when we should be linking with a yet-to-be-installed one 2287 ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)" != no && 2288 test "$_LT_AC_TAGVAR(hardcode_minus_L, $1)" != no; then 2289 # Linking always hardcodes the temporary library directory. 2290 _LT_AC_TAGVAR(hardcode_action, $1)=relink 2291 else 2292 # We can link without hardcoding, and we can hardcode nonexisting dirs. 2293 _LT_AC_TAGVAR(hardcode_action, $1)=immediate 2294 fi 2295else 2296 # We cannot hardcode anything, or else we can only hardcode existing 2297 # directories. 2298 _LT_AC_TAGVAR(hardcode_action, $1)=unsupported 2299fi 2300AC_MSG_RESULT([$_LT_AC_TAGVAR(hardcode_action, $1)]) 2301 2302if test "$_LT_AC_TAGVAR(hardcode_action, $1)" = relink; then 2303 # Fast installation is not supported 2304 enable_fast_install=no 2305elif test "$shlibpath_overrides_runpath" = yes || 2306 test "$enable_shared" = no; then 2307 # Fast installation is not necessary 2308 enable_fast_install=needless 2309fi 2310]) 2311m4trace:acinclude.m4:1761: -1- AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP], [striplib= 2312old_striplib= 2313AC_MSG_CHECKING([whether stripping libraries is possible]) 2314if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then 2315 test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" 2316 test -z "$striplib" && striplib="$STRIP --strip-unneeded" 2317 AC_MSG_RESULT([yes]) 2318else 2319# FIXME - insert some real tests, host_os isn't really good enough 2320 case $host_os in 2321 darwin*) 2322 if test -n "$STRIP" ; then 2323 striplib="$STRIP -x" 2324 AC_MSG_RESULT([yes]) 2325 else 2326 AC_MSG_RESULT([no]) 2327fi 2328 ;; 2329 *) 2330 AC_MSG_RESULT([no]) 2331 ;; 2332 esac 2333fi 2334]) 2335m4trace:acinclude.m4:1791: -1- AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_MSG_CHECKING([dynamic linker characteristics]) 2336library_names_spec= 2337libname_spec='lib$name' 2338soname_spec= 2339shrext_cmds=".so" 2340postinstall_cmds= 2341postuninstall_cmds= 2342finish_cmds= 2343finish_eval= 2344shlibpath_var= 2345shlibpath_overrides_runpath=unknown 2346version_type=none 2347dynamic_linker="$host_os ld.so" 2348sys_lib_dlsearch_path_spec="/lib /usr/lib" 2349if test "$GCC" = yes; then 2350 sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` 2351 if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then 2352 # if the path contains ";" then we assume it to be the separator 2353 # otherwise default to the standard path separator (i.e. ":") - it is 2354 # assumed that no part of a normal pathname contains ";" but that should 2355 # okay in the real world where ";" in dirpaths is itself problematic. 2356 sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` 2357 else 2358 sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` 2359 fi 2360else 2361 sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" 2362fi 2363need_lib_prefix=unknown 2364hardcode_into_libs=no 2365 2366# when you set need_version to no, make sure it does not cause -set_version 2367# flags to be left without arguments 2368need_version=unknown 2369 2370case $host_os in 2371aix3*) 2372 version_type=linux 2373 library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' 2374 shlibpath_var=LIBPATH 2375 2376 # AIX 3 has no versioning support, so we append a major version to the name. 2377 soname_spec='${libname}${release}${shared_ext}$major' 2378 ;; 2379 2380aix4* | aix5*) 2381 version_type=linux 2382 need_lib_prefix=no 2383 need_version=no 2384 hardcode_into_libs=yes 2385 if test "$host_cpu" = ia64; then 2386 # AIX 5 supports IA64 2387 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' 2388 shlibpath_var=LD_LIBRARY_PATH 2389 else 2390 # With GCC up to 2.95.x, collect2 would create an import file 2391 # for dependence libraries. The import file would start with 2392 # the line `#! .'. This would cause the generated library to 2393 # depend on `.', always an invalid library. This was fixed in 2394 # development snapshots of GCC prior to 3.0. 2395 case $host_os in 2396 aix4 | aix4.[[01]] | aix4.[[01]].*) 2397 if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' 2398 echo ' yes ' 2399 echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then 2400 : 2401 else 2402 can_build_shared=no 2403 fi 2404 ;; 2405 esac 2406 # AIX (on Power*) has no versioning support, so currently we can not hardcode correct 2407 # soname into executable. Probably we can add versioning support to 2408 # collect2, so additional links can be useful in future. 2409 if test "$aix_use_runtimelinking" = yes; then 2410 # If using run time linking (on AIX 4.2 or later) use lib<name>.so 2411 # instead of lib<name>.a to let people know that these are not 2412 # typical AIX shared libraries. 2413 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' 2414 else 2415 # We preserve .a as extension for shared libraries through AIX4.2 2416 # and later when we are not doing run time linking. 2417 library_names_spec='${libname}${release}.a $libname.a' 2418 soname_spec='${libname}${release}${shared_ext}$major' 2419 fi 2420 shlibpath_var=LIBPATH 2421 fi 2422 ;; 2423 2424amigaos*) 2425 library_names_spec='$libname.ixlibrary $libname.a' 2426 # Create ${libname}_ixlibrary.a entries in /sys/libs. 2427 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' 2428 ;; 2429 2430beos*) 2431 library_names_spec='${libname}${shared_ext}' 2432 dynamic_linker="$host_os ld.so" 2433 shlibpath_var=LIBRARY_PATH 2434 ;; 2435 2436bsdi[[45]]*) 2437 version_type=linux 2438 need_version=no 2439 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' 2440 soname_spec='${libname}${release}${shared_ext}$major' 2441 finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' 2442 shlibpath_var=LD_LIBRARY_PATH 2443 sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" 2444 sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" 2445 # the default ld.so.conf also contains /usr/contrib/lib and 2446 # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow 2447 # libtool to hard-code these into programs 2448 ;; 2449 2450cygwin* | mingw* | pw32*) 2451 version_type=windows 2452 shrext_cmds=".dll" 2453 need_version=no 2454 need_lib_prefix=no 2455 2456 case $GCC,$host_os in 2457 yes,cygwin* | yes,mingw* | yes,pw32*) 2458 library_names_spec='$libname.dll.a' 2459 # DLL is installed to $(libdir)/../bin by postinstall_cmds 2460 postinstall_cmds='base_file=`basename \${file}`~ 2461 dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ 2462 dldir=$destdir/`dirname \$dlpath`~ 2463 test -d \$dldir || mkdir -p \$dldir~ 2464 $install_prog $dir/$dlname \$dldir/$dlname~ 2465 chmod a+x \$dldir/$dlname' 2466 postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ 2467 dlpath=$dir/\$dldll~ 2468 $rm \$dlpath' 2469 shlibpath_overrides_runpath=yes 2470 2471 case $host_os in 2472 cygwin*) 2473 # Cygwin DLLs use 'cyg' prefix rather than 'lib' 2474 soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' 2475 sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" 2476 ;; 2477 mingw*) 2478 # MinGW DLLs use traditional 'lib' prefix 2479 soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' 2480 sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` 2481 if echo "$sys_lib_search_path_spec" | [grep ';[c-zC-Z]:/' >/dev/null]; then 2482 # It is most probably a Windows format PATH printed by 2483 # mingw gcc, but we are running on Cygwin. Gcc prints its search 2484 # path with ; separators, and with drive letters. We can handle the 2485 # drive letters (cygwin fileutils understands them), so leave them, 2486 # especially as we might pass files found there to a mingw objdump, 2487 # which wouldn't understand a cygwinified path. Ahh. 2488 sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` 2489 else 2490 sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` 2491 fi 2492 ;; 2493 pw32*) 2494 # pw32 DLLs use 'pw' prefix rather than 'lib' 2495 library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' 2496 ;; 2497 esac 2498 ;; 2499 2500 *) 2501 library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' 2502 ;; 2503 esac 2504 dynamic_linker='Win32 ld.exe' 2505 # FIXME: first we should search . and the directory the executable is in 2506 shlibpath_var=PATH 2507 ;; 2508 2509darwin* | rhapsody*) 2510 dynamic_linker="$host_os dyld" 2511 version_type=darwin 2512 need_lib_prefix=no 2513 need_version=no 2514 library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' 2515 soname_spec='${libname}${release}${major}$shared_ext' 2516 shlibpath_overrides_runpath=yes 2517 shlibpath_var=DYLD_LIBRARY_PATH 2518 shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' 2519 # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. 2520 if test "$GCC" = yes; then 2521 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"` 2522 else 2523 sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' 2524 fi 2525 sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' 2526 ;; 2527 2528dgux*) 2529 version_type=linux 2530 need_lib_prefix=no 2531 need_version=no 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 shlibpath_var=LD_LIBRARY_PATH 2535 ;; 2536 2537freebsd1*) 2538 dynamic_linker=no 2539 ;; 2540 2541kfreebsd*-gnu) 2542 version_type=linux 2543 need_lib_prefix=no 2544 need_version=no 2545 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' 2546 soname_spec='${libname}${release}${shared_ext}$major' 2547 shlibpath_var=LD_LIBRARY_PATH 2548 shlibpath_overrides_runpath=no 2549 hardcode_into_libs=yes 2550 dynamic_linker='GNU ld.so' 2551 ;; 2552 2553freebsd* | dragonfly*) 2554 # DragonFly does not have aout. When/if they implement a new 2555 # versioning mechanism, adjust this. 2556 if test -x /usr/bin/objformat; then 2557 objformat=`/usr/bin/objformat` 2558 else 2559 case $host_os in 2560 freebsd[[123]]*) objformat=aout ;; 2561 *) objformat=elf ;; 2562 esac 2563 fi 2564 version_type=freebsd-$objformat 2565 case $version_type in 2566 freebsd-elf*) 2567 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' 2568 need_version=no 2569 need_lib_prefix=no 2570 ;; 2571 freebsd-*) 2572 library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' 2573 need_version=yes 2574 ;; 2575 esac 2576 shlibpath_var=LD_LIBRARY_PATH 2577 case $host_os in 2578 freebsd2*) 2579 shlibpath_overrides_runpath=yes 2580 ;; 2581 freebsd3.[[01]]* | freebsdelf3.[[01]]*) 2582 shlibpath_overrides_runpath=yes 2583 hardcode_into_libs=yes 2584 ;; 2585 freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ 2586 freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) 2587 shlibpath_overrides_runpath=no 2588 hardcode_into_libs=yes 2589 ;; 2590 freebsd*) # from 4.6 on 2591 shlibpath_overrides_runpath=yes 2592 hardcode_into_libs=yes 2593 ;; 2594 esac 2595 ;; 2596 2597gnu*) 2598 version_type=linux 2599 need_lib_prefix=no 2600 need_version=no 2601 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' 2602 soname_spec='${libname}${release}${shared_ext}$major' 2603 shlibpath_var=LD_LIBRARY_PATH 2604 hardcode_into_libs=yes 2605 ;; 2606 2607hpux9* | hpux10* | hpux11*) 2608 # Give a soname corresponding to the major version so that dld.sl refuses to 2609 # link against other versions. 2610 version_type=sunos 2611 need_lib_prefix=no 2612 need_version=no 2613 case $host_cpu in 2614 ia64*) 2615 shrext_cmds='.so' 2616 hardcode_into_libs=yes 2617 dynamic_linker="$host_os dld.so" 2618 shlibpath_var=LD_LIBRARY_PATH 2619 shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. 2620 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' 2621 soname_spec='${libname}${release}${shared_ext}$major' 2622 if test "X$HPUX_IA64_MODE" = X32; then 2623 sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" 2624 else 2625 sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" 2626 fi 2627 sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec 2628 ;; 2629 hppa*64*) 2630 shrext_cmds='.sl' 2631 hardcode_into_libs=yes 2632 dynamic_linker="$host_os dld.sl" 2633 shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH 2634 shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. 2635 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' 2636 soname_spec='${libname}${release}${shared_ext}$major' 2637 sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" 2638 sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec 2639 ;; 2640 *) 2641 shrext_cmds='.sl' 2642 dynamic_linker="$host_os dld.sl" 2643 shlibpath_var=SHLIB_PATH 2644 shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH 2645 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' 2646 soname_spec='${libname}${release}${shared_ext}$major' 2647 ;; 2648 esac 2649 # HP-UX runs *really* slowly unless shared libraries are mode 555. 2650 postinstall_cmds='chmod 555 $lib' 2651 ;; 2652 2653interix3*) 2654 version_type=linux 2655 need_lib_prefix=no 2656 need_version=no 2657 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' 2658 soname_spec='${libname}${release}${shared_ext}$major' 2659 dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' 2660 shlibpath_var=LD_LIBRARY_PATH 2661 shlibpath_overrides_runpath=no 2662 hardcode_into_libs=yes 2663 ;; 2664 2665irix5* | irix6* | nonstopux*) 2666 case $host_os in 2667 nonstopux*) version_type=nonstopux ;; 2668 *) 2669 if test "$lt_cv_prog_gnu_ld" = yes; then 2670 version_type=linux 2671 else 2672 version_type=irix 2673 fi ;; 2674 esac 2675 need_lib_prefix=no 2676 need_version=no 2677 soname_spec='${libname}${release}${shared_ext}$major' 2678 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' 2679 case $host_os in 2680 irix5* | nonstopux*) 2681 libsuff= shlibsuff= 2682 ;; 2683 *) 2684 case $LD in # libtool.m4 will add one of these switches to LD 2685 *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") 2686 libsuff= shlibsuff= libmagic=32-bit;; 2687 *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") 2688 libsuff=32 shlibsuff=N32 libmagic=N32;; 2689 *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") 2690 libsuff=64 shlibsuff=64 libmagic=64-bit;; 2691 *) libsuff= shlibsuff= libmagic=never-match;; 2692 esac 2693 ;; 2694 esac 2695 shlibpath_var=LD_LIBRARY${shlibsuff}_PATH 2696 shlibpath_overrides_runpath=no 2697 sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" 2698 sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" 2699 hardcode_into_libs=yes 2700 ;; 2701 2702# No shared lib support for Linux oldld, aout, or coff. 2703linux*oldld* | linux*aout* | linux*coff*) 2704 dynamic_linker=no 2705 ;; 2706 2707# This must be Linux ELF. 2708linux*) 2709 version_type=linux 2710 need_lib_prefix=no 2711 need_version=no 2712 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' 2713 soname_spec='${libname}${release}${shared_ext}$major' 2714 finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' 2715 shlibpath_var=LD_LIBRARY_PATH 2716 shlibpath_overrides_runpath=no 2717 # This implies no fast_install, which is unacceptable. 2718 # Some rework will be needed to allow for fast_install 2719 # before this can be enabled. 2720 hardcode_into_libs=yes 2721 2722 # Append ld.so.conf contents to the search path 2723 if test -f /etc/ld.so.conf; then 2724 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' ' '` 2725 sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" 2726 fi 2727 2728 # We used to test for /lib/ld.so.1 and disable shared libraries on 2729 # powerpc, because MkLinux only supported shared libraries with the 2730 # GNU dynamic linker. Since this was broken with cross compilers, 2731 # most powerpc-linux boxes support dynamic linking these days and 2732 # people can always --disable-shared, the test was removed, and we 2733 # assume the GNU/Linux dynamic linker is in use. 2734 dynamic_linker='GNU/Linux ld.so' 2735 ;; 2736 2737knetbsd*-gnu) 2738 version_type=linux 2739 need_lib_prefix=no 2740 need_version=no 2741 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' 2742 soname_spec='${libname}${release}${shared_ext}$major' 2743 shlibpath_var=LD_LIBRARY_PATH 2744 shlibpath_overrides_runpath=no 2745 hardcode_into_libs=yes 2746 dynamic_linker='GNU ld.so' 2747 ;; 2748 2749netbsd*) 2750 version_type=sunos 2751 need_lib_prefix=no 2752 need_version=no 2753 if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then 2754 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' 2755 finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' 2756 dynamic_linker='NetBSD (a.out) ld.so' 2757 else 2758 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' 2759 soname_spec='${libname}${release}${shared_ext}$major' 2760 dynamic_linker='NetBSD ld.elf_so' 2761 fi 2762 shlibpath_var=LD_LIBRARY_PATH 2763 shlibpath_overrides_runpath=yes 2764 hardcode_into_libs=yes 2765 ;; 2766 2767newsos6) 2768 version_type=linux 2769 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' 2770 shlibpath_var=LD_LIBRARY_PATH 2771 shlibpath_overrides_runpath=yes 2772 ;; 2773 2774nto-qnx*) 2775 version_type=linux 2776 need_lib_prefix=no 2777 need_version=no 2778 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' 2779 soname_spec='${libname}${release}${shared_ext}$major' 2780 shlibpath_var=LD_LIBRARY_PATH 2781 shlibpath_overrides_runpath=yes 2782 ;; 2783 2784openbsd*) 2785 version_type=sunos 2786 sys_lib_dlsearch_path_spec="/usr/lib" 2787 need_lib_prefix=no 2788 # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. 2789 case $host_os in 2790 openbsd3.3 | openbsd3.3.*) need_version=yes ;; 2791 *) need_version=no ;; 2792 esac 2793 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' 2794 finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' 2795 shlibpath_var=LD_LIBRARY_PATH 2796 if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then 2797 case $host_os in 2798 openbsd2.[[89]] | openbsd2.[[89]].*) 2799 shlibpath_overrides_runpath=no 2800 ;; 2801 *) 2802 shlibpath_overrides_runpath=yes 2803 ;; 2804 esac 2805 else 2806 shlibpath_overrides_runpath=yes 2807 fi 2808 ;; 2809 2810os2*) 2811 libname_spec='$name' 2812 shrext_cmds=".dll" 2813 need_lib_prefix=no 2814 library_names_spec='$libname${shared_ext} $libname.a' 2815 dynamic_linker='OS/2 ld.exe' 2816 shlibpath_var=LIBPATH 2817 ;; 2818 2819osf3* | osf4* | osf5*) 2820 version_type=osf 2821 need_lib_prefix=no 2822 need_version=no 2823 soname_spec='${libname}${release}${shared_ext}$major' 2824 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' 2825 shlibpath_var=LD_LIBRARY_PATH 2826 sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" 2827 sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" 2828 ;; 2829 2830solaris*) 2831 version_type=linux 2832 need_lib_prefix=no 2833 need_version=no 2834 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' 2835 soname_spec='${libname}${release}${shared_ext}$major' 2836 shlibpath_var=LD_LIBRARY_PATH 2837 shlibpath_overrides_runpath=yes 2838 hardcode_into_libs=yes 2839 # ldd complains unless libraries are executable 2840 postinstall_cmds='chmod +x $lib' 2841 ;; 2842 2843sunos4*) 2844 version_type=sunos 2845 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' 2846 finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' 2847 shlibpath_var=LD_LIBRARY_PATH 2848 shlibpath_overrides_runpath=yes 2849 if test "$with_gnu_ld" = yes; then 2850 need_lib_prefix=no 2851 fi 2852 need_version=yes 2853 ;; 2854 2855sysv4 | sysv4.3*) 2856 version_type=linux 2857 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' 2858 soname_spec='${libname}${release}${shared_ext}$major' 2859 shlibpath_var=LD_LIBRARY_PATH 2860 case $host_vendor in 2861 sni) 2862 shlibpath_overrides_runpath=no 2863 need_lib_prefix=no 2864 export_dynamic_flag_spec='${wl}-Blargedynsym' 2865 runpath_var=LD_RUN_PATH 2866 ;; 2867 siemens) 2868 need_lib_prefix=no 2869 ;; 2870 motorola) 2871 need_lib_prefix=no 2872 need_version=no 2873 shlibpath_overrides_runpath=no 2874 sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' 2875 ;; 2876 esac 2877 ;; 2878 2879sysv4*MP*) 2880 if test -d /usr/nec ;then 2881 version_type=linux 2882 library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' 2883 soname_spec='$libname${shared_ext}.$major' 2884 shlibpath_var=LD_LIBRARY_PATH 2885 fi 2886 ;; 2887 2888sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) 2889 version_type=freebsd-elf 2890 need_lib_prefix=no 2891 need_version=no 2892 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' 2893 soname_spec='${libname}${release}${shared_ext}$major' 2894 shlibpath_var=LD_LIBRARY_PATH 2895 hardcode_into_libs=yes 2896 if test "$with_gnu_ld" = yes; then 2897 sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' 2898 shlibpath_overrides_runpath=no 2899 else 2900 sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' 2901 shlibpath_overrides_runpath=yes 2902 case $host_os in 2903 sco3.2v5*) 2904 sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" 2905 ;; 2906 esac 2907 fi 2908 sys_lib_dlsearch_path_spec='/usr/lib' 2909 ;; 2910 2911uts4*) 2912 version_type=linux 2913 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' 2914 soname_spec='${libname}${release}${shared_ext}$major' 2915 shlibpath_var=LD_LIBRARY_PATH 2916 ;; 2917 2918*) 2919 dynamic_linker=no 2920 ;; 2921esac 2922AC_MSG_RESULT([$dynamic_linker]) 2923test "$dynamic_linker" = no && can_build_shared=no 2924 2925variables_saved_for_relink="PATH $shlibpath_var $runpath_var" 2926if test "$GCC" = yes; then 2927 variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" 2928fi 2929]) 2930m4trace:acinclude.m4:2391: -1- AC_DEFUN([_LT_AC_TAGCONFIG], [AC_ARG_WITH([tags], 2931 [AC_HELP_STRING([--with-tags@<:@=TAGS@:>@], 2932 [include additional configurations @<:@automatic@:>@])], 2933 [tagnames="$withval"]) 2934 2935if test -f "$ltmain" && test -n "$tagnames"; then 2936 if test ! -f "${ofile}"; then 2937 AC_MSG_WARN([output file `$ofile' does not exist]) 2938 fi 2939 2940 if test -z "$LTCC"; then 2941 eval "`$SHELL ${ofile} --config | grep '^LTCC='`" 2942 if test -z "$LTCC"; then 2943 AC_MSG_WARN([output file `$ofile' does not look like a libtool script]) 2944 else 2945 AC_MSG_WARN([using `LTCC=$LTCC', extracted from `$ofile']) 2946 fi 2947 fi 2948 if test -z "$LTCFLAGS"; then 2949 eval "`$SHELL ${ofile} --config | grep '^LTCFLAGS='`" 2950 fi 2951 2952 # Extract list of available tagged configurations in $ofile. 2953 # Note that this assumes the entire list is on one line. 2954 available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'` 2955 2956 lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," 2957 for tagname in $tagnames; do 2958 IFS="$lt_save_ifs" 2959 # Check whether tagname contains only valid characters 2960 case `$echo "X$tagname" | $Xsed -e 's:[[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]]::g'` in 2961 "") ;; 2962 *) AC_MSG_ERROR([invalid tag name: $tagname]) 2963 ;; 2964 esac 2965 2966 if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null 2967 then 2968 AC_MSG_ERROR([tag name \"$tagname\" already exists]) 2969 fi 2970 2971 # Update the list of available tags. 2972 if test -n "$tagname"; then 2973 echo appending configuration tag \"$tagname\" to $ofile 2974 2975 case $tagname in 2976 CXX) 2977 if test -n "$CXX" && ( test "X$CXX" != "Xno" && 2978 ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || 2979 (test "X$CXX" != "Xg++"))) ; then 2980 AC_LIBTOOL_LANG_CXX_CONFIG 2981 else 2982 tagname="" 2983 fi 2984 ;; 2985 2986 F77) 2987 if test -n "$F77" && test "X$F77" != "Xno"; then 2988 AC_LIBTOOL_LANG_F77_CONFIG 2989 else 2990 tagname="" 2991 fi 2992 ;; 2993 2994 GCJ) 2995 if test -n "$GCJ" && test "X$GCJ" != "Xno"; then 2996 AC_LIBTOOL_LANG_GCJ_CONFIG 2997 else 2998 tagname="" 2999 fi 3000 ;; 3001 3002 RC) 3003 AC_LIBTOOL_LANG_RC_CONFIG 3004 ;; 3005 3006 *) 3007 AC_MSG_ERROR([Unsupported tag name: $tagname]) 3008 ;; 3009 esac 3010 3011 # Append the new tag name to the list of available tags. 3012 if test -n "$tagname" ; then 3013 available_tags="$available_tags $tagname" 3014 fi 3015 fi 3016 done 3017 IFS="$lt_save_ifs" 3018 3019 # Now substitute the updated list of available tags. 3020 if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then 3021 mv "${ofile}T" "$ofile" 3022 chmod +x "$ofile" 3023 else 3024 rm -f "${ofile}T" 3025 AC_MSG_ERROR([unable to update list of available tagged configurations.]) 3026 fi 3027fi 3028]) 3029m4trace:acinclude.m4:2496: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP]) 3030]) 3031m4trace:acinclude.m4:2504: -1- AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_BEFORE([$0], [AC_LIBTOOL_SETUP]) 3032]) 3033m4trace:acinclude.m4:2513: -1- AC_DEFUN([AC_ENABLE_SHARED], [define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl 3034AC_ARG_ENABLE([shared], 3035 [AC_HELP_STRING([--enable-shared@<:@=PKGS@:>@], 3036 [build shared libraries @<:@default=]AC_ENABLE_SHARED_DEFAULT[@:>@])], 3037 [p=${PACKAGE-default} 3038 case $enableval in 3039 yes) enable_shared=yes ;; 3040 no) enable_shared=no ;; 3041 *) 3042 enable_shared=no 3043 # Look at the argument we got. We use all the common list separators. 3044 lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," 3045 for pkg in $enableval; do 3046 IFS="$lt_save_ifs" 3047 if test "X$pkg" = "X$p"; then 3048 enable_shared=yes 3049 fi 3050 done 3051 IFS="$lt_save_ifs" 3052 ;; 3053 esac], 3054 [enable_shared=]AC_ENABLE_SHARED_DEFAULT) 3055]) 3056m4trace:acinclude.m4:2542: -1- AC_DEFUN([AC_DISABLE_SHARED], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl 3057AC_ENABLE_SHARED(no) 3058]) 3059m4trace:acinclude.m4:2552: -1- AC_DEFUN([AC_ENABLE_STATIC], [define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl 3060AC_ARG_ENABLE([static], 3061 [AC_HELP_STRING([--enable-static@<:@=PKGS@:>@], 3062 [build static libraries @<:@default=]AC_ENABLE_STATIC_DEFAULT[@:>@])], 3063 [p=${PACKAGE-default} 3064 case $enableval in 3065 yes) enable_static=yes ;; 3066 no) enable_static=no ;; 3067 *) 3068 enable_static=no 3069 # Look at the argument we got. We use all the common list separators. 3070 lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," 3071 for pkg in $enableval; do 3072 IFS="$lt_save_ifs" 3073 if test "X$pkg" = "X$p"; then 3074 enable_static=yes 3075 fi 3076 done 3077 IFS="$lt_save_ifs" 3078 ;; 3079 esac], 3080 [enable_static=]AC_ENABLE_STATIC_DEFAULT) 3081]) 3082m4trace:acinclude.m4:2581: -1- AC_DEFUN([AC_DISABLE_STATIC], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl 3083AC_ENABLE_STATIC(no) 3084]) 3085m4trace:acinclude.m4:2591: -1- AC_DEFUN([AC_ENABLE_FAST_INSTALL], [define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl 3086AC_ARG_ENABLE([fast-install], 3087 [AC_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], 3088 [optimize for fast installation @<:@default=]AC_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], 3089 [p=${PACKAGE-default} 3090 case $enableval in 3091 yes) enable_fast_install=yes ;; 3092 no) enable_fast_install=no ;; 3093 *) 3094 enable_fast_install=no 3095 # Look at the argument we got. We use all the common list separators. 3096 lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," 3097 for pkg in $enableval; do 3098 IFS="$lt_save_ifs" 3099 if test "X$pkg" = "X$p"; then 3100 enable_fast_install=yes 3101 fi 3102 done 3103 IFS="$lt_save_ifs" 3104 ;; 3105 esac], 3106 [enable_fast_install=]AC_ENABLE_FAST_INSTALL_DEFAULT) 3107]) 3108m4trace:acinclude.m4:2620: -1- AC_DEFUN([AC_DISABLE_FAST_INSTALL], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl 3109AC_ENABLE_FAST_INSTALL(no) 3110]) 3111m4trace:acinclude.m4:2630: -1- AC_DEFUN([AC_LIBTOOL_PICMODE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl 3112pic_mode=ifelse($#,1,$1,default) 3113]) 3114m4trace:acinclude.m4:2654: -1- AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_REQUIRE([AC_PROG_EGREP])dnl 3115AC_MSG_CHECKING([for $1]) 3116AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, 3117[case $MAGIC_CMD in 3118[[\\/*] | ?:[\\/]*]) 3119 lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. 3120 ;; 3121*) 3122 lt_save_MAGIC_CMD="$MAGIC_CMD" 3123 lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR 3124dnl $ac_dummy forces splitting on constant user-supplied paths. 3125dnl POSIX.2 word splitting is done only on the output of word expansions, 3126dnl not every word. This closes a longstanding sh security hole. 3127 ac_dummy="ifelse([$2], , $PATH, [$2])" 3128 for ac_dir in $ac_dummy; do 3129 IFS="$lt_save_ifs" 3130 test -z "$ac_dir" && ac_dir=. 3131 if test -f $ac_dir/$1; then 3132 lt_cv_path_MAGIC_CMD="$ac_dir/$1" 3133 if test -n "$file_magic_test_file"; then 3134 case $deplibs_check_method in 3135 "file_magic "*) 3136 file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` 3137 MAGIC_CMD="$lt_cv_path_MAGIC_CMD" 3138 if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | 3139 $EGREP "$file_magic_regex" > /dev/null; then 3140 : 3141 else 3142 cat <<EOF 1>&2 3143 3144*** Warning: the command libtool uses to detect shared libraries, 3145*** $file_magic_cmd, produces output that libtool cannot recognize. 3146*** The result is that libtool may fail to recognize shared libraries 3147*** as such. This will affect the creation of libtool libraries that 3148*** depend on shared libraries, but programs linked with such libtool 3149*** libraries will work regardless of this problem. Nevertheless, you 3150*** may want to report the problem to your system manager and/or to 3151*** bug-libtool@gnu.org 3152 3153EOF 3154 fi ;; 3155 esac 3156 fi 3157 break 3158 fi 3159 done 3160 IFS="$lt_save_ifs" 3161 MAGIC_CMD="$lt_save_MAGIC_CMD" 3162 ;; 3163esac]) 3164MAGIC_CMD="$lt_cv_path_MAGIC_CMD" 3165if test -n "$MAGIC_CMD"; then 3166 AC_MSG_RESULT($MAGIC_CMD) 3167else 3168 AC_MSG_RESULT(no) 3169fi 3170]) 3171m4trace:acinclude.m4:2717: -1- AC_DEFUN([AC_PATH_MAGIC], [AC_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) 3172if test -z "$lt_cv_path_MAGIC_CMD"; then 3173 if test -n "$ac_tool_prefix"; then 3174 AC_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) 3175 else 3176 MAGIC_CMD=: 3177 fi 3178fi 3179]) 3180m4trace:acinclude.m4:2732: -1- AC_DEFUN([AC_PROG_LD], [AC_ARG_WITH([gnu-ld], 3181 [AC_HELP_STRING([--with-gnu-ld], 3182 [assume the C compiler uses GNU ld @<:@default=no@:>@])], 3183 [test "$withval" = no || with_gnu_ld=yes], 3184 [with_gnu_ld=no]) 3185AC_REQUIRE([LT_AC_PROG_SED])dnl 3186AC_REQUIRE([AC_PROG_CC])dnl 3187AC_REQUIRE([AC_CANONICAL_HOST])dnl 3188AC_REQUIRE([AC_CANONICAL_BUILD])dnl 3189ac_prog=ld 3190if test "$GCC" = yes; then 3191 # Check if gcc -print-prog-name=ld gives a path. 3192 AC_MSG_CHECKING([for ld used by $CC]) 3193 case $host in 3194 *-*-mingw*) 3195 # gcc leaves a trailing carriage return which upsets mingw 3196 ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; 3197 *) 3198 ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; 3199 esac 3200 case $ac_prog in 3201 # Accept absolute paths. 3202 [[\\/]]* | ?:[[\\/]]*) 3203 re_direlt='/[[^/]][[^/]]*/\.\./' 3204 # Canonicalize the pathname of ld 3205 ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'` 3206 while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do 3207 ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"` 3208 done 3209 test -z "$LD" && LD="$ac_prog" 3210 ;; 3211 "") 3212 # If it fails, then pretend we aren't using GCC. 3213 ac_prog=ld 3214 ;; 3215 *) 3216 # If it is relative, then search for the first ld in PATH. 3217 with_gnu_ld=unknown 3218 ;; 3219 esac 3220elif test "$with_gnu_ld" = yes; then 3221 AC_MSG_CHECKING([for GNU ld]) 3222else 3223 AC_MSG_CHECKING([for non-GNU ld]) 3224fi 3225AC_CACHE_VAL(lt_cv_path_LD, 3226[if test -z "$LD"; then 3227 lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR 3228 for ac_dir in $PATH; do 3229 IFS="$lt_save_ifs" 3230 test -z "$ac_dir" && ac_dir=. 3231 if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then 3232 lt_cv_path_LD="$ac_dir/$ac_prog" 3233 # Check to see if the program is GNU ld. I'd rather use --version, 3234 # but apparently some variants of GNU ld only accept -v. 3235 # Break only if it was the GNU/non-GNU ld that we prefer. 3236 case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in 3237 *GNU* | *'with BFD'*) 3238 test "$with_gnu_ld" != no && break 3239 ;; 3240 *) 3241 test "$with_gnu_ld" != yes && break 3242 ;; 3243 esac 3244 fi 3245 done 3246 IFS="$lt_save_ifs" 3247else 3248 lt_cv_path_LD="$LD" # Let the user override the test with a path. 3249fi]) 3250LD="$lt_cv_path_LD" 3251if test -n "$LD"; then 3252 AC_MSG_RESULT($LD) 3253else 3254 AC_MSG_RESULT(no) 3255fi 3256test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH]) 3257AC_PROG_LD_GNU 3258]) 3259m4trace:acinclude.m4:2816: -1- AC_DEFUN([AC_PROG_LD_GNU], [AC_REQUIRE([AC_PROG_EGREP])dnl 3260AC_CACHE_CHECK([if the linker ($LD) is GNU ld], lt_cv_prog_gnu_ld, 3261[# I'd rather use --version here, but apparently some GNU lds only accept -v. 3262case `$LD -v 2>&1 </dev/null` in 3263*GNU* | *'with BFD'*) 3264 lt_cv_prog_gnu_ld=yes 3265 ;; 3266*) 3267 lt_cv_prog_gnu_ld=no 3268 ;; 3269esac]) 3270with_gnu_ld=$lt_cv_prog_gnu_ld 3271]) 3272m4trace:acinclude.m4:2836: -1- AC_DEFUN([AC_PROG_LD_RELOAD_FLAG], [AC_CACHE_CHECK([for $LD option to reload object files], 3273 lt_cv_ld_reload_flag, 3274 [lt_cv_ld_reload_flag='-r']) 3275reload_flag=$lt_cv_ld_reload_flag 3276case $reload_flag in 3277"" | " "*) ;; 3278*) reload_flag=" $reload_flag" ;; 3279esac 3280reload_cmds='$LD$reload_flag -o $output$reload_objs' 3281case $host_os in 3282 darwin*) 3283 if test "$GCC" = yes; then 3284 reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' 3285 else 3286 reload_cmds='$LD$reload_flag -o $output$reload_objs' 3287 fi 3288 ;; 3289esac 3290]) 3291m4trace:acinclude.m4:2862: -1- AC_DEFUN([AC_DEPLIBS_CHECK_METHOD], [AC_CACHE_CHECK([how to recognise dependent libraries], 3292lt_cv_deplibs_check_method, 3293[lt_cv_file_magic_cmd='$MAGIC_CMD' 3294lt_cv_file_magic_test_file= 3295lt_cv_deplibs_check_method='unknown' 3296# Need to set the preceding variable on all platforms that support 3297# interlibrary dependencies. 3298# 'none' -- dependencies not supported. 3299# `unknown' -- same as none, but documents that we really don't know. 3300# 'pass_all' -- all dependencies passed with no checks. 3301# 'test_compile' -- check by making test program. 3302# 'file_magic [[regex]]' -- check by looking for files in library path 3303# which responds to the $file_magic_cmd with a given extended regex. 3304# If you have `file' or equivalent on your system and you're not sure 3305# whether `pass_all' will *always* work, you probably want this one. 3306 3307case $host_os in 3308aix4* | aix5*) 3309 lt_cv_deplibs_check_method=pass_all 3310 ;; 3311 3312beos*) 3313 lt_cv_deplibs_check_method=pass_all 3314 ;; 3315 3316bsdi[[45]]*) 3317 lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)' 3318 lt_cv_file_magic_cmd='/usr/bin/file -L' 3319 lt_cv_file_magic_test_file=/shlib/libc.so 3320 ;; 3321 3322cygwin*) 3323 # func_win32_libid is a shell function defined in ltmain.sh 3324 lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' 3325 lt_cv_file_magic_cmd='func_win32_libid' 3326 ;; 3327 3328mingw* | pw32*) 3329 # Base MSYS/MinGW do not provide the 'file' command needed by 3330 # func_win32_libid shell function, so use a weaker test based on 'objdump'. 3331 lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' 3332 lt_cv_file_magic_cmd='$OBJDUMP -f' 3333 ;; 3334 3335darwin* | rhapsody*) 3336 lt_cv_deplibs_check_method=pass_all 3337 ;; 3338 3339freebsd* | kfreebsd*-gnu | dragonfly*) 3340 if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then 3341 case $host_cpu in 3342 i*86 ) 3343 # Not sure whether the presence of OpenBSD here was a mistake. 3344 # Let's accept both of them until this is cleared up. 3345 lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' 3346 lt_cv_file_magic_cmd=/usr/bin/file 3347 lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` 3348 ;; 3349 esac 3350 else 3351 lt_cv_deplibs_check_method=pass_all 3352 fi 3353 ;; 3354 3355gnu*) 3356 lt_cv_deplibs_check_method=pass_all 3357 ;; 3358 3359hpux10.20* | hpux11*) 3360 lt_cv_file_magic_cmd=/usr/bin/file 3361 case $host_cpu in 3362 ia64*) 3363 lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' 3364 lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so 3365 ;; 3366 hppa*64*) 3367 [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]'] 3368 lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl 3369 ;; 3370 *) 3371 lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library' 3372 lt_cv_file_magic_test_file=/usr/lib/libc.sl 3373 ;; 3374 esac 3375 ;; 3376 3377interix3*) 3378 # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here 3379 lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' 3380 ;; 3381 3382irix5* | irix6* | nonstopux*) 3383 case $LD in 3384 *-32|*"-32 ") libmagic=32-bit;; 3385 *-n32|*"-n32 ") libmagic=N32;; 3386 *-64|*"-64 ") libmagic=64-bit;; 3387 *) libmagic=never-match;; 3388 esac 3389 lt_cv_deplibs_check_method=pass_all 3390 ;; 3391 3392# This must be Linux ELF. 3393linux*) 3394 lt_cv_deplibs_check_method=pass_all 3395 ;; 3396 3397netbsd*) 3398 if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then 3399 lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' 3400 else 3401 lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' 3402 fi 3403 ;; 3404 3405newos6*) 3406 lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' 3407 lt_cv_file_magic_cmd=/usr/bin/file 3408 lt_cv_file_magic_test_file=/usr/lib/libnls.so 3409 ;; 3410 3411nto-qnx*) 3412 lt_cv_deplibs_check_method=unknown 3413 ;; 3414 3415openbsd*) 3416 if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then 3417 lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' 3418 else 3419 lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' 3420 fi 3421 ;; 3422 3423osf3* | osf4* | osf5*) 3424 lt_cv_deplibs_check_method=pass_all 3425 ;; 3426 3427solaris*) 3428 lt_cv_deplibs_check_method=pass_all 3429 ;; 3430 3431sysv4 | sysv4.3*) 3432 case $host_vendor in 3433 motorola) 3434 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]]' 3435 lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` 3436 ;; 3437 ncr) 3438 lt_cv_deplibs_check_method=pass_all 3439 ;; 3440 sequent) 3441 lt_cv_file_magic_cmd='/bin/file' 3442 lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' 3443 ;; 3444 sni) 3445 lt_cv_file_magic_cmd='/bin/file' 3446 lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" 3447 lt_cv_file_magic_test_file=/lib/libc.so 3448 ;; 3449 siemens) 3450 lt_cv_deplibs_check_method=pass_all 3451 ;; 3452 pc) 3453 lt_cv_deplibs_check_method=pass_all 3454 ;; 3455 esac 3456 ;; 3457 3458sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) 3459 lt_cv_deplibs_check_method=pass_all 3460 ;; 3461esac 3462]) 3463file_magic_cmd=$lt_cv_file_magic_cmd 3464deplibs_check_method=$lt_cv_deplibs_check_method 3465test -z "$deplibs_check_method" && deplibs_check_method=unknown 3466]) 3467m4trace:acinclude.m4:3044: -1- AC_DEFUN([AC_PROG_NM], [AC_CACHE_CHECK([for BSD-compatible nm], lt_cv_path_NM, 3468[if test -n "$NM"; then 3469 # Let the user override the test. 3470 lt_cv_path_NM="$NM" 3471else 3472 lt_nm_to_check="${ac_tool_prefix}nm" 3473 if test -n "$ac_tool_prefix" && test "$build" = "$host"; then 3474 lt_nm_to_check="$lt_nm_to_check nm" 3475 fi 3476 for lt_tmp_nm in $lt_nm_to_check; do 3477 lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR 3478 for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do 3479 IFS="$lt_save_ifs" 3480 test -z "$ac_dir" && ac_dir=. 3481 tmp_nm="$ac_dir/$lt_tmp_nm" 3482 if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then 3483 # Check to see if the nm accepts a BSD-compat flag. 3484 # Adding the `sed 1q' prevents false positives on HP-UX, which says: 3485 # nm: unknown option "B" ignored 3486 # Tru64's nm complains that /dev/null is an invalid object file 3487 case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in 3488 */dev/null* | *'Invalid file or object type'*) 3489 lt_cv_path_NM="$tmp_nm -B" 3490 break 3491 ;; 3492 *) 3493 case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in 3494 */dev/null*) 3495 lt_cv_path_NM="$tmp_nm -p" 3496 break 3497 ;; 3498 *) 3499 lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but 3500 continue # so that we can try to find one that supports BSD flags 3501 ;; 3502 esac 3503 ;; 3504 esac 3505 fi 3506 done 3507 IFS="$lt_save_ifs" 3508 done 3509 test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm 3510fi]) 3511NM="$lt_cv_path_NM" 3512]) 3513m4trace:acinclude.m4:3096: -1- AC_DEFUN([AC_CHECK_LIBM], [AC_REQUIRE([AC_CANONICAL_HOST])dnl 3514LIBM= 3515case $host in 3516*-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*) 3517 # These system don't have libm, or don't need it 3518 ;; 3519*-ncr-sysv4.3*) 3520 AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") 3521 AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") 3522 ;; 3523*) 3524 AC_CHECK_LIB(m, cos, LIBM="-lm") 3525 ;; 3526esac 3527]) 3528m4trace:acinclude.m4:3125: -1- AC_DEFUN([AC_LIBLTDL_CONVENIENCE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl 3529 case $enable_ltdl_convenience in 3530 no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;; 3531 "") enable_ltdl_convenience=yes 3532 ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;; 3533 esac 3534 LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdlc.la 3535 LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) 3536 # For backwards non-gettext consistent compatibility... 3537 INCLTDL="$LTDLINCL" 3538]) 3539m4trace:acinclude.m4:3151: -1- AC_DEFUN([AC_LIBLTDL_INSTALLABLE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl 3540 AC_CHECK_LIB(ltdl, lt_dlinit, 3541 [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no], 3542 [if test x"$enable_ltdl_install" = xno; then 3543 AC_MSG_WARN([libltdl not installed, but installation disabled]) 3544 else 3545 enable_ltdl_install=yes 3546 fi 3547 ]) 3548 if test x"$enable_ltdl_install" = x"yes"; then 3549 ac_configure_args="$ac_configure_args --enable-ltdl-install" 3550 LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdl.la 3551 LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) 3552 else 3553 ac_configure_args="$ac_configure_args --enable-ltdl-install=no" 3554 LIBLTDL="-lltdl" 3555 LTDLINCL= 3556 fi 3557 # For backwards non-gettext consistent compatibility... 3558 INCLTDL="$LTDLINCL" 3559]) 3560m4trace:acinclude.m4:3178: -1- AC_DEFUN([AC_LIBTOOL_CXX], [AC_REQUIRE([_LT_AC_LANG_CXX]) 3561]) 3562m4trace:acinclude.m4:3185: -1- AC_DEFUN([_LT_AC_LANG_CXX], [AC_REQUIRE([AC_PROG_CXX]) 3563AC_REQUIRE([_LT_AC_PROG_CXXCPP]) 3564_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX]) 3565]) 3566m4trace:acinclude.m4:3193: -1- AC_DEFUN([_LT_AC_PROG_CXXCPP], [ 3567AC_REQUIRE([AC_PROG_CXX]) 3568if test -n "$CXX" && ( test "X$CXX" != "Xno" && 3569 ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || 3570 (test "X$CXX" != "Xg++"))) ; then 3571 AC_PROG_CXXCPP 3572fi 3573]) 3574m4trace:acinclude.m4:3206: -1- AC_DEFUN([AC_LIBTOOL_F77], [AC_REQUIRE([_LT_AC_LANG_F77]) 3575]) 3576m4trace:acinclude.m4:3213: -1- AC_DEFUN([_LT_AC_LANG_F77], [AC_REQUIRE([AC_PROG_F77]) 3577_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}F77]) 3578]) 3579m4trace:acinclude.m4:3222: -1- AC_DEFUN([AC_LIBTOOL_GCJ], [AC_REQUIRE([_LT_AC_LANG_GCJ]) 3580]) 3581m4trace:acinclude.m4:3229: -1- AC_DEFUN([_LT_AC_LANG_GCJ], [AC_PROVIDE_IFELSE([AC_PROG_GCJ],[], 3582 [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],[], 3583 [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],[], 3584 [ifdef([AC_PROG_GCJ],[AC_REQUIRE([AC_PROG_GCJ])], 3585 [ifdef([A][M_PROG_GCJ],[AC_REQUIRE([A][M_PROG_GCJ])], 3586 [AC_REQUIRE([A][C_PROG_GCJ_OR_A][M_PROG_GCJ])])])])])]) 3587_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}GCJ]) 3588]) 3589m4trace:acinclude.m4:3243: -1- AC_DEFUN([AC_LIBTOOL_RC], [AC_REQUIRE([LT_AC_PROG_RC]) 3590_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}RC]) 3591]) 3592m4trace:acinclude.m4:3254: -1- AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG], [_LT_AC_LANG_C_CONFIG]) 3593m4trace:acinclude.m4:3255: -1- AC_DEFUN([_LT_AC_LANG_C_CONFIG], [lt_save_CC="$CC" 3594AC_LANG_PUSH(C) 3595 3596# Source file extension for C test sources. 3597ac_ext=c 3598 3599# Object file extension for compiled C test sources. 3600objext=o 3601_LT_AC_TAGVAR(objext, $1)=$objext 3602 3603# Code to be used in simple compile tests 3604lt_simple_compile_test_code="int some_variable = 0;\n" 3605 3606# Code to be used in simple link tests 3607lt_simple_link_test_code='int main(){return(0);}\n' 3608 3609_LT_AC_SYS_COMPILER 3610 3611# save warnings/boilerplate of simple test code 3612_LT_COMPILER_BOILERPLATE 3613_LT_LINKER_BOILERPLATE 3614 3615## CAVEAT EMPTOR: 3616## There is no encapsulation within the following macros, do not change 3617## the running order or otherwise move them around unless you know exactly 3618## what you are doing... 3619AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1) 3620AC_LIBTOOL_PROG_COMPILER_PIC($1) 3621AC_LIBTOOL_PROG_CC_C_O($1) 3622AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) 3623AC_LIBTOOL_PROG_LD_SHLIBS($1) 3624AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) 3625AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) 3626AC_LIBTOOL_SYS_LIB_STRIP 3627AC_LIBTOOL_DLOPEN_SELF 3628 3629# Report which library types will actually be built 3630AC_MSG_CHECKING([if libtool supports shared libraries]) 3631AC_MSG_RESULT([$can_build_shared]) 3632 3633AC_MSG_CHECKING([whether to build shared libraries]) 3634test "$can_build_shared" = "no" && enable_shared=no 3635 3636# On AIX, shared libraries and static libraries use the same namespace, and 3637# are all built from PIC. 3638case $host_os in 3639aix3*) 3640 test "$enable_shared" = yes && enable_static=no 3641 if test -n "$RANLIB"; then 3642 archive_cmds="$archive_cmds~\$RANLIB \$lib" 3643 postinstall_cmds='$RANLIB $lib' 3644 fi 3645 ;; 3646 3647aix4* | aix5*) 3648 if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then 3649 test "$enable_shared" = yes && enable_static=no 3650 fi 3651 ;; 3652esac 3653AC_MSG_RESULT([$enable_shared]) 3654 3655AC_MSG_CHECKING([whether to build static libraries]) 3656# Make sure either enable_shared or enable_static is yes. 3657test "$enable_shared" = yes || enable_static=yes 3658AC_MSG_RESULT([$enable_static]) 3659 3660AC_LIBTOOL_CONFIG($1) 3661 3662AC_LANG_POP 3663CC="$lt_save_CC" 3664]) 3665m4trace:acinclude.m4:3335: -1- AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG], [_LT_AC_LANG_CXX_CONFIG(CXX)]) 3666m4trace:acinclude.m4:3336: -1- AC_DEFUN([_LT_AC_LANG_CXX_CONFIG], [AC_LANG_PUSH(C++) 3667AC_REQUIRE([AC_PROG_CXX]) 3668AC_REQUIRE([_LT_AC_PROG_CXXCPP]) 3669 3670_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no 3671_LT_AC_TAGVAR(allow_undefined_flag, $1)= 3672_LT_AC_TAGVAR(always_export_symbols, $1)=no 3673_LT_AC_TAGVAR(archive_expsym_cmds, $1)= 3674_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= 3675_LT_AC_TAGVAR(hardcode_direct, $1)=no 3676_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= 3677_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= 3678_LT_AC_TAGVAR(hardcode_libdir_separator, $1)= 3679_LT_AC_TAGVAR(hardcode_minus_L, $1)=no 3680_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported 3681_LT_AC_TAGVAR(hardcode_automatic, $1)=no 3682_LT_AC_TAGVAR(module_cmds, $1)= 3683_LT_AC_TAGVAR(module_expsym_cmds, $1)= 3684_LT_AC_TAGVAR(link_all_deplibs, $1)=unknown 3685_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds 3686_LT_AC_TAGVAR(no_undefined_flag, $1)= 3687_LT_AC_TAGVAR(whole_archive_flag_spec, $1)= 3688_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no 3689 3690# Dependencies to place before and after the object being linked: 3691_LT_AC_TAGVAR(predep_objects, $1)= 3692_LT_AC_TAGVAR(postdep_objects, $1)= 3693_LT_AC_TAGVAR(predeps, $1)= 3694_LT_AC_TAGVAR(postdeps, $1)= 3695_LT_AC_TAGVAR(compiler_lib_search_path, $1)= 3696 3697# Source file extension for C++ test sources. 3698ac_ext=cpp 3699 3700# Object file extension for compiled C++ test sources. 3701objext=o 3702_LT_AC_TAGVAR(objext, $1)=$objext 3703 3704# Code to be used in simple compile tests 3705lt_simple_compile_test_code="int some_variable = 0;\n" 3706 3707# Code to be used in simple link tests 3708lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }\n' 3709 3710# ltmain only uses $CC for tagged configurations so make sure $CC is set. 3711_LT_AC_SYS_COMPILER 3712 3713# save warnings/boilerplate of simple test code 3714_LT_COMPILER_BOILERPLATE 3715_LT_LINKER_BOILERPLATE 3716 3717# Allow CC to be a program name with arguments. 3718lt_save_CC=$CC 3719lt_save_LD=$LD 3720lt_save_GCC=$GCC 3721GCC=$GXX 3722lt_save_with_gnu_ld=$with_gnu_ld 3723lt_save_path_LD=$lt_cv_path_LD 3724if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then 3725 lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx 3726else 3727 $as_unset lt_cv_prog_gnu_ld 3728fi 3729if test -n "${lt_cv_path_LDCXX+set}"; then 3730 lt_cv_path_LD=$lt_cv_path_LDCXX 3731else 3732 $as_unset lt_cv_path_LD 3733fi 3734test -z "${LDCXX+set}" || LD=$LDCXX 3735CC=${CXX-"c++"} 3736compiler=$CC 3737_LT_AC_TAGVAR(compiler, $1)=$CC 3738_LT_CC_BASENAME([$compiler]) 3739 3740# We don't want -fno-exception wen compiling C++ code, so set the 3741# no_builtin_flag separately 3742if test "$GXX" = yes; then 3743 _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' 3744else 3745 _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= 3746fi 3747 3748if test "$GXX" = yes; then 3749 # Set up default GNU C++ configuration 3750 3751 AC_PROG_LD 3752 3753 # Check if GNU C++ uses GNU ld as the underlying linker, since the 3754 # archiving commands below assume that GNU ld is being used. 3755 if test "$with_gnu_ld" = yes; then 3756 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' 3757 _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' 3758 3759 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' 3760 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' 3761 3762 # If archive_cmds runs LD, not CC, wlarc should be empty 3763 # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to 3764 # investigate it a little bit more. (MM) 3765 wlarc='${wl}' 3766 3767 # ancient GNU ld didn't support --whole-archive et. al. 3768 if eval "`$CC -print-prog-name=ld` --help 2>&1" | \ 3769 grep 'no-whole-archive' > /dev/null; then 3770 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' 3771 else 3772 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= 3773 fi 3774 else 3775 with_gnu_ld=no 3776 wlarc= 3777 3778 # A generic and very simple default shared library creation 3779 # command for GNU C++ for the case where it uses the native 3780 # linker, instead of GNU ld. If possible, this setting should 3781 # overridden to take advantage of the native linker features on 3782 # the platform it is being used on. 3783 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' 3784 fi 3785 3786 # Commands to make compiler produce verbose output that lists 3787 # what "hidden" libraries, object files and flags are used when 3788 # linking a shared library. 3789 output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' 3790 3791else 3792 GXX=no 3793 with_gnu_ld=no 3794 wlarc= 3795fi 3796 3797# PORTME: fill in a description of your system's C++ link characteristics 3798AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) 3799_LT_AC_TAGVAR(ld_shlibs, $1)=yes 3800case $host_os in 3801 aix3*) 3802 # FIXME: insert proper C++ library support 3803 _LT_AC_TAGVAR(ld_shlibs, $1)=no 3804 ;; 3805 aix4* | aix5*) 3806 if test "$host_cpu" = ia64; then 3807 # On IA64, the linker does run time linking by default, so we don't 3808 # have to do anything special. 3809 aix_use_runtimelinking=no 3810 exp_sym_flag='-Bexport' 3811 no_entry_flag="" 3812 else 3813 aix_use_runtimelinking=no 3814 3815 # Test if we are trying to use run time linking or normal 3816 # AIX style linking. If -brtl is somewhere in LDFLAGS, we 3817 # need to do runtime linking. 3818 case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*) 3819 for ld_flag in $LDFLAGS; do 3820 case $ld_flag in 3821 *-brtl*) 3822 aix_use_runtimelinking=yes 3823 break 3824 ;; 3825 esac 3826 done 3827 ;; 3828 esac 3829 3830 exp_sym_flag='-bexport' 3831 no_entry_flag='-bnoentry' 3832 fi 3833 3834 # When large executables or shared objects are built, AIX ld can 3835 # have problems creating the table of contents. If linking a library 3836 # or program results in "error TOC overflow" add -mminimal-toc to 3837 # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not 3838 # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. 3839 3840 _LT_AC_TAGVAR(archive_cmds, $1)='' 3841 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 3842 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' 3843 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes 3844 3845 if test "$GXX" = yes; then 3846 case $host_os in aix4.[[012]]|aix4.[[012]].*) 3847 # We only want to do this on AIX 4.2 and lower, the check 3848 # below for broken collect2 doesn't work under 4.3+ 3849 collect2name=`${CC} -print-prog-name=collect2` 3850 if test -f "$collect2name" && \ 3851 strings "$collect2name" | grep resolve_lib_name >/dev/null 3852 then 3853 # We have reworked collect2 3854 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 3855 else 3856 # We have old collect2 3857 _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported 3858 # It fails to find uninstalled libraries when the uninstalled 3859 # path is not listed in the libpath. Setting hardcode_minus_L 3860 # to unsupported forces relinking 3861 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes 3862 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' 3863 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= 3864 fi 3865 ;; 3866 esac 3867 shared_flag='-shared' 3868 if test "$aix_use_runtimelinking" = yes; then 3869 shared_flag="$shared_flag "'${wl}-G' 3870 fi 3871 else 3872 # not using gcc 3873 if test "$host_cpu" = ia64; then 3874 # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release 3875 # chokes on -Wl,-G. The following line is correct: 3876 shared_flag='-G' 3877 else 3878 if test "$aix_use_runtimelinking" = yes; then 3879 shared_flag='${wl}-G' 3880 else 3881 shared_flag='${wl}-bM:SRE' 3882 fi 3883 fi 3884 fi 3885 3886 # It seems that -bexpall does not export symbols beginning with 3887 # underscore (_), so it is better to generate a list of symbols to export. 3888 _LT_AC_TAGVAR(always_export_symbols, $1)=yes 3889 if test "$aix_use_runtimelinking" = yes; then 3890 # Warning - without using the other runtime loading flags (-brtl), 3891 # -berok will link without error, but may produce a broken library. 3892 _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' 3893 # Determine the default libpath from the value encoded in an empty executable. 3894 _LT_AC_SYS_LIBPATH_AIX 3895 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" 3896 3897 _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" 3898 else 3899 if test "$host_cpu" = ia64; then 3900 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' 3901 _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" 3902 _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" 3903 else 3904 # Determine the default libpath from the value encoded in an empty executable. 3905 _LT_AC_SYS_LIBPATH_AIX 3906 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" 3907 # Warning - without using the other run time loading flags, 3908 # -berok will link without error, but may produce a broken library. 3909 _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' 3910 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' 3911 # Exported symbols can be pulled into shared objects from archives 3912 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience' 3913 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes 3914 # This is similar to how AIX traditionally builds its shared libraries. 3915 _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' 3916 fi 3917 fi 3918 ;; 3919 3920 beos*) 3921 if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then 3922 _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported 3923 # Joseph Beckenbach <jrb3@best.com> says some releases of gcc 3924 # support --undefined. This deserves some investigation. FIXME 3925 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' 3926 else 3927 _LT_AC_TAGVAR(ld_shlibs, $1)=no 3928 fi 3929 ;; 3930 3931 chorus*) 3932 case $cc_basename in 3933 *) 3934 # FIXME: insert proper C++ library support 3935 _LT_AC_TAGVAR(ld_shlibs, $1)=no 3936 ;; 3937 esac 3938 ;; 3939 3940 cygwin* | mingw* | pw32*) 3941 # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, 3942 # as there is no search path for DLLs. 3943 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' 3944 _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported 3945 _LT_AC_TAGVAR(always_export_symbols, $1)=no 3946 _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes 3947 3948 if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then 3949 _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' 3950 # If the export-symbols file already is a .def file (1st line 3951 # is EXPORTS), use it as is; otherwise, prepend... 3952 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then 3953 cp $export_symbols $output_objdir/$soname.def; 3954 else 3955 echo EXPORTS > $output_objdir/$soname.def; 3956 cat $export_symbols >> $output_objdir/$soname.def; 3957 fi~ 3958 $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' 3959 else 3960 _LT_AC_TAGVAR(ld_shlibs, $1)=no 3961 fi 3962 ;; 3963 darwin* | rhapsody*) 3964 case $host_os in 3965 rhapsody* | darwin1.[[012]]) 3966 _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress' 3967 ;; 3968 *) # Darwin 1.3 on 3969 if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then 3970 _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' 3971 else 3972 case ${MACOSX_DEPLOYMENT_TARGET} in 3973 10.[[012]]) 3974 _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' 3975 ;; 3976 10.*) 3977 _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup' 3978 ;; 3979 esac 3980 fi 3981 ;; 3982 esac 3983 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no 3984 _LT_AC_TAGVAR(hardcode_direct, $1)=no 3985 _LT_AC_TAGVAR(hardcode_automatic, $1)=yes 3986 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported 3987 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' 3988 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes 3989 3990 if test "$GXX" = yes ; then 3991 lt_int_apple_cc_single_mod=no 3992 output_verbose_link_cmd='echo' 3993 if $CC -dumpspecs 2>&1 | $EGREP 'single_module' >/dev/null ; then 3994 lt_int_apple_cc_single_mod=yes 3995 fi 3996 if test "X$lt_int_apple_cc_single_mod" = Xyes ; then 3997 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' 3998 else 3999 _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' 4000 fi 4001 _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' 4002 # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds 4003 if test "X$lt_int_apple_cc_single_mod" = Xyes ; then 4004 _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}' 4005 else 4006 _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}' 4007 fi 4008 _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}' 4009 else 4010 case $cc_basename in 4011 xlc*) 4012 output_verbose_link_cmd='echo' 4013 _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' 4014 _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' 4015 # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds 4016 _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}' 4017 _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}' 4018 ;; 4019 *) 4020 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4021 ;; 4022 esac 4023 fi 4024 ;; 4025 4026 dgux*) 4027 case $cc_basename in 4028 ec++*) 4029 # FIXME: insert proper C++ library support 4030 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4031 ;; 4032 ghcx*) 4033 # Green Hills C++ Compiler 4034 # FIXME: insert proper C++ library support 4035 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4036 ;; 4037 *) 4038 # FIXME: insert proper C++ library support 4039 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4040 ;; 4041 esac 4042 ;; 4043 freebsd[[12]]*) 4044 # C++ shared libraries reported to be fairly broken before switch to ELF 4045 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4046 ;; 4047 freebsd-elf*) 4048 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no 4049 ;; 4050 freebsd* | kfreebsd*-gnu | dragonfly*) 4051 # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF 4052 # conventions 4053 _LT_AC_TAGVAR(ld_shlibs, $1)=yes 4054 ;; 4055 gnu*) 4056 ;; 4057 hpux9*) 4058 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' 4059 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 4060 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' 4061 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 4062 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, 4063 # but as the default 4064 # location of the library. 4065 4066 case $cc_basename in 4067 CC*) 4068 # FIXME: insert proper C++ library support 4069 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4070 ;; 4071 aCC*) 4072 _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' 4073 # Commands to make compiler produce verbose output that lists 4074 # what "hidden" libraries, object files and flags are used when 4075 # linking a shared library. 4076 # 4077 # There doesn't appear to be a way to prevent this compiler from 4078 # explicitly linking system object files so we need to strip them 4079 # from the output so that they don't get included in the library 4080 # dependencies. 4081 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' 4082 ;; 4083 *) 4084 if test "$GXX" = yes; then 4085 _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' 4086 else 4087 # FIXME: insert proper C++ library support 4088 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4089 fi 4090 ;; 4091 esac 4092 ;; 4093 hpux10*|hpux11*) 4094 if test $with_gnu_ld = no; then 4095 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' 4096 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 4097 4098 case $host_cpu in 4099 hppa*64*|ia64*) 4100 _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' 4101 ;; 4102 *) 4103 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' 4104 ;; 4105 esac 4106 fi 4107 case $host_cpu in 4108 hppa*64*|ia64*) 4109 _LT_AC_TAGVAR(hardcode_direct, $1)=no 4110 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 4111 ;; 4112 *) 4113 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 4114 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, 4115 # but as the default 4116 # location of the library. 4117 ;; 4118 esac 4119 4120 case $cc_basename in 4121 CC*) 4122 # FIXME: insert proper C++ library support 4123 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4124 ;; 4125 aCC*) 4126 case $host_cpu in 4127 hppa*64*) 4128 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' 4129 ;; 4130 ia64*) 4131 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' 4132 ;; 4133 *) 4134 _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' 4135 ;; 4136 esac 4137 # Commands to make compiler produce verbose output that lists 4138 # what "hidden" libraries, object files and flags are used when 4139 # linking a shared library. 4140 # 4141 # There doesn't appear to be a way to prevent this compiler from 4142 # explicitly linking system object files so we need to strip them 4143 # from the output so that they don't get included in the library 4144 # dependencies. 4145 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' 4146 ;; 4147 *) 4148 if test "$GXX" = yes; then 4149 if test $with_gnu_ld = no; then 4150 case $host_cpu in 4151 hppa*64*) 4152 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' 4153 ;; 4154 ia64*) 4155 _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' 4156 ;; 4157 *) 4158 _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' 4159 ;; 4160 esac 4161 fi 4162 else 4163 # FIXME: insert proper C++ library support 4164 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4165 fi 4166 ;; 4167 esac 4168 ;; 4169 interix3*) 4170 _LT_AC_TAGVAR(hardcode_direct, $1)=no 4171 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 4172 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' 4173 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' 4174 # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. 4175 # Instead, shared libraries are loaded at an image base (0x10000000 by 4176 # default) and relocated if they conflict, which is a slow very memory 4177 # consuming and fragmenting process. To avoid this, we pick a random, 4178 # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link 4179 # time. Moving up from 0x10000000 also allows more sbrk(2) space. 4180 _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' 4181 _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' 4182 ;; 4183 irix5* | irix6*) 4184 case $cc_basename in 4185 CC*) 4186 # SGI C++ 4187 _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' 4188 4189 # Archives containing C++ object files must be created using 4190 # "CC -ar", where "CC" is the IRIX C++ compiler. This is 4191 # necessary to make sure instantiated templates are included 4192 # in the archive. 4193 _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' 4194 ;; 4195 *) 4196 if test "$GXX" = yes; then 4197 if test "$with_gnu_ld" = no; then 4198 _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' 4199 else 4200 _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' 4201 fi 4202 fi 4203 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes 4204 ;; 4205 esac 4206 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' 4207 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 4208 ;; 4209 linux*) 4210 case $cc_basename in 4211 KCC*) 4212 # Kuck and Associates, Inc. (KAI) C++ Compiler 4213 4214 # KCC will only create a shared library if the output file 4215 # ends with ".so" (or ".sl" for HP-UX), so rename the library 4216 # to its proper name (with version) after linking. 4217 _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' 4218 _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' 4219 # Commands to make compiler produce verbose output that lists 4220 # what "hidden" libraries, object files and flags are used when 4221 # linking a shared library. 4222 # 4223 # There doesn't appear to be a way to prevent this compiler from 4224 # explicitly linking system object files so we need to strip them 4225 # from the output so that they don't get included in the library 4226 # dependencies. 4227 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' 4228 4229 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath,$libdir' 4230 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' 4231 4232 # Archives containing C++ object files must be created using 4233 # "CC -Bstatic", where "CC" is the KAI C++ compiler. 4234 _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' 4235 ;; 4236 icpc*) 4237 # Intel C++ 4238 with_gnu_ld=yes 4239 # version 8.0 and above of icpc choke on multiply defined symbols 4240 # if we add $predep_objects and $postdep_objects, however 7.1 and 4241 # earlier do not add the objects themselves. 4242 case `$CC -V 2>&1` in 4243 *"Version 7."*) 4244 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' 4245 _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' 4246 ;; 4247 *) # Version 8.0 or newer 4248 tmp_idyn= 4249 case $host_cpu in 4250 ia64*) tmp_idyn=' -i_dynamic';; 4251 esac 4252 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' 4253 _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' 4254 ;; 4255 esac 4256 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no 4257 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' 4258 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' 4259 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' 4260 ;; 4261 pgCC*) 4262 # Portland Group C++ compiler 4263 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' 4264 _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' 4265 4266 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' 4267 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' 4268 _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' 4269 ;; 4270 cxx*) 4271 # Compaq C++ 4272 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' 4273 _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' 4274 4275 runpath_var=LD_RUN_PATH 4276 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' 4277 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 4278 4279 # Commands to make compiler produce verbose output that lists 4280 # what "hidden" libraries, object files and flags are used when 4281 # linking a shared library. 4282 # 4283 # There doesn't appear to be a way to prevent this compiler from 4284 # explicitly linking system object files so we need to strip them 4285 # from the output so that they don't get included in the library 4286 # dependencies. 4287 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' 4288 ;; 4289 esac 4290 ;; 4291 lynxos*) 4292 # FIXME: insert proper C++ library support 4293 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4294 ;; 4295 m88k*) 4296 # FIXME: insert proper C++ library support 4297 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4298 ;; 4299 mvs*) 4300 case $cc_basename in 4301 cxx*) 4302 # FIXME: insert proper C++ library support 4303 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4304 ;; 4305 *) 4306 # FIXME: insert proper C++ library support 4307 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4308 ;; 4309 esac 4310 ;; 4311 netbsd*) 4312 if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then 4313 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' 4314 wlarc= 4315 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' 4316 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 4317 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 4318 fi 4319 # Workaround some broken pre-1.5 toolchains 4320 output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' 4321 ;; 4322 openbsd2*) 4323 # C++ shared libraries are fairly broken 4324 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4325 ;; 4326 openbsd*) 4327 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 4328 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 4329 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' 4330 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' 4331 if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then 4332 _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' 4333 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' 4334 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' 4335 fi 4336 output_verbose_link_cmd='echo' 4337 ;; 4338 osf3*) 4339 case $cc_basename in 4340 KCC*) 4341 # Kuck and Associates, Inc. (KAI) C++ Compiler 4342 4343 # KCC will only create a shared library if the output file 4344 # ends with ".so" (or ".sl" for HP-UX), so rename the library 4345 # to its proper name (with version) after linking. 4346 _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' 4347 4348 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' 4349 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 4350 4351 # Archives containing C++ object files must be created using 4352 # "CC -Bstatic", where "CC" is the KAI C++ compiler. 4353 _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' 4354 4355 ;; 4356 RCC*) 4357 # Rational C++ 2.4.1 4358 # FIXME: insert proper C++ library support 4359 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4360 ;; 4361 cxx*) 4362 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' 4363 _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' 4364 4365 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' 4366 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 4367 4368 # Commands to make compiler produce verbose output that lists 4369 # what "hidden" libraries, object files and flags are used when 4370 # linking a shared library. 4371 # 4372 # There doesn't appear to be a way to prevent this compiler from 4373 # explicitly linking system object files so we need to strip them 4374 # from the output so that they don't get included in the library 4375 # dependencies. 4376 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' 4377 ;; 4378 *) 4379 if test "$GXX" = yes && test "$with_gnu_ld" = no; then 4380 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' 4381 _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' 4382 4383 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' 4384 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 4385 4386 # Commands to make compiler produce verbose output that lists 4387 # what "hidden" libraries, object files and flags are used when 4388 # linking a shared library. 4389 output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' 4390 4391 else 4392 # FIXME: insert proper C++ library support 4393 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4394 fi 4395 ;; 4396 esac 4397 ;; 4398 osf4* | osf5*) 4399 case $cc_basename in 4400 KCC*) 4401 # Kuck and Associates, Inc. (KAI) C++ Compiler 4402 4403 # KCC will only create a shared library if the output file 4404 # ends with ".so" (or ".sl" for HP-UX), so rename the library 4405 # to its proper name (with version) after linking. 4406 _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' 4407 4408 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' 4409 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 4410 4411 # Archives containing C++ object files must be created using 4412 # the KAI C++ compiler. 4413 _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' 4414 ;; 4415 RCC*) 4416 # Rational C++ 2.4.1 4417 # FIXME: insert proper C++ library support 4418 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4419 ;; 4420 cxx*) 4421 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' 4422 _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' 4423 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ 4424 echo "-hidden">> $lib.exp~ 4425 $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~ 4426 $rm $lib.exp' 4427 4428 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' 4429 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 4430 4431 # Commands to make compiler produce verbose output that lists 4432 # what "hidden" libraries, object files and flags are used when 4433 # linking a shared library. 4434 # 4435 # There doesn't appear to be a way to prevent this compiler from 4436 # explicitly linking system object files so we need to strip them 4437 # from the output so that they don't get included in the library 4438 # dependencies. 4439 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' 4440 ;; 4441 *) 4442 if test "$GXX" = yes && test "$with_gnu_ld" = no; then 4443 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' 4444 _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' 4445 4446 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' 4447 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 4448 4449 # Commands to make compiler produce verbose output that lists 4450 # what "hidden" libraries, object files and flags are used when 4451 # linking a shared library. 4452 output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' 4453 4454 else 4455 # FIXME: insert proper C++ library support 4456 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4457 fi 4458 ;; 4459 esac 4460 ;; 4461 psos*) 4462 # FIXME: insert proper C++ library support 4463 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4464 ;; 4465 sunos4*) 4466 case $cc_basename in 4467 CC*) 4468 # Sun C++ 4.x 4469 # FIXME: insert proper C++ library support 4470 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4471 ;; 4472 lcc*) 4473 # Lucid 4474 # FIXME: insert proper C++ library support 4475 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4476 ;; 4477 *) 4478 # FIXME: insert proper C++ library support 4479 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4480 ;; 4481 esac 4482 ;; 4483 solaris*) 4484 case $cc_basename in 4485 CC*) 4486 # Sun C++ 4.2, 5.x and Centerline C++ 4487 _LT_AC_TAGVAR(archive_cmds_need_lc,$1)=yes 4488 _LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs' 4489 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' 4490 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ 4491 $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' 4492 4493 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' 4494 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 4495 case $host_os in 4496 solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; 4497 *) 4498 # The C++ compiler is used as linker so we must use $wl 4499 # flag to pass the commands to the underlying system 4500 # linker. We must also pass each convience library through 4501 # to the system linker between allextract/defaultextract. 4502 # The C++ compiler will combine linker options so we 4503 # cannot just pass the convience library names through 4504 # without $wl. 4505 # Supported since Solaris 2.6 (maybe 2.5.1?) 4506 _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' 4507 ;; 4508 esac 4509 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes 4510 4511 output_verbose_link_cmd='echo' 4512 4513 # Archives containing C++ object files must be created using 4514 # "CC -xar", where "CC" is the Sun C++ compiler. This is 4515 # necessary to make sure instantiated templates are included 4516 # in the archive. 4517 _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' 4518 ;; 4519 gcx*) 4520 # Green Hills C++ Compiler 4521 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' 4522 4523 # The C++ compiler must be used to create the archive. 4524 _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' 4525 ;; 4526 *) 4527 # GNU C++ compiler with Solaris linker 4528 if test "$GXX" = yes && test "$with_gnu_ld" = no; then 4529 _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' 4530 if $CC --version | grep -v '^2\.7' > /dev/null; then 4531 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' 4532 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ 4533 $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' 4534 4535 # Commands to make compiler produce verbose output that lists 4536 # what "hidden" libraries, object files and flags are used when 4537 # linking a shared library. 4538 output_verbose_link_cmd="$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" 4539 else 4540 # g++ 2.7 appears to require `-G' NOT `-shared' on this 4541 # platform. 4542 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' 4543 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ 4544 $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' 4545 4546 # Commands to make compiler produce verbose output that lists 4547 # what "hidden" libraries, object files and flags are used when 4548 # linking a shared library. 4549 output_verbose_link_cmd="$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" 4550 fi 4551 4552 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' 4553 fi 4554 ;; 4555 esac 4556 ;; 4557 sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) 4558 _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' 4559 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no 4560 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 4561 runpath_var='LD_RUN_PATH' 4562 4563 case $cc_basename in 4564 CC*) 4565 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' 4566 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' 4567 ;; 4568 *) 4569 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' 4570 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' 4571 ;; 4572 esac 4573 ;; 4574 sysv5* | sco3.2v5* | sco5v6*) 4575 # Note: We can NOT use -z defs as we might desire, because we do not 4576 # link with -lc, and that would cause any symbols used from libc to 4577 # always be unresolved, which means just about no library would 4578 # ever link correctly. If we're not using GNU ld we use -z text 4579 # though, which does catch some bad symbols but isn't as heavy-handed 4580 # as -z defs. 4581 # For security reasons, it is highly recommended that you always 4582 # use absolute paths for naming shared libraries, and exclude the 4583 # DT_RUNPATH tag from executables and libraries. But doing so 4584 # requires that you compile everything twice, which is a pain. 4585 # So that behaviour is only enabled if SCOABSPATH is set to a 4586 # non-empty value in the environment. Most likely only useful for 4587 # creating official distributions of packages. 4588 # This is a hack until libtool officially supports absolute path 4589 # names for shared libraries. 4590 _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' 4591 _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' 4592 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no 4593 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 4594 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' 4595 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' 4596 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes 4597 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' 4598 runpath_var='LD_RUN_PATH' 4599 4600 case $cc_basename in 4601 CC*) 4602 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' 4603 _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' 4604 ;; 4605 *) 4606 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' 4607 _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' 4608 ;; 4609 esac 4610 ;; 4611 tandem*) 4612 case $cc_basename in 4613 NCC*) 4614 # NonStop-UX NCC 3.20 4615 # FIXME: insert proper C++ library support 4616 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4617 ;; 4618 *) 4619 # FIXME: insert proper C++ library support 4620 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4621 ;; 4622 esac 4623 ;; 4624 vxworks*) 4625 # FIXME: insert proper C++ library support 4626 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4627 ;; 4628 *) 4629 # FIXME: insert proper C++ library support 4630 _LT_AC_TAGVAR(ld_shlibs, $1)=no 4631 ;; 4632esac 4633AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) 4634test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no 4635 4636_LT_AC_TAGVAR(GCC, $1)="$GXX" 4637_LT_AC_TAGVAR(LD, $1)="$LD" 4638 4639## CAVEAT EMPTOR: 4640## There is no encapsulation within the following macros, do not change 4641## the running order or otherwise move them around unless you know exactly 4642## what you are doing... 4643AC_LIBTOOL_POSTDEP_PREDEP($1) 4644AC_LIBTOOL_PROG_COMPILER_PIC($1) 4645AC_LIBTOOL_PROG_CC_C_O($1) 4646AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) 4647AC_LIBTOOL_PROG_LD_SHLIBS($1) 4648AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) 4649AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) 4650 4651AC_LIBTOOL_CONFIG($1) 4652 4653AC_LANG_POP 4654CC=$lt_save_CC 4655LDCXX=$LD 4656LD=$lt_save_LD 4657GCC=$lt_save_GCC 4658with_gnu_ldcxx=$with_gnu_ld 4659with_gnu_ld=$lt_save_with_gnu_ld 4660lt_cv_path_LDCXX=$lt_cv_path_LD 4661lt_cv_path_LD=$lt_save_path_LD 4662lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld 4663lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld 4664]) 4665m4trace:acinclude.m4:4343: -1- AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP], [ 4666dnl we can't use the lt_simple_compile_test_code here, 4667dnl because it contains code intended for an executable, 4668dnl not a library. It's possible we should let each 4669dnl tag define a new lt_????_link_test_code variable, 4670dnl but it's only used here... 4671ifelse([$1],[],[cat > conftest.$ac_ext <<EOF 4672int a; 4673void foo (void) { a = 0; } 4674EOF 4675],[$1],[CXX],[cat > conftest.$ac_ext <<EOF 4676class Foo 4677{ 4678public: 4679 Foo (void) { a = 0; } 4680private: 4681 int a; 4682}; 4683EOF 4684],[$1],[F77],[cat > conftest.$ac_ext <<EOF 4685 subroutine foo 4686 implicit none 4687 integer*4 a 4688 a=0 4689 return 4690 end 4691EOF 4692],[$1],[GCJ],[cat > conftest.$ac_ext <<EOF 4693public class foo { 4694 private int a; 4695 public void bar (void) { 4696 a = 0; 4697 } 4698}; 4699EOF 4700]) 4701dnl Parse the compiler output and extract the necessary 4702dnl objects, libraries and library flags. 4703if AC_TRY_EVAL(ac_compile); then 4704 # Parse the compiler output and extract the necessary 4705 # objects, libraries and library flags. 4706 4707 # Sentinel used to keep track of whether or not we are before 4708 # the conftest object file. 4709 pre_test_object_deps_done=no 4710 4711 # The `*' in the case matches for architectures that use `case' in 4712 # $output_verbose_cmd can trigger glob expansion during the loop 4713 # eval without this substitution. 4714 output_verbose_link_cmd=`$echo "X$output_verbose_link_cmd" | $Xsed -e "$no_glob_subst"` 4715 4716 for p in `eval $output_verbose_link_cmd`; do 4717 case $p in 4718 4719 -L* | -R* | -l*) 4720 # Some compilers place space between "-{L,R}" and the path. 4721 # Remove the space. 4722 if test $p = "-L" \ 4723 || test $p = "-R"; then 4724 prev=$p 4725 continue 4726 else 4727 prev= 4728 fi 4729 4730 if test "$pre_test_object_deps_done" = no; then 4731 case $p in 4732 -L* | -R*) 4733 # Internal compiler library paths should come after those 4734 # provided the user. The postdeps already come after the 4735 # user supplied libs so there is no need to process them. 4736 if test -z "$_LT_AC_TAGVAR(compiler_lib_search_path, $1)"; then 4737 _LT_AC_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}" 4738 else 4739 _LT_AC_TAGVAR(compiler_lib_search_path, $1)="${_LT_AC_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}" 4740 fi 4741 ;; 4742 # The "-l" case would never come before the object being 4743 # linked, so don't bother handling this case. 4744 esac 4745 else 4746 if test -z "$_LT_AC_TAGVAR(postdeps, $1)"; then 4747 _LT_AC_TAGVAR(postdeps, $1)="${prev}${p}" 4748 else 4749 _LT_AC_TAGVAR(postdeps, $1)="${_LT_AC_TAGVAR(postdeps, $1)} ${prev}${p}" 4750 fi 4751 fi 4752 ;; 4753 4754 *.$objext) 4755 # This assumes that the test object file only shows up 4756 # once in the compiler output. 4757 if test "$p" = "conftest.$objext"; then 4758 pre_test_object_deps_done=yes 4759 continue 4760 fi 4761 4762 if test "$pre_test_object_deps_done" = no; then 4763 if test -z "$_LT_AC_TAGVAR(predep_objects, $1)"; then 4764 _LT_AC_TAGVAR(predep_objects, $1)="$p" 4765 else 4766 _LT_AC_TAGVAR(predep_objects, $1)="$_LT_AC_TAGVAR(predep_objects, $1) $p" 4767 fi 4768 else 4769 if test -z "$_LT_AC_TAGVAR(postdep_objects, $1)"; then 4770 _LT_AC_TAGVAR(postdep_objects, $1)="$p" 4771 else 4772 _LT_AC_TAGVAR(postdep_objects, $1)="$_LT_AC_TAGVAR(postdep_objects, $1) $p" 4773 fi 4774 fi 4775 ;; 4776 4777 *) ;; # Ignore the rest. 4778 4779 esac 4780 done 4781 4782 # Clean up. 4783 rm -f a.out a.exe 4784else 4785 echo "libtool.m4: error: problem compiling $1 test program" 4786fi 4787 4788$rm -f confest.$objext 4789 4790# PORTME: override above test on systems where it is broken 4791ifelse([$1],[CXX], 4792[case $host_os in 4793interix3*) 4794 # Interix 3.5 installs completely hosed .la files for C++, so rather than 4795 # hack all around it, let's just trust "g++" to DTRT. 4796 _LT_AC_TAGVAR(predep_objects,$1)= 4797 _LT_AC_TAGVAR(postdep_objects,$1)= 4798 _LT_AC_TAGVAR(postdeps,$1)= 4799 ;; 4800 4801solaris*) 4802 case $cc_basename in 4803 CC*) 4804 # Adding this requires a known-good setup of shared libraries for 4805 # Sun compiler versions before 5.6, else PIC objects from an old 4806 # archive will be linked into the output, leading to subtle bugs. 4807 _LT_AC_TAGVAR(postdeps,$1)='-lCstd -lCrun' 4808 ;; 4809 esac 4810 ;; 4811esac 4812]) 4813 4814case " $_LT_AC_TAGVAR(postdeps, $1) " in 4815*" -lc "*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ;; 4816esac 4817]) 4818m4trace:acinclude.m4:4502: -1- AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG], [_LT_AC_LANG_F77_CONFIG(F77)]) 4819m4trace:acinclude.m4:4503: -1- AC_DEFUN([_LT_AC_LANG_F77_CONFIG], [AC_REQUIRE([AC_PROG_F77]) 4820AC_LANG_PUSH(Fortran 77) 4821 4822_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no 4823_LT_AC_TAGVAR(allow_undefined_flag, $1)= 4824_LT_AC_TAGVAR(always_export_symbols, $1)=no 4825_LT_AC_TAGVAR(archive_expsym_cmds, $1)= 4826_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= 4827_LT_AC_TAGVAR(hardcode_direct, $1)=no 4828_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= 4829_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= 4830_LT_AC_TAGVAR(hardcode_libdir_separator, $1)= 4831_LT_AC_TAGVAR(hardcode_minus_L, $1)=no 4832_LT_AC_TAGVAR(hardcode_automatic, $1)=no 4833_LT_AC_TAGVAR(module_cmds, $1)= 4834_LT_AC_TAGVAR(module_expsym_cmds, $1)= 4835_LT_AC_TAGVAR(link_all_deplibs, $1)=unknown 4836_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds 4837_LT_AC_TAGVAR(no_undefined_flag, $1)= 4838_LT_AC_TAGVAR(whole_archive_flag_spec, $1)= 4839_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no 4840 4841# Source file extension for f77 test sources. 4842ac_ext=f 4843 4844# Object file extension for compiled f77 test sources. 4845objext=o 4846_LT_AC_TAGVAR(objext, $1)=$objext 4847 4848# Code to be used in simple compile tests 4849lt_simple_compile_test_code=" subroutine t\n return\n end\n" 4850 4851# Code to be used in simple link tests 4852lt_simple_link_test_code=" program t\n end\n" 4853 4854# ltmain only uses $CC for tagged configurations so make sure $CC is set. 4855_LT_AC_SYS_COMPILER 4856 4857# save warnings/boilerplate of simple test code 4858_LT_COMPILER_BOILERPLATE 4859_LT_LINKER_BOILERPLATE 4860 4861# Allow CC to be a program name with arguments. 4862lt_save_CC="$CC" 4863CC=${F77-"f77"} 4864compiler=$CC 4865_LT_AC_TAGVAR(compiler, $1)=$CC 4866_LT_CC_BASENAME([$compiler]) 4867 4868AC_MSG_CHECKING([if libtool supports shared libraries]) 4869AC_MSG_RESULT([$can_build_shared]) 4870 4871AC_MSG_CHECKING([whether to build shared libraries]) 4872test "$can_build_shared" = "no" && enable_shared=no 4873 4874# On AIX, shared libraries and static libraries use the same namespace, and 4875# are all built from PIC. 4876case $host_os in 4877aix3*) 4878 test "$enable_shared" = yes && enable_static=no 4879 if test -n "$RANLIB"; then 4880 archive_cmds="$archive_cmds~\$RANLIB \$lib" 4881 postinstall_cmds='$RANLIB $lib' 4882 fi 4883 ;; 4884aix4* | aix5*) 4885 if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then 4886 test "$enable_shared" = yes && enable_static=no 4887 fi 4888 ;; 4889esac 4890AC_MSG_RESULT([$enable_shared]) 4891 4892AC_MSG_CHECKING([whether to build static libraries]) 4893# Make sure either enable_shared or enable_static is yes. 4894test "$enable_shared" = yes || enable_static=yes 4895AC_MSG_RESULT([$enable_static]) 4896 4897_LT_AC_TAGVAR(GCC, $1)="$G77" 4898_LT_AC_TAGVAR(LD, $1)="$LD" 4899 4900AC_LIBTOOL_PROG_COMPILER_PIC($1) 4901AC_LIBTOOL_PROG_CC_C_O($1) 4902AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) 4903AC_LIBTOOL_PROG_LD_SHLIBS($1) 4904AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) 4905AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) 4906 4907AC_LIBTOOL_CONFIG($1) 4908 4909AC_LANG_POP 4910CC="$lt_save_CC" 4911]) 4912m4trace:acinclude.m4:4604: -1- AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG], [_LT_AC_LANG_GCJ_CONFIG(GCJ)]) 4913m4trace:acinclude.m4:4605: -1- AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG], [AC_LANG_SAVE 4914 4915# Source file extension for Java test sources. 4916ac_ext=java 4917 4918# Object file extension for compiled Java test sources. 4919objext=o 4920_LT_AC_TAGVAR(objext, $1)=$objext 4921 4922# Code to be used in simple compile tests 4923lt_simple_compile_test_code="class foo {}\n" 4924 4925# Code to be used in simple link tests 4926lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }\n' 4927 4928# ltmain only uses $CC for tagged configurations so make sure $CC is set. 4929_LT_AC_SYS_COMPILER 4930 4931# save warnings/boilerplate of simple test code 4932_LT_COMPILER_BOILERPLATE 4933_LT_LINKER_BOILERPLATE 4934 4935# Allow CC to be a program name with arguments. 4936lt_save_CC="$CC" 4937CC=${GCJ-"gcj"} 4938compiler=$CC 4939_LT_AC_TAGVAR(compiler, $1)=$CC 4940_LT_CC_BASENAME([$compiler]) 4941 4942# GCJ did not exist at the time GCC didn't implicitly link libc in. 4943_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no 4944 4945_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds 4946 4947## CAVEAT EMPTOR: 4948## There is no encapsulation within the following macros, do not change 4949## the running order or otherwise move them around unless you know exactly 4950## what you are doing... 4951AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1) 4952AC_LIBTOOL_PROG_COMPILER_PIC($1) 4953AC_LIBTOOL_PROG_CC_C_O($1) 4954AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) 4955AC_LIBTOOL_PROG_LD_SHLIBS($1) 4956AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) 4957AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) 4958 4959AC_LIBTOOL_CONFIG($1) 4960 4961AC_LANG_RESTORE 4962CC="$lt_save_CC" 4963]) 4964m4trace:acinclude.m4:4664: -1- AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG], [_LT_AC_LANG_RC_CONFIG(RC)]) 4965m4trace:acinclude.m4:4665: -1- AC_DEFUN([_LT_AC_LANG_RC_CONFIG], [AC_LANG_SAVE 4966 4967# Source file extension for RC test sources. 4968ac_ext=rc 4969 4970# Object file extension for compiled RC test sources. 4971objext=o 4972_LT_AC_TAGVAR(objext, $1)=$objext 4973 4974# Code to be used in simple compile tests 4975lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }\n' 4976 4977# Code to be used in simple link tests 4978lt_simple_link_test_code="$lt_simple_compile_test_code" 4979 4980# ltmain only uses $CC for tagged configurations so make sure $CC is set. 4981_LT_AC_SYS_COMPILER 4982 4983# save warnings/boilerplate of simple test code 4984_LT_COMPILER_BOILERPLATE 4985_LT_LINKER_BOILERPLATE 4986 4987# Allow CC to be a program name with arguments. 4988lt_save_CC="$CC" 4989CC=${RC-"windres"} 4990compiler=$CC 4991_LT_AC_TAGVAR(compiler, $1)=$CC 4992_LT_CC_BASENAME([$compiler]) 4993_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes 4994 4995AC_LIBTOOL_CONFIG($1) 4996 4997AC_LANG_RESTORE 4998CC="$lt_save_CC" 4999]) 5000m4trace:acinclude.m4:4709: -1- AC_DEFUN([AC_LIBTOOL_CONFIG], [# The else clause should only fire when bootstrapping the 5001# libtool distribution, otherwise you forgot to ship ltmain.sh 5002# with your package, and you will get complaints that there are 5003# no rules to generate ltmain.sh. 5004if test -f "$ltmain"; then 5005 # See if we are running on zsh, and set the options which allow our commands through 5006 # without removal of \ escapes. 5007 if test -n "${ZSH_VERSION+set}" ; then 5008 setopt NO_GLOB_SUBST 5009 fi 5010 # Now quote all the things that may contain metacharacters while being 5011 # careful not to overquote the AC_SUBSTed values. We take copies of the 5012 # variables and quote the copies for generation of the libtool script. 5013 for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ 5014 SED SHELL STRIP \ 5015 libname_spec library_names_spec soname_spec extract_expsyms_cmds \ 5016 old_striplib striplib file_magic_cmd finish_cmds finish_eval \ 5017 deplibs_check_method reload_flag reload_cmds need_locks \ 5018 lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ 5019 lt_cv_sys_global_symbol_to_c_name_address \ 5020 sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ 5021 old_postinstall_cmds old_postuninstall_cmds \ 5022 _LT_AC_TAGVAR(compiler, $1) \ 5023 _LT_AC_TAGVAR(CC, $1) \ 5024 _LT_AC_TAGVAR(LD, $1) \ 5025 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1) \ 5026 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1) \ 5027 _LT_AC_TAGVAR(lt_prog_compiler_static, $1) \ 5028 _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) \ 5029 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1) \ 5030 _LT_AC_TAGVAR(thread_safe_flag_spec, $1) \ 5031 _LT_AC_TAGVAR(whole_archive_flag_spec, $1) \ 5032 _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) \ 5033 _LT_AC_TAGVAR(old_archive_cmds, $1) \ 5034 _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) \ 5035 _LT_AC_TAGVAR(predep_objects, $1) \ 5036 _LT_AC_TAGVAR(postdep_objects, $1) \ 5037 _LT_AC_TAGVAR(predeps, $1) \ 5038 _LT_AC_TAGVAR(postdeps, $1) \ 5039 _LT_AC_TAGVAR(compiler_lib_search_path, $1) \ 5040 _LT_AC_TAGVAR(archive_cmds, $1) \ 5041 _LT_AC_TAGVAR(archive_expsym_cmds, $1) \ 5042 _LT_AC_TAGVAR(postinstall_cmds, $1) \ 5043 _LT_AC_TAGVAR(postuninstall_cmds, $1) \ 5044 _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) \ 5045 _LT_AC_TAGVAR(allow_undefined_flag, $1) \ 5046 _LT_AC_TAGVAR(no_undefined_flag, $1) \ 5047 _LT_AC_TAGVAR(export_symbols_cmds, $1) \ 5048 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) \ 5049 _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) \ 5050 _LT_AC_TAGVAR(hardcode_libdir_separator, $1) \ 5051 _LT_AC_TAGVAR(hardcode_automatic, $1) \ 5052 _LT_AC_TAGVAR(module_cmds, $1) \ 5053 _LT_AC_TAGVAR(module_expsym_cmds, $1) \ 5054 _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) \ 5055 _LT_AC_TAGVAR(exclude_expsyms, $1) \ 5056 _LT_AC_TAGVAR(include_expsyms, $1); do 5057 5058 case $var in 5059 _LT_AC_TAGVAR(old_archive_cmds, $1) | \ 5060 _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) | \ 5061 _LT_AC_TAGVAR(archive_cmds, $1) | \ 5062 _LT_AC_TAGVAR(archive_expsym_cmds, $1) | \ 5063 _LT_AC_TAGVAR(module_cmds, $1) | \ 5064 _LT_AC_TAGVAR(module_expsym_cmds, $1) | \ 5065 _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) | \ 5066 _LT_AC_TAGVAR(export_symbols_cmds, $1) | \ 5067 extract_expsyms_cmds | reload_cmds | finish_cmds | \ 5068 postinstall_cmds | postuninstall_cmds | \ 5069 old_postinstall_cmds | old_postuninstall_cmds | \ 5070 sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) 5071 # Double-quote double-evaled strings. 5072 eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" 5073 ;; 5074 *) 5075 eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" 5076 ;; 5077 esac 5078 done 5079 5080 case $lt_echo in 5081 *'\[$]0 --fallback-echo"') 5082 lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\[$]0 --fallback-echo"[$]/[$]0 --fallback-echo"/'` 5083 ;; 5084 esac 5085 5086ifelse([$1], [], 5087 [cfgfile="${ofile}T" 5088 trap "$rm \"$cfgfile\"; exit 1" 1 2 15 5089 $rm -f "$cfgfile" 5090 AC_MSG_NOTICE([creating $ofile])], 5091 [cfgfile="$ofile"]) 5092 5093 cat <<__EOF__ >> "$cfgfile" 5094ifelse([$1], [], 5095[#! $SHELL 5096 5097# `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services. 5098# Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) 5099# NOTE: Changes made to this file will be lost: look at ltmain.sh. 5100# 5101# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 5102# Free Software Foundation, Inc. 5103# 5104# This file is part of GNU Libtool: 5105# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996 5106# 5107# This program is free software; you can redistribute it and/or modify 5108# it under the terms of the GNU General Public License as published by 5109# the Free Software Foundation; either version 2 of the License, or 5110# (at your option) any later version. 5111# 5112# This program is distributed in the hope that it will be useful, but 5113# WITHOUT ANY WARRANTY; without even the implied warranty of 5114# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 5115# General Public License for more details. 5116# 5117# You should have received a copy of the GNU General Public License 5118# along with this program; if not, write to the Free Software 5119# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 5120# 5121# As a special exception to the GNU General Public License, if you 5122# distribute this file as part of a program that contains a 5123# configuration script generated by Autoconf, you may include it under 5124# the same distribution terms that you use for the rest of that program. 5125 5126# A sed program that does not truncate output. 5127SED=$lt_SED 5128 5129# Sed that helps us avoid accidentally triggering echo(1) options like -n. 5130Xsed="$SED -e 1s/^X//" 5131 5132# The HP-UX ksh and POSIX shell print the target directory to stdout 5133# if CDPATH is set. 5134(unset CDPATH) >/dev/null 2>&1 && unset CDPATH 5135 5136# The names of the tagged configurations supported by this script. 5137available_tags= 5138 5139# ### BEGIN LIBTOOL CONFIG], 5140[# ### BEGIN LIBTOOL TAG CONFIG: $tagname]) 5141 5142# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: 5143 5144# Shell to use when invoking shell scripts. 5145SHELL=$lt_SHELL 5146 5147# Whether or not to build shared libraries. 5148build_libtool_libs=$enable_shared 5149 5150# Whether or not to build static libraries. 5151build_old_libs=$enable_static 5152 5153# Whether or not to add -lc for building shared libraries. 5154build_libtool_need_lc=$_LT_AC_TAGVAR(archive_cmds_need_lc, $1) 5155 5156# Whether or not to disallow shared libs when runtime libs are static 5157allow_libtool_libs_with_static_runtimes=$_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) 5158 5159# Whether or not to optimize for fast installation. 5160fast_install=$enable_fast_install 5161 5162# The host system. 5163host_alias=$host_alias 5164host=$host 5165host_os=$host_os 5166 5167# The build system. 5168build_alias=$build_alias 5169build=$build 5170build_os=$build_os 5171 5172# An echo program that does not interpret backslashes. 5173echo=$lt_echo 5174 5175# The archiver. 5176AR=$lt_AR 5177AR_FLAGS=$lt_AR_FLAGS 5178 5179# A C compiler. 5180LTCC=$lt_LTCC 5181 5182# LTCC compiler flags. 5183LTCFLAGS=$lt_LTCFLAGS 5184 5185# A language-specific compiler. 5186CC=$lt_[]_LT_AC_TAGVAR(compiler, $1) 5187 5188# Is the compiler the GNU C compiler? 5189with_gcc=$_LT_AC_TAGVAR(GCC, $1) 5190 5191# An ERE matcher. 5192EGREP=$lt_EGREP 5193 5194# The linker used to build libraries. 5195LD=$lt_[]_LT_AC_TAGVAR(LD, $1) 5196 5197# Whether we need hard or soft links. 5198LN_S=$lt_LN_S 5199 5200# A BSD-compatible nm program. 5201NM=$lt_NM 5202 5203# A symbol stripping program 5204STRIP=$lt_STRIP 5205 5206# Used to examine libraries when file_magic_cmd begins "file" 5207MAGIC_CMD=$MAGIC_CMD 5208 5209# Used on cygwin: DLL creation program. 5210DLLTOOL="$DLLTOOL" 5211 5212# Used on cygwin: object dumper. 5213OBJDUMP="$OBJDUMP" 5214 5215# Used on cygwin: assembler. 5216AS="$AS" 5217 5218# The name of the directory that contains temporary libtool files. 5219objdir=$objdir 5220 5221# How to create reloadable object files. 5222reload_flag=$lt_reload_flag 5223reload_cmds=$lt_reload_cmds 5224 5225# How to pass a linker flag through the compiler. 5226wl=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) 5227 5228# Object file suffix (normally "o"). 5229objext="$ac_objext" 5230 5231# Old archive suffix (normally "a"). 5232libext="$libext" 5233 5234# Shared library suffix (normally ".so"). 5235shrext_cmds='$shrext_cmds' 5236 5237# Executable file suffix (normally ""). 5238exeext="$exeext" 5239 5240# Additional compiler flags for building library objects. 5241pic_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) 5242pic_mode=$pic_mode 5243 5244# What is the maximum length of a command? 5245max_cmd_len=$lt_cv_sys_max_cmd_len 5246 5247# Does compiler simultaneously support -c and -o options? 5248compiler_c_o=$lt_[]_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) 5249 5250# Must we lock files when doing compilation? 5251need_locks=$lt_need_locks 5252 5253# Do we need the lib prefix for modules? 5254need_lib_prefix=$need_lib_prefix 5255 5256# Do we need a version for libraries? 5257need_version=$need_version 5258 5259# Whether dlopen is supported. 5260dlopen_support=$enable_dlopen 5261 5262# Whether dlopen of programs is supported. 5263dlopen_self=$enable_dlopen_self 5264 5265# Whether dlopen of statically linked programs is supported. 5266dlopen_self_static=$enable_dlopen_self_static 5267 5268# Compiler flag to prevent dynamic linking. 5269link_static_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_static, $1) 5270 5271# Compiler flag to turn off builtin functions. 5272no_builtin_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) 5273 5274# Compiler flag to allow reflexive dlopens. 5275export_dynamic_flag_spec=$lt_[]_LT_AC_TAGVAR(export_dynamic_flag_spec, $1) 5276 5277# Compiler flag to generate shared objects directly from archives. 5278whole_archive_flag_spec=$lt_[]_LT_AC_TAGVAR(whole_archive_flag_spec, $1) 5279 5280# Compiler flag to generate thread-safe objects. 5281thread_safe_flag_spec=$lt_[]_LT_AC_TAGVAR(thread_safe_flag_spec, $1) 5282 5283# Library versioning type. 5284version_type=$version_type 5285 5286# Format of library name prefix. 5287libname_spec=$lt_libname_spec 5288 5289# List of archive names. First name is the real one, the rest are links. 5290# The last name is the one that the linker finds with -lNAME. 5291library_names_spec=$lt_library_names_spec 5292 5293# The coded name of the library, if different from the real name. 5294soname_spec=$lt_soname_spec 5295 5296# Commands used to build and install an old-style archive. 5297RANLIB=$lt_RANLIB 5298old_archive_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_cmds, $1) 5299old_postinstall_cmds=$lt_old_postinstall_cmds 5300old_postuninstall_cmds=$lt_old_postuninstall_cmds 5301 5302# Create an old-style archive from a shared archive. 5303old_archive_from_new_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_new_cmds, $1) 5304 5305# Create a temporary old-style archive to link instead of a shared archive. 5306old_archive_from_expsyms_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) 5307 5308# Commands used to build and install a shared archive. 5309archive_cmds=$lt_[]_LT_AC_TAGVAR(archive_cmds, $1) 5310archive_expsym_cmds=$lt_[]_LT_AC_TAGVAR(archive_expsym_cmds, $1) 5311postinstall_cmds=$lt_postinstall_cmds 5312postuninstall_cmds=$lt_postuninstall_cmds 5313 5314# Commands used to build a loadable module (assumed same as above if empty) 5315module_cmds=$lt_[]_LT_AC_TAGVAR(module_cmds, $1) 5316module_expsym_cmds=$lt_[]_LT_AC_TAGVAR(module_expsym_cmds, $1) 5317 5318# Commands to strip libraries. 5319old_striplib=$lt_old_striplib 5320striplib=$lt_striplib 5321 5322# Dependencies to place before the objects being linked to create a 5323# shared library. 5324predep_objects=$lt_[]_LT_AC_TAGVAR(predep_objects, $1) 5325 5326# Dependencies to place after the objects being linked to create a 5327# shared library. 5328postdep_objects=$lt_[]_LT_AC_TAGVAR(postdep_objects, $1) 5329 5330# Dependencies to place before the objects being linked to create a 5331# shared library. 5332predeps=$lt_[]_LT_AC_TAGVAR(predeps, $1) 5333 5334# Dependencies to place after the objects being linked to create a 5335# shared library. 5336postdeps=$lt_[]_LT_AC_TAGVAR(postdeps, $1) 5337 5338# The library search path used internally by the compiler when linking 5339# a shared library. 5340compiler_lib_search_path=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1) 5341 5342# Method to check whether dependent libraries are shared objects. 5343deplibs_check_method=$lt_deplibs_check_method 5344 5345# Command to use when deplibs_check_method == file_magic. 5346file_magic_cmd=$lt_file_magic_cmd 5347 5348# Flag that allows shared libraries with undefined symbols to be built. 5349allow_undefined_flag=$lt_[]_LT_AC_TAGVAR(allow_undefined_flag, $1) 5350 5351# Flag that forces no undefined symbols. 5352no_undefined_flag=$lt_[]_LT_AC_TAGVAR(no_undefined_flag, $1) 5353 5354# Commands used to finish a libtool library installation in a directory. 5355finish_cmds=$lt_finish_cmds 5356 5357# Same as above, but a single script fragment to be evaled but not shown. 5358finish_eval=$lt_finish_eval 5359 5360# Take the output of nm and produce a listing of raw symbols and C names. 5361global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe 5362 5363# Transform the output of nm in a proper C declaration 5364global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl 5365 5366# Transform the output of nm in a C name address pair 5367global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address 5368 5369# This is the shared library runtime path variable. 5370runpath_var=$runpath_var 5371 5372# This is the shared library path variable. 5373shlibpath_var=$shlibpath_var 5374 5375# Is shlibpath searched before the hard-coded library search path? 5376shlibpath_overrides_runpath=$shlibpath_overrides_runpath 5377 5378# How to hardcode a shared library path into an executable. 5379hardcode_action=$_LT_AC_TAGVAR(hardcode_action, $1) 5380 5381# Whether we should hardcode library paths into libraries. 5382hardcode_into_libs=$hardcode_into_libs 5383 5384# Flag to hardcode \$libdir into a binary during linking. 5385# This must work even if \$libdir does not exist. 5386hardcode_libdir_flag_spec=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) 5387 5388# If ld is used when linking, flag to hardcode \$libdir into 5389# a binary during linking. This must work even if \$libdir does 5390# not exist. 5391hardcode_libdir_flag_spec_ld=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) 5392 5393# Whether we need a single -rpath flag with a separated argument. 5394hardcode_libdir_separator=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_separator, $1) 5395 5396# Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the 5397# resulting binary. 5398hardcode_direct=$_LT_AC_TAGVAR(hardcode_direct, $1) 5399 5400# Set to yes if using the -LDIR flag during linking hardcodes DIR into the 5401# resulting binary. 5402hardcode_minus_L=$_LT_AC_TAGVAR(hardcode_minus_L, $1) 5403 5404# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into 5405# the resulting binary. 5406hardcode_shlibpath_var=$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1) 5407 5408# Set to yes if building a shared library automatically hardcodes DIR into the library 5409# and all subsequent libraries and executables linked against it. 5410hardcode_automatic=$_LT_AC_TAGVAR(hardcode_automatic, $1) 5411 5412# Variables whose values should be saved in libtool wrapper scripts and 5413# restored at relink time. 5414variables_saved_for_relink="$variables_saved_for_relink" 5415 5416# Whether libtool must link a program against all its dependency libraries. 5417link_all_deplibs=$_LT_AC_TAGVAR(link_all_deplibs, $1) 5418 5419# Compile-time system search path for libraries 5420sys_lib_search_path_spec=$lt_sys_lib_search_path_spec 5421 5422# Run-time system search path for libraries 5423sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec 5424 5425# Fix the shell variable \$srcfile for the compiler. 5426fix_srcfile_path="$_LT_AC_TAGVAR(fix_srcfile_path, $1)" 5427 5428# Set to yes if exported symbols are required. 5429always_export_symbols=$_LT_AC_TAGVAR(always_export_symbols, $1) 5430 5431# The commands to list exported symbols. 5432export_symbols_cmds=$lt_[]_LT_AC_TAGVAR(export_symbols_cmds, $1) 5433 5434# The commands to extract the exported symbol list from a shared archive. 5435extract_expsyms_cmds=$lt_extract_expsyms_cmds 5436 5437# Symbols that should not be listed in the preloaded symbols. 5438exclude_expsyms=$lt_[]_LT_AC_TAGVAR(exclude_expsyms, $1) 5439 5440# Symbols that must always be exported. 5441include_expsyms=$lt_[]_LT_AC_TAGVAR(include_expsyms, $1) 5442 5443ifelse([$1],[], 5444[# ### END LIBTOOL CONFIG], 5445[# ### END LIBTOOL TAG CONFIG: $tagname]) 5446 5447__EOF__ 5448 5449ifelse([$1],[], [ 5450 case $host_os in 5451 aix3*) 5452 cat <<\EOF >> "$cfgfile" 5453 5454# AIX sometimes has problems with the GCC collect2 program. For some 5455# reason, if we set the COLLECT_NAMES environment variable, the problems 5456# vanish in a puff of smoke. 5457if test "X${COLLECT_NAMES+set}" != Xset; then 5458 COLLECT_NAMES= 5459 export COLLECT_NAMES 5460fi 5461EOF 5462 ;; 5463 esac 5464 5465 # We use sed instead of cat because bash on DJGPP gets confused if 5466 # if finds mixed CR/LF and LF-only lines. Since sed operates in 5467 # text mode, it properly converts lines to CR/LF. This bash problem 5468 # is reportedly fixed, but why not run on old versions too? 5469 sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1) 5470 5471 mv -f "$cfgfile" "$ofile" || \ 5472 (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") 5473 chmod +x "$ofile" 5474]) 5475else 5476 # If there is no Makefile yet, we rely on a make rule to execute 5477 # `config.status --recheck' to rerun these tests and create the 5478 # libtool script then. 5479 ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` 5480 if test -f "$ltmain_in"; then 5481 test -f Makefile && make "$ltmain" 5482 fi 5483fi 5484]) 5485m4trace:acinclude.m4:5199: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl 5486 5487_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= 5488 5489if test "$GCC" = yes; then 5490 _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' 5491 5492 AC_LIBTOOL_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], 5493 lt_cv_prog_compiler_rtti_exceptions, 5494 [-fno-rtti -fno-exceptions], [], 5495 [_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) 5496fi 5497]) 5498m4trace:acinclude.m4:5217: -1- AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_REQUIRE([AC_CANONICAL_HOST]) 5499AC_REQUIRE([AC_PROG_NM]) 5500AC_REQUIRE([AC_OBJEXT]) 5501# Check for command to grab the raw symbol name followed by C symbol from nm. 5502AC_MSG_CHECKING([command to parse $NM output from $compiler object]) 5503AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], 5504[ 5505# These are sane defaults that work on at least a few old systems. 5506# [They come from Ultrix. What could be older than Ultrix?!! ;)] 5507 5508# Character class describing NM global symbol codes. 5509symcode='[[BCDEGRST]]' 5510 5511# Regexp to match symbols that can be accessed directly from C. 5512sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' 5513 5514# Transform an extracted symbol line into a proper C declaration 5515lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'" 5516 5517# Transform an extracted symbol line into symbol name and symbol address 5518lt_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'" 5519 5520# Define system-specific variables. 5521case $host_os in 5522aix*) 5523 symcode='[[BCDT]]' 5524 ;; 5525cygwin* | mingw* | pw32*) 5526 symcode='[[ABCDGISTW]]' 5527 ;; 5528hpux*) # Its linker distinguishes data from code symbols 5529 if test "$host_cpu" = ia64; then 5530 symcode='[[ABCDEGRST]]' 5531 fi 5532 lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" 5533 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'" 5534 ;; 5535linux*) 5536 if test "$host_cpu" = ia64; then 5537 symcode='[[ABCDGIRSTW]]' 5538 lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" 5539 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'" 5540 fi 5541 ;; 5542irix* | nonstopux*) 5543 symcode='[[BCDEGRST]]' 5544 ;; 5545osf*) 5546 symcode='[[BCDEGQRST]]' 5547 ;; 5548solaris*) 5549 symcode='[[BDRT]]' 5550 ;; 5551sco3.2v5*) 5552 symcode='[[DT]]' 5553 ;; 5554sysv4.2uw2*) 5555 symcode='[[DT]]' 5556 ;; 5557sysv5* | sco5v6* | unixware* | OpenUNIX*) 5558 symcode='[[ABDT]]' 5559 ;; 5560sysv4) 5561 symcode='[[DFNSTU]]' 5562 ;; 5563esac 5564 5565# Handle CRLF in mingw tool chain 5566opt_cr= 5567case $build_os in 5568mingw*) 5569 opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp 5570 ;; 5571esac 5572 5573# If we're using GNU nm, then use its standard symbol codes. 5574case `$NM -V 2>&1` in 5575*GNU* | *'with BFD'*) 5576 symcode='[[ABCDGIRSTW]]' ;; 5577esac 5578 5579# Try without a prefix undercore, then with it. 5580for ac_symprfx in "" "_"; do 5581 5582 # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. 5583 symxfrm="\\1 $ac_symprfx\\2 \\2" 5584 5585 # Write the raw and C identifiers. 5586 lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" 5587 5588 # Check to see that the pipe works correctly. 5589 pipe_works=no 5590 5591 rm -f conftest* 5592 cat > conftest.$ac_ext <<EOF 5593#ifdef __cplusplus 5594extern "C" { 5595#endif 5596char nm_test_var; 5597void nm_test_func(){} 5598#ifdef __cplusplus 5599} 5600#endif 5601int main(){nm_test_var='a';nm_test_func();return(0);} 5602EOF 5603 5604 if AC_TRY_EVAL(ac_compile); then 5605 # Now try to grab the symbols. 5606 nlist=conftest.nm 5607 if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) && test -s "$nlist"; then 5608 # Try sorting and uniquifying the output. 5609 if sort "$nlist" | uniq > "$nlist"T; then 5610 mv -f "$nlist"T "$nlist" 5611 else 5612 rm -f "$nlist"T 5613 fi 5614 5615 # Make sure that we snagged all the symbols we need. 5616 if grep ' nm_test_var$' "$nlist" >/dev/null; then 5617 if grep ' nm_test_func$' "$nlist" >/dev/null; then 5618 cat <<EOF > conftest.$ac_ext 5619#ifdef __cplusplus 5620extern "C" { 5621#endif 5622 5623EOF 5624 # Now generate the symbol file. 5625 eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext' 5626 5627 cat <<EOF >> conftest.$ac_ext 5628#if defined (__STDC__) && __STDC__ 5629# define lt_ptr_t void * 5630#else 5631# define lt_ptr_t char * 5632# define const 5633#endif 5634 5635/* The mapping between symbol names and symbols. */ 5636const struct { 5637 const char *name; 5638 lt_ptr_t address; 5639} 5640lt_preloaded_symbols[[]] = 5641{ 5642EOF 5643 $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext 5644 cat <<\EOF >> conftest.$ac_ext 5645 {0, (lt_ptr_t) 0} 5646}; 5647 5648#ifdef __cplusplus 5649} 5650#endif 5651EOF 5652 # Now try linking the two files. 5653 mv conftest.$ac_objext conftstm.$ac_objext 5654 lt_save_LIBS="$LIBS" 5655 lt_save_CFLAGS="$CFLAGS" 5656 LIBS="conftstm.$ac_objext" 5657 CFLAGS="$CFLAGS$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" 5658 if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then 5659 pipe_works=yes 5660 fi 5661 LIBS="$lt_save_LIBS" 5662 CFLAGS="$lt_save_CFLAGS" 5663 else 5664 echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD 5665 fi 5666 else 5667 echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD 5668 fi 5669 else 5670 echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD 5671 fi 5672 else 5673 echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD 5674 cat conftest.$ac_ext >&5 5675 fi 5676 rm -f conftest* conftst* 5677 5678 # Do not use the global_symbol_pipe unless it works. 5679 if test "$pipe_works" = yes; then 5680 break 5681 else 5682 lt_cv_sys_global_symbol_pipe= 5683 fi 5684done 5685]) 5686if test -z "$lt_cv_sys_global_symbol_pipe"; then 5687 lt_cv_sys_global_symbol_to_cdecl= 5688fi 5689if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then 5690 AC_MSG_RESULT(failed) 5691else 5692 AC_MSG_RESULT(ok) 5693fi 5694]) 5695m4trace:acinclude.m4:5419: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC], [_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)= 5696_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= 5697_LT_AC_TAGVAR(lt_prog_compiler_static, $1)= 5698 5699AC_MSG_CHECKING([for $compiler option to produce PIC]) 5700 ifelse([$1],[CXX],[ 5701 # C++ specific cases for pic, static, wl, etc. 5702 if test "$GXX" = yes; then 5703 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 5704 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' 5705 5706 case $host_os in 5707 aix*) 5708 # All AIX code is PIC. 5709 if test "$host_cpu" = ia64; then 5710 # AIX 5 now supports IA64 processor 5711 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 5712 fi 5713 ;; 5714 amigaos*) 5715 # FIXME: we need at least 68020 code to build shared libraries, but 5716 # adding the `-m68020' flag to GCC prevents building anything better, 5717 # like `-m68040'. 5718 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' 5719 ;; 5720 beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) 5721 # PIC is the default for these OSes. 5722 ;; 5723 mingw* | os2* | pw32*) 5724 # This hack is so that the source file can tell whether it is being 5725 # built for inclusion in a dll (and should export symbols for example). 5726 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' 5727 ;; 5728 darwin* | rhapsody*) 5729 # PIC is the default on this platform 5730 # Common symbols not allowed in MH_DYLIB files 5731 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' 5732 ;; 5733 *djgpp*) 5734 # DJGPP does not support shared libraries at all 5735 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= 5736 ;; 5737 interix3*) 5738 # Interix 3.x gcc -fpic/-fPIC options generate broken code. 5739 # Instead, we relocate shared libraries at runtime. 5740 ;; 5741 sysv4*MP*) 5742 if test -d /usr/nec; then 5743 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic 5744 fi 5745 ;; 5746 hpux*) 5747 # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but 5748 # not for PA HP-UX. 5749 case $host_cpu in 5750 hppa*64*|ia64*) 5751 ;; 5752 *) 5753 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' 5754 ;; 5755 esac 5756 ;; 5757 *) 5758 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' 5759 ;; 5760 esac 5761 else 5762 case $host_os in 5763 aix4* | aix5*) 5764 # All AIX code is PIC. 5765 if test "$host_cpu" = ia64; then 5766 # AIX 5 now supports IA64 processor 5767 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 5768 else 5769 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' 5770 fi 5771 ;; 5772 chorus*) 5773 case $cc_basename in 5774 cxch68*) 5775 # Green Hills C++ Compiler 5776 # _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" 5777 ;; 5778 esac 5779 ;; 5780 darwin*) 5781 # PIC is the default on this platform 5782 # Common symbols not allowed in MH_DYLIB files 5783 case $cc_basename in 5784 xlc*) 5785 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' 5786 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 5787 ;; 5788 esac 5789 ;; 5790 dgux*) 5791 case $cc_basename in 5792 ec++*) 5793 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' 5794 ;; 5795 ghcx*) 5796 # Green Hills C++ Compiler 5797 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' 5798 ;; 5799 *) 5800 ;; 5801 esac 5802 ;; 5803 freebsd* | kfreebsd*-gnu | dragonfly*) 5804 # FreeBSD uses GNU C++ 5805 ;; 5806 hpux9* | hpux10* | hpux11*) 5807 case $cc_basename in 5808 CC*) 5809 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 5810 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' 5811 if test "$host_cpu" != ia64; then 5812 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' 5813 fi 5814 ;; 5815 aCC*) 5816 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 5817 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' 5818 case $host_cpu in 5819 hppa*64*|ia64*) 5820 # +Z the default 5821 ;; 5822 *) 5823 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' 5824 ;; 5825 esac 5826 ;; 5827 *) 5828 ;; 5829 esac 5830 ;; 5831 interix*) 5832 # This is c89, which is MS Visual C++ (no shared libs) 5833 # Anyone wants to do a port? 5834 ;; 5835 irix5* | irix6* | nonstopux*) 5836 case $cc_basename in 5837 CC*) 5838 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 5839 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' 5840 # CC pic flag -KPIC is the default. 5841 ;; 5842 *) 5843 ;; 5844 esac 5845 ;; 5846 linux*) 5847 case $cc_basename in 5848 KCC*) 5849 # KAI C++ Compiler 5850 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' 5851 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' 5852 ;; 5853 icpc* | ecpc*) 5854 # Intel C++ 5855 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 5856 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' 5857 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' 5858 ;; 5859 pgCC*) 5860 # Portland Group C++ compiler. 5861 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 5862 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' 5863 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 5864 ;; 5865 cxx*) 5866 # Compaq C++ 5867 # Make sure the PIC flag is empty. It appears that all Alpha 5868 # Linux and Compaq Tru64 Unix objects are PIC. 5869 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= 5870 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' 5871 ;; 5872 *) 5873 ;; 5874 esac 5875 ;; 5876 lynxos*) 5877 ;; 5878 m88k*) 5879 ;; 5880 mvs*) 5881 case $cc_basename in 5882 cxx*) 5883 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' 5884 ;; 5885 *) 5886 ;; 5887 esac 5888 ;; 5889 netbsd*) 5890 ;; 5891 osf3* | osf4* | osf5*) 5892 case $cc_basename in 5893 KCC*) 5894 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' 5895 ;; 5896 RCC*) 5897 # Rational C++ 2.4.1 5898 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' 5899 ;; 5900 cxx*) 5901 # Digital/Compaq C++ 5902 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 5903 # Make sure the PIC flag is empty. It appears that all Alpha 5904 # Linux and Compaq Tru64 Unix objects are PIC. 5905 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= 5906 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' 5907 ;; 5908 *) 5909 ;; 5910 esac 5911 ;; 5912 psos*) 5913 ;; 5914 solaris*) 5915 case $cc_basename in 5916 CC*) 5917 # Sun C++ 4.2, 5.x and Centerline C++ 5918 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' 5919 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 5920 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' 5921 ;; 5922 gcx*) 5923 # Green Hills C++ Compiler 5924 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' 5925 ;; 5926 *) 5927 ;; 5928 esac 5929 ;; 5930 sunos4*) 5931 case $cc_basename in 5932 CC*) 5933 # Sun C++ 4.x 5934 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' 5935 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 5936 ;; 5937 lcc*) 5938 # Lucid 5939 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' 5940 ;; 5941 *) 5942 ;; 5943 esac 5944 ;; 5945 tandem*) 5946 case $cc_basename in 5947 NCC*) 5948 # NonStop-UX NCC 3.20 5949 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' 5950 ;; 5951 *) 5952 ;; 5953 esac 5954 ;; 5955 sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) 5956 case $cc_basename in 5957 CC*) 5958 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 5959 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' 5960 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 5961 ;; 5962 esac 5963 ;; 5964 vxworks*) 5965 ;; 5966 *) 5967 _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no 5968 ;; 5969 esac 5970 fi 5971], 5972[ 5973 if test "$GCC" = yes; then 5974 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 5975 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' 5976 5977 case $host_os in 5978 aix*) 5979 # All AIX code is PIC. 5980 if test "$host_cpu" = ia64; then 5981 # AIX 5 now supports IA64 processor 5982 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 5983 fi 5984 ;; 5985 5986 amigaos*) 5987 # FIXME: we need at least 68020 code to build shared libraries, but 5988 # adding the `-m68020' flag to GCC prevents building anything better, 5989 # like `-m68040'. 5990 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' 5991 ;; 5992 5993 beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) 5994 # PIC is the default for these OSes. 5995 ;; 5996 5997 mingw* | pw32* | os2*) 5998 # This hack is so that the source file can tell whether it is being 5999 # built for inclusion in a dll (and should export symbols for example). 6000 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' 6001 ;; 6002 6003 darwin* | rhapsody*) 6004 # PIC is the default on this platform 6005 # Common symbols not allowed in MH_DYLIB files 6006 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' 6007 ;; 6008 6009 interix3*) 6010 # Interix 3.x gcc -fpic/-fPIC options generate broken code. 6011 # Instead, we relocate shared libraries at runtime. 6012 ;; 6013 6014 msdosdjgpp*) 6015 # Just because we use GCC doesn't mean we suddenly get shared libraries 6016 # on systems that don't support them. 6017 _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no 6018 enable_shared=no 6019 ;; 6020 6021 sysv4*MP*) 6022 if test -d /usr/nec; then 6023 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic 6024 fi 6025 ;; 6026 6027 hpux*) 6028 # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but 6029 # not for PA HP-UX. 6030 case $host_cpu in 6031 hppa*64*|ia64*) 6032 # +Z the default 6033 ;; 6034 *) 6035 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' 6036 ;; 6037 esac 6038 ;; 6039 6040 *) 6041 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' 6042 ;; 6043 esac 6044 else 6045 # PORTME Check for flag to pass linker flags through the system compiler. 6046 case $host_os in 6047 aix*) 6048 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 6049 if test "$host_cpu" = ia64; then 6050 # AIX 5 now supports IA64 processor 6051 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 6052 else 6053 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' 6054 fi 6055 ;; 6056 darwin*) 6057 # PIC is the default on this platform 6058 # Common symbols not allowed in MH_DYLIB files 6059 case $cc_basename in 6060 xlc*) 6061 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' 6062 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 6063 ;; 6064 esac 6065 ;; 6066 6067 mingw* | pw32* | os2*) 6068 # This hack is so that the source file can tell whether it is being 6069 # built for inclusion in a dll (and should export symbols for example). 6070 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' 6071 ;; 6072 6073 hpux9* | hpux10* | hpux11*) 6074 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 6075 # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but 6076 # not for PA HP-UX. 6077 case $host_cpu in 6078 hppa*64*|ia64*) 6079 # +Z the default 6080 ;; 6081 *) 6082 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' 6083 ;; 6084 esac 6085 # Is there a better lt_prog_compiler_static that works with the bundled CC? 6086 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' 6087 ;; 6088 6089 irix5* | irix6* | nonstopux*) 6090 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 6091 # PIC (with -KPIC) is the default. 6092 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' 6093 ;; 6094 6095 newsos6) 6096 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' 6097 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 6098 ;; 6099 6100 linux*) 6101 case $cc_basename in 6102 icc* | ecc*) 6103 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 6104 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' 6105 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' 6106 ;; 6107 pgcc* | pgf77* | pgf90* | pgf95*) 6108 # Portland Group compilers (*not* the Pentium gcc compiler, 6109 # which looks to be a dead project) 6110 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 6111 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' 6112 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 6113 ;; 6114 ccc*) 6115 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 6116 # All Alpha code is PIC. 6117 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' 6118 ;; 6119 esac 6120 ;; 6121 6122 osf3* | osf4* | osf5*) 6123 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 6124 # All OSF/1 code is PIC. 6125 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' 6126 ;; 6127 6128 solaris*) 6129 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' 6130 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 6131 case $cc_basename in 6132 f77* | f90* | f95*) 6133 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; 6134 *) 6135 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; 6136 esac 6137 ;; 6138 6139 sunos4*) 6140 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' 6141 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' 6142 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 6143 ;; 6144 6145 sysv4 | sysv4.2uw2* | sysv4.3*) 6146 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 6147 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' 6148 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 6149 ;; 6150 6151 sysv4*MP*) 6152 if test -d /usr/nec ;then 6153 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' 6154 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 6155 fi 6156 ;; 6157 6158 sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) 6159 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 6160 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' 6161 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 6162 ;; 6163 6164 unicos*) 6165 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' 6166 _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no 6167 ;; 6168 6169 uts4*) 6170 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' 6171 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' 6172 ;; 6173 6174 *) 6175 _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no 6176 ;; 6177 esac 6178 fi 6179]) 6180AC_MSG_RESULT([$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)]) 6181 6182# 6183# Check to make sure the PIC flag actually works. 6184# 6185if test -n "$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)"; then 6186 AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) works], 6187 _LT_AC_TAGVAR(lt_prog_compiler_pic_works, $1), 6188 [$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])], [], 6189 [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) in 6190 "" | " "*) ;; 6191 *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)" ;; 6192 esac], 6193 [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= 6194 _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) 6195fi 6196case $host_os in 6197 # For platforms which do not support PIC, -DPIC is meaningless: 6198 *djgpp*) 6199 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= 6200 ;; 6201 *) 6202 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])" 6203 ;; 6204esac 6205 6206# 6207# Check to make sure the static flag actually works. 6208# 6209wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_AC_TAGVAR(lt_prog_compiler_static, $1)\" 6210AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], 6211 _LT_AC_TAGVAR(lt_prog_compiler_static_works, $1), 6212 $lt_tmp_static_flag, 6213 [], 6214 [_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=]) 6215]) 6216m4trace:acinclude.m4:5946: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) 6217ifelse([$1],[CXX],[ 6218 _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' 6219 case $host_os in 6220 aix4* | aix5*) 6221 # If we're using GNU nm, then we don't want the "-C" option. 6222 # -C means demangle to AIX nm, but means don't demangle with GNU nm 6223 if $NM -V 2>&1 | grep 'GNU' > /dev/null; then 6224 _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' 6225 else 6226 _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' 6227 fi 6228 ;; 6229 pw32*) 6230 _LT_AC_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" 6231 ;; 6232 cygwin* | mingw*) 6233 _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' 6234 ;; 6235 *) 6236 _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' 6237 ;; 6238 esac 6239],[ 6240 runpath_var= 6241 _LT_AC_TAGVAR(allow_undefined_flag, $1)= 6242 _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no 6243 _LT_AC_TAGVAR(archive_cmds, $1)= 6244 _LT_AC_TAGVAR(archive_expsym_cmds, $1)= 6245 _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)= 6246 _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)= 6247 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= 6248 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= 6249 _LT_AC_TAGVAR(thread_safe_flag_spec, $1)= 6250 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= 6251 _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= 6252 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= 6253 _LT_AC_TAGVAR(hardcode_direct, $1)=no 6254 _LT_AC_TAGVAR(hardcode_minus_L, $1)=no 6255 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported 6256 _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown 6257 _LT_AC_TAGVAR(hardcode_automatic, $1)=no 6258 _LT_AC_TAGVAR(module_cmds, $1)= 6259 _LT_AC_TAGVAR(module_expsym_cmds, $1)= 6260 _LT_AC_TAGVAR(always_export_symbols, $1)=no 6261 _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' 6262 # include_expsyms should be a list of space-separated symbols to be *always* 6263 # included in the symbol list 6264 _LT_AC_TAGVAR(include_expsyms, $1)= 6265 # exclude_expsyms can be an extended regexp of symbols to exclude 6266 # it will be wrapped by ` (' and `)$', so one must not match beginning or 6267 # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', 6268 # as well as any symbol that contains `d'. 6269 _LT_AC_TAGVAR(exclude_expsyms, $1)="_GLOBAL_OFFSET_TABLE_" 6270 # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out 6271 # platforms (ab)use it in PIC code, but their linkers get confused if 6272 # the symbol is explicitly referenced. Since portable code cannot 6273 # rely on this symbol name, it's probably fine to never include it in 6274 # preloaded symbol tables. 6275 extract_expsyms_cmds= 6276 # Just being paranoid about ensuring that cc_basename is set. 6277 _LT_CC_BASENAME([$compiler]) 6278 case $host_os in 6279 cygwin* | mingw* | pw32*) 6280 # FIXME: the MSVC++ port hasn't been tested in a loooong time 6281 # When not using gcc, we currently assume that we are using 6282 # Microsoft Visual C++. 6283 if test "$GCC" != yes; then 6284 with_gnu_ld=no 6285 fi 6286 ;; 6287 interix*) 6288 # we just hope/assume this is gcc and not c89 (= MSVC++) 6289 with_gnu_ld=yes 6290 ;; 6291 openbsd*) 6292 with_gnu_ld=no 6293 ;; 6294 esac 6295 6296 _LT_AC_TAGVAR(ld_shlibs, $1)=yes 6297 if test "$with_gnu_ld" = yes; then 6298 # If archive_cmds runs LD, not CC, wlarc should be empty 6299 wlarc='${wl}' 6300 6301 # Set some defaults for GNU ld with shared library support. These 6302 # are reset later if shared libraries are not supported. Putting them 6303 # here allows them to be overridden if necessary. 6304 runpath_var=LD_RUN_PATH 6305 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' 6306 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' 6307 # ancient GNU ld didn't support --whole-archive et. al. 6308 if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then 6309 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' 6310 else 6311 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= 6312 fi 6313 supports_anon_versioning=no 6314 case `$LD -v 2>/dev/null` in 6315 *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 6316 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... 6317 *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... 6318 *\ 2.11.*) ;; # other 2.11 versions 6319 *) supports_anon_versioning=yes ;; 6320 esac 6321 6322 # See if GNU ld supports shared libraries. 6323 case $host_os in 6324 aix3* | aix4* | aix5*) 6325 # On AIX/PPC, the GNU linker is very broken 6326 if test "$host_cpu" != ia64; then 6327 _LT_AC_TAGVAR(ld_shlibs, $1)=no 6328 cat <<EOF 1>&2 6329 6330*** Warning: the GNU linker, at least up to release 2.9.1, is reported 6331*** to be unable to reliably create shared libraries on AIX. 6332*** Therefore, libtool is disabling shared libraries support. If you 6333*** really care for shared libraries, you may want to modify your PATH 6334*** so that a non-GNU linker is found, and then restart. 6335 6336EOF 6337 fi 6338 ;; 6339 6340 amigaos*) 6341 _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)' 6342 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' 6343 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes 6344 6345 # Samuel A. Falvo II <kc5tja@dolphin.openprojects.net> reports 6346 # that the semantics of dynamic libraries on AmigaOS, at least up 6347 # to version 4, is to share data among multiple programs linked 6348 # with the same dynamic library. Since this doesn't match the 6349 # behavior of shared libraries on other platforms, we can't use 6350 # them. 6351 _LT_AC_TAGVAR(ld_shlibs, $1)=no 6352 ;; 6353 6354 beos*) 6355 if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then 6356 _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported 6357 # Joseph Beckenbach <jrb3@best.com> says some releases of gcc 6358 # support --undefined. This deserves some investigation. FIXME 6359 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' 6360 else 6361 _LT_AC_TAGVAR(ld_shlibs, $1)=no 6362 fi 6363 ;; 6364 6365 cygwin* | mingw* | pw32*) 6366 # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, 6367 # as there is no search path for DLLs. 6368 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' 6369 _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported 6370 _LT_AC_TAGVAR(always_export_symbols, $1)=no 6371 _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes 6372 _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' 6373 6374 if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then 6375 _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' 6376 # If the export-symbols file already is a .def file (1st line 6377 # is EXPORTS), use it as is; otherwise, prepend... 6378 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then 6379 cp $export_symbols $output_objdir/$soname.def; 6380 else 6381 echo EXPORTS > $output_objdir/$soname.def; 6382 cat $export_symbols >> $output_objdir/$soname.def; 6383 fi~ 6384 $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' 6385 else 6386 _LT_AC_TAGVAR(ld_shlibs, $1)=no 6387 fi 6388 ;; 6389 6390 interix3*) 6391 _LT_AC_TAGVAR(hardcode_direct, $1)=no 6392 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6393 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' 6394 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' 6395 # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. 6396 # Instead, shared libraries are loaded at an image base (0x10000000 by 6397 # default) and relocated if they conflict, which is a slow very memory 6398 # consuming and fragmenting process. To avoid this, we pick a random, 6399 # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link 6400 # time. Moving up from 0x10000000 also allows more sbrk(2) space. 6401 _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' 6402 _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' 6403 ;; 6404 6405 linux*) 6406 if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then 6407 tmp_addflag= 6408 case $cc_basename,$host_cpu in 6409 pgcc*) # Portland Group C compiler 6410 _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' 6411 tmp_addflag=' $pic_flag' 6412 ;; 6413 pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers 6414 _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' 6415 tmp_addflag=' $pic_flag -Mnomain' ;; 6416 ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 6417 tmp_addflag=' -i_dynamic' ;; 6418 efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 6419 tmp_addflag=' -i_dynamic -nofor_main' ;; 6420 ifc* | ifort*) # Intel Fortran compiler 6421 tmp_addflag=' -nofor_main' ;; 6422 esac 6423 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' 6424 6425 if test $supports_anon_versioning = yes; then 6426 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $output_objdir/$libname.ver~ 6427 cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ 6428 $echo "local: *; };" >> $output_objdir/$libname.ver~ 6429 $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' 6430 fi 6431 else 6432 _LT_AC_TAGVAR(ld_shlibs, $1)=no 6433 fi 6434 ;; 6435 6436 netbsd*) 6437 if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then 6438 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' 6439 wlarc= 6440 else 6441 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' 6442 _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' 6443 fi 6444 ;; 6445 6446 solaris*) 6447 if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then 6448 _LT_AC_TAGVAR(ld_shlibs, $1)=no 6449 cat <<EOF 1>&2 6450 6451*** Warning: The releases 2.8.* of the GNU linker cannot reliably 6452*** create shared libraries on Solaris systems. Therefore, libtool 6453*** is disabling shared libraries support. We urge you to upgrade GNU 6454*** binutils to release 2.9.1 or newer. Another option is to modify 6455*** your PATH or compiler configuration so that the native linker is 6456*** used, and then restart. 6457 6458EOF 6459 elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then 6460 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' 6461 _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' 6462 else 6463 _LT_AC_TAGVAR(ld_shlibs, $1)=no 6464 fi 6465 ;; 6466 6467 sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) 6468 case `$LD -v 2>&1` in 6469 *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) 6470 _LT_AC_TAGVAR(ld_shlibs, $1)=no 6471 cat <<_LT_EOF 1>&2 6472 6473*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not 6474*** reliably create shared libraries on SCO systems. Therefore, libtool 6475*** is disabling shared libraries support. We urge you to upgrade GNU 6476*** binutils to release 2.16.91.0.3 or newer. Another option is to modify 6477*** your PATH or compiler configuration so that the native linker is 6478*** used, and then restart. 6479 6480_LT_EOF 6481 ;; 6482 *) 6483 if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then 6484 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' 6485 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' 6486 _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' 6487 else 6488 _LT_AC_TAGVAR(ld_shlibs, $1)=no 6489 fi 6490 ;; 6491 esac 6492 ;; 6493 6494 sunos4*) 6495 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' 6496 wlarc= 6497 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 6498 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6499 ;; 6500 6501 *) 6502 if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then 6503 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' 6504 _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' 6505 else 6506 _LT_AC_TAGVAR(ld_shlibs, $1)=no 6507 fi 6508 ;; 6509 esac 6510 6511 if test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no; then 6512 runpath_var= 6513 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= 6514 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= 6515 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= 6516 fi 6517 else 6518 # PORTME fill in a description of your system's linker (not GNU ld) 6519 case $host_os in 6520 aix3*) 6521 _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported 6522 _LT_AC_TAGVAR(always_export_symbols, $1)=yes 6523 _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' 6524 # Note: this linker hardcodes the directories in LIBPATH if there 6525 # are no directories specified by -L. 6526 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes 6527 if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then 6528 # Neither direct hardcoding nor static linking is supported with a 6529 # broken collect2. 6530 _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported 6531 fi 6532 ;; 6533 6534 aix4* | aix5*) 6535 if test "$host_cpu" = ia64; then 6536 # On IA64, the linker does run time linking by default, so we don't 6537 # have to do anything special. 6538 aix_use_runtimelinking=no 6539 exp_sym_flag='-Bexport' 6540 no_entry_flag="" 6541 else 6542 # If we're using GNU nm, then we don't want the "-C" option. 6543 # -C means demangle to AIX nm, but means don't demangle with GNU nm 6544 if $NM -V 2>&1 | grep 'GNU' > /dev/null; then 6545 _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' 6546 else 6547 _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' 6548 fi 6549 aix_use_runtimelinking=no 6550 6551 # Test if we are trying to use run time linking or normal 6552 # AIX style linking. If -brtl is somewhere in LDFLAGS, we 6553 # need to do runtime linking. 6554 case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*) 6555 for ld_flag in $LDFLAGS; do 6556 if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then 6557 aix_use_runtimelinking=yes 6558 break 6559 fi 6560 done 6561 ;; 6562 esac 6563 6564 exp_sym_flag='-bexport' 6565 no_entry_flag='-bnoentry' 6566 fi 6567 6568 # When large executables or shared objects are built, AIX ld can 6569 # have problems creating the table of contents. If linking a library 6570 # or program results in "error TOC overflow" add -mminimal-toc to 6571 # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not 6572 # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. 6573 6574 _LT_AC_TAGVAR(archive_cmds, $1)='' 6575 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 6576 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' 6577 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes 6578 6579 if test "$GCC" = yes; then 6580 case $host_os in aix4.[[012]]|aix4.[[012]].*) 6581 # We only want to do this on AIX 4.2 and lower, the check 6582 # below for broken collect2 doesn't work under 4.3+ 6583 collect2name=`${CC} -print-prog-name=collect2` 6584 if test -f "$collect2name" && \ 6585 strings "$collect2name" | grep resolve_lib_name >/dev/null 6586 then 6587 # We have reworked collect2 6588 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 6589 else 6590 # We have old collect2 6591 _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported 6592 # It fails to find uninstalled libraries when the uninstalled 6593 # path is not listed in the libpath. Setting hardcode_minus_L 6594 # to unsupported forces relinking 6595 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes 6596 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' 6597 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= 6598 fi 6599 ;; 6600 esac 6601 shared_flag='-shared' 6602 if test "$aix_use_runtimelinking" = yes; then 6603 shared_flag="$shared_flag "'${wl}-G' 6604 fi 6605 else 6606 # not using gcc 6607 if test "$host_cpu" = ia64; then 6608 # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release 6609 # chokes on -Wl,-G. The following line is correct: 6610 shared_flag='-G' 6611 else 6612 if test "$aix_use_runtimelinking" = yes; then 6613 shared_flag='${wl}-G' 6614 else 6615 shared_flag='${wl}-bM:SRE' 6616 fi 6617 fi 6618 fi 6619 6620 # It seems that -bexpall does not export symbols beginning with 6621 # underscore (_), so it is better to generate a list of symbols to export. 6622 _LT_AC_TAGVAR(always_export_symbols, $1)=yes 6623 if test "$aix_use_runtimelinking" = yes; then 6624 # Warning - without using the other runtime loading flags (-brtl), 6625 # -berok will link without error, but may produce a broken library. 6626 _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' 6627 # Determine the default libpath from the value encoded in an empty executable. 6628 _LT_AC_SYS_LIBPATH_AIX 6629 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" 6630 _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" 6631 else 6632 if test "$host_cpu" = ia64; then 6633 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' 6634 _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" 6635 _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" 6636 else 6637 # Determine the default libpath from the value encoded in an empty executable. 6638 _LT_AC_SYS_LIBPATH_AIX 6639 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" 6640 # Warning - without using the other run time loading flags, 6641 # -berok will link without error, but may produce a broken library. 6642 _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' 6643 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' 6644 # Exported symbols can be pulled into shared objects from archives 6645 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience' 6646 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes 6647 # This is similar to how AIX traditionally builds its shared libraries. 6648 _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' 6649 fi 6650 fi 6651 ;; 6652 6653 amigaos*) 6654 _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)' 6655 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' 6656 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes 6657 # see comment about different semantics on the GNU ld section 6658 _LT_AC_TAGVAR(ld_shlibs, $1)=no 6659 ;; 6660 6661 bsdi[[45]]*) 6662 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic 6663 ;; 6664 6665 cygwin* | mingw* | pw32*) 6666 # When not using gcc, we currently assume that we are using 6667 # Microsoft Visual C++. 6668 # hardcode_libdir_flag_spec is actually meaningless, as there is 6669 # no search path for DLLs. 6670 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' 6671 _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported 6672 # Tell ltmain to make .lib files, not .a files. 6673 libext=lib 6674 # Tell ltmain to make .dll files, not .so files. 6675 shrext_cmds=".dll" 6676 # FIXME: Setting linknames here is a bad hack. 6677 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' 6678 # The linker will automatically build a .lib file if we build a DLL. 6679 _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='true' 6680 # FIXME: Should let the user specify the lib program. 6681 _LT_AC_TAGVAR(old_archive_cmds, $1)='lib /OUT:$oldlib$oldobjs$old_deplibs' 6682 _LT_AC_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`' 6683 _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes 6684 ;; 6685 6686 darwin* | rhapsody*) 6687 case $host_os in 6688 rhapsody* | darwin1.[[012]]) 6689 _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress' 6690 ;; 6691 *) # Darwin 1.3 on 6692 if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then 6693 _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' 6694 else 6695 case ${MACOSX_DEPLOYMENT_TARGET} in 6696 10.[[012]]) 6697 _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' 6698 ;; 6699 10.*) 6700 _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup' 6701 ;; 6702 esac 6703 fi 6704 ;; 6705 esac 6706 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no 6707 _LT_AC_TAGVAR(hardcode_direct, $1)=no 6708 _LT_AC_TAGVAR(hardcode_automatic, $1)=yes 6709 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported 6710 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' 6711 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes 6712 if test "$GCC" = yes ; then 6713 output_verbose_link_cmd='echo' 6714 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' 6715 _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' 6716 # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds 6717 _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}' 6718 _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}' 6719 else 6720 case $cc_basename in 6721 xlc*) 6722 output_verbose_link_cmd='echo' 6723 _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' 6724 _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' 6725 # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds 6726 _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}' 6727 _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}' 6728 ;; 6729 *) 6730 _LT_AC_TAGVAR(ld_shlibs, $1)=no 6731 ;; 6732 esac 6733 fi 6734 ;; 6735 6736 dgux*) 6737 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' 6738 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' 6739 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6740 ;; 6741 6742 freebsd1*) 6743 _LT_AC_TAGVAR(ld_shlibs, $1)=no 6744 ;; 6745 6746 # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor 6747 # support. Future versions do this automatically, but an explicit c++rt0.o 6748 # does not break anything, and helps significantly (at the cost of a little 6749 # extra space). 6750 freebsd2.2*) 6751 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' 6752 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' 6753 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 6754 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6755 ;; 6756 6757 # Unfortunately, older versions of FreeBSD 2 do not have this feature. 6758 freebsd2*) 6759 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' 6760 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 6761 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes 6762 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6763 ;; 6764 6765 # FreeBSD 3 and greater uses gcc -shared to do shared libraries. 6766 freebsd* | kfreebsd*-gnu | dragonfly*) 6767 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' 6768 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' 6769 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 6770 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6771 ;; 6772 6773 hpux9*) 6774 if test "$GCC" = yes; then 6775 _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' 6776 else 6777 _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' 6778 fi 6779 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' 6780 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 6781 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 6782 6783 # hardcode_minus_L: Not really in the search PATH, 6784 # but as the default location of the library. 6785 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes 6786 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' 6787 ;; 6788 6789 hpux10*) 6790 if test "$GCC" = yes -a "$with_gnu_ld" = no; then 6791 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' 6792 else 6793 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' 6794 fi 6795 if test "$with_gnu_ld" = no; then 6796 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' 6797 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 6798 6799 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 6800 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' 6801 6802 # hardcode_minus_L: Not really in the search PATH, 6803 # but as the default location of the library. 6804 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes 6805 fi 6806 ;; 6807 6808 hpux11*) 6809 if test "$GCC" = yes -a "$with_gnu_ld" = no; then 6810 case $host_cpu in 6811 hppa*64*) 6812 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' 6813 ;; 6814 ia64*) 6815 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' 6816 ;; 6817 *) 6818 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' 6819 ;; 6820 esac 6821 else 6822 case $host_cpu in 6823 hppa*64*) 6824 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' 6825 ;; 6826 ia64*) 6827 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' 6828 ;; 6829 *) 6830 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' 6831 ;; 6832 esac 6833 fi 6834 if test "$with_gnu_ld" = no; then 6835 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' 6836 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 6837 6838 case $host_cpu in 6839 hppa*64*|ia64*) 6840 _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' 6841 _LT_AC_TAGVAR(hardcode_direct, $1)=no 6842 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6843 ;; 6844 *) 6845 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 6846 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' 6847 6848 # hardcode_minus_L: Not really in the search PATH, 6849 # but as the default location of the library. 6850 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes 6851 ;; 6852 esac 6853 fi 6854 ;; 6855 6856 irix5* | irix6* | nonstopux*) 6857 if test "$GCC" = yes; then 6858 _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' 6859 else 6860 _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' 6861 _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir' 6862 fi 6863 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' 6864 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 6865 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes 6866 ;; 6867 6868 netbsd*) 6869 if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then 6870 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out 6871 else 6872 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF 6873 fi 6874 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' 6875 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 6876 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6877 ;; 6878 6879 newsos6) 6880 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' 6881 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 6882 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' 6883 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 6884 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6885 ;; 6886 6887 openbsd*) 6888 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 6889 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6890 if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then 6891 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' 6892 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' 6893 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' 6894 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' 6895 else 6896 case $host_os in 6897 openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) 6898 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' 6899 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' 6900 ;; 6901 *) 6902 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' 6903 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' 6904 ;; 6905 esac 6906 fi 6907 ;; 6908 6909 os2*) 6910 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' 6911 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes 6912 _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported 6913 _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' 6914 _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' 6915 ;; 6916 6917 osf3*) 6918 if test "$GCC" = yes; then 6919 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' 6920 _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' 6921 else 6922 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' 6923 _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' 6924 fi 6925 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' 6926 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 6927 ;; 6928 6929 osf4* | osf5*) # as osf3* with the addition of -msym flag 6930 if test "$GCC" = yes; then 6931 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' 6932 _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' 6933 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' 6934 else 6935 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' 6936 _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' 6937 _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~ 6938 $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' 6939 6940 # Both c and cxx compiler support -rpath directly 6941 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' 6942 fi 6943 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: 6944 ;; 6945 6946 solaris*) 6947 _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text' 6948 if test "$GCC" = yes; then 6949 wlarc='${wl}' 6950 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' 6951 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ 6952 $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' 6953 else 6954 wlarc='' 6955 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' 6956 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ 6957 $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' 6958 fi 6959 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' 6960 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6961 case $host_os in 6962 solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; 6963 *) 6964 # The compiler driver will combine linker options so we 6965 # cannot just pass the convience library names through 6966 # without $wl, iff we do not link with $LD. 6967 # Luckily, gcc supports the same syntax we need for Sun Studio. 6968 # Supported since Solaris 2.6 (maybe 2.5.1?) 6969 case $wlarc in 6970 '') 6971 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; 6972 *) 6973 _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' ;; 6974 esac ;; 6975 esac 6976 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes 6977 ;; 6978 6979 sunos4*) 6980 if test "x$host_vendor" = xsequent; then 6981 # Use $CC to link under sequent, because it throws in some extra .o 6982 # files that make .init and .fini sections work. 6983 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' 6984 else 6985 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' 6986 fi 6987 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' 6988 _LT_AC_TAGVAR(hardcode_direct, $1)=yes 6989 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes 6990 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 6991 ;; 6992 6993 sysv4) 6994 case $host_vendor in 6995 sni) 6996 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' 6997 _LT_AC_TAGVAR(hardcode_direct, $1)=yes # is this really true??? 6998 ;; 6999 siemens) 7000 ## LD is ld it makes a PLAMLIB 7001 ## CC just makes a GrossModule. 7002 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' 7003 _LT_AC_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' 7004 _LT_AC_TAGVAR(hardcode_direct, $1)=no 7005 ;; 7006 motorola) 7007 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' 7008 _LT_AC_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie 7009 ;; 7010 esac 7011 runpath_var='LD_RUN_PATH' 7012 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 7013 ;; 7014 7015 sysv4.3*) 7016 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' 7017 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 7018 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' 7019 ;; 7020 7021 sysv4*MP*) 7022 if test -d /usr/nec; then 7023 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' 7024 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 7025 runpath_var=LD_RUN_PATH 7026 hardcode_runpath_var=yes 7027 _LT_AC_TAGVAR(ld_shlibs, $1)=yes 7028 fi 7029 ;; 7030 7031 sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7*) 7032 _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' 7033 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no 7034 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 7035 runpath_var='LD_RUN_PATH' 7036 7037 if test "$GCC" = yes; then 7038 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' 7039 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' 7040 else 7041 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' 7042 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' 7043 fi 7044 ;; 7045 7046 sysv5* | sco3.2v5* | sco5v6*) 7047 # Note: We can NOT use -z defs as we might desire, because we do not 7048 # link with -lc, and that would cause any symbols used from libc to 7049 # always be unresolved, which means just about no library would 7050 # ever link correctly. If we're not using GNU ld we use -z text 7051 # though, which does catch some bad symbols but isn't as heavy-handed 7052 # as -z defs. 7053 _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' 7054 _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' 7055 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no 7056 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 7057 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' 7058 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' 7059 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes 7060 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' 7061 runpath_var='LD_RUN_PATH' 7062 7063 if test "$GCC" = yes; then 7064 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' 7065 _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' 7066 else 7067 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' 7068 _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' 7069 fi 7070 ;; 7071 7072 uts4*) 7073 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' 7074 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' 7075 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no 7076 ;; 7077 7078 *) 7079 _LT_AC_TAGVAR(ld_shlibs, $1)=no 7080 ;; 7081 esac 7082 fi 7083]) 7084AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) 7085test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no 7086 7087# 7088# Do we need to explicitly link libc? 7089# 7090case "x$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)" in 7091x|xyes) 7092 # Assume -lc should be added 7093 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes 7094 7095 if test "$enable_shared" = yes && test "$GCC" = yes; then 7096 case $_LT_AC_TAGVAR(archive_cmds, $1) in 7097 *'~'*) 7098 # FIXME: we may have to deal with multi-command sequences. 7099 ;; 7100 '$CC '*) 7101 # Test whether the compiler implicitly links with -lc since on some 7102 # systems, -lgcc has to come before -lc. If gcc already passes -lc 7103 # to ld, don't add -lc before -lgcc. 7104 AC_MSG_CHECKING([whether -lc should be explicitly linked in]) 7105 $rm conftest* 7106 printf "$lt_simple_compile_test_code" > conftest.$ac_ext 7107 7108 if AC_TRY_EVAL(ac_compile) 2>conftest.err; then 7109 soname=conftest 7110 lib=conftest 7111 libobjs=conftest.$ac_objext 7112 deplibs= 7113 wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) 7114 pic_flag=$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) 7115 compiler_flags=-v 7116 linker_flags=-v 7117 verstring= 7118 output_objdir=. 7119 libname=conftest 7120 lt_save_allow_undefined_flag=$_LT_AC_TAGVAR(allow_undefined_flag, $1) 7121 _LT_AC_TAGVAR(allow_undefined_flag, $1)= 7122 if AC_TRY_EVAL(_LT_AC_TAGVAR(archive_cmds, $1) 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 7123 then 7124 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no 7125 else 7126 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes 7127 fi 7128 _LT_AC_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag 7129 else 7130 cat conftest.err 1>&5 7131 fi 7132 $rm conftest* 7133 AC_MSG_RESULT([$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)]) 7134 ;; 7135 esac 7136 fi 7137 ;; 7138esac 7139]) 7140m4trace:acinclude.m4:6876: -1- AC_DEFUN([_LT_AC_FILE_LTDLL_C], [ 7141# /* ltdll.c starts here */ 7142# #define WIN32_LEAN_AND_MEAN 7143# #include <windows.h> 7144# #undef WIN32_LEAN_AND_MEAN 7145# #include <stdio.h> 7146# 7147# #ifndef __CYGWIN__ 7148# # ifdef __CYGWIN32__ 7149# # define __CYGWIN__ __CYGWIN32__ 7150# # endif 7151# #endif 7152# 7153# #ifdef __cplusplus 7154# extern "C" { 7155# #endif 7156# BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved); 7157# #ifdef __cplusplus 7158# } 7159# #endif 7160# 7161# #ifdef __CYGWIN__ 7162# #include <cygwin/cygwin_dll.h> 7163# DECLARE_CYGWIN_DLL( DllMain ); 7164# #endif 7165# HINSTANCE __hDllInstance_base; 7166# 7167# BOOL APIENTRY 7168# DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved) 7169# { 7170# __hDllInstance_base = hInst; 7171# return TRUE; 7172# } 7173# /* ltdll.c ends here */ 7174]) 7175m4trace:acinclude.m4:6915: -1- AC_DEFUN([_LT_AC_TAGVAR], [ifelse([$2], [], [$1], [$1_$2])]) 7176m4trace:acinclude.m4:6919: -1- AC_DEFUN([AM_PROG_LIBTOOL], [AC_PROG_LIBTOOL]) 7177m4trace:acinclude.m4:6920: -1- AC_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) 7178m4trace:acinclude.m4:6921: -1- AC_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) 7179m4trace:acinclude.m4:6922: -1- AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) 7180m4trace:acinclude.m4:6923: -1- AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) 7181m4trace:acinclude.m4:6924: -1- AC_DEFUN([AM_PROG_LD], [AC_PROG_LD]) 7182m4trace:acinclude.m4:6925: -1- AC_DEFUN([AM_PROG_NM], [AC_PROG_NM]) 7183m4trace:acinclude.m4:6930: -1- AC_DEFUN([LT_AC_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj, no) 7184 test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" 7185 AC_SUBST(GCJFLAGS) 7186]) 7187m4trace:acinclude.m4:6936: -1- AC_DEFUN([LT_AC_PROG_RC], [AC_CHECK_TOOL(RC, windres, no) 7188]) 7189m4trace:acinclude.m4:6950: -1- AC_DEFUN([LT_AC_PROG_SED], [AC_MSG_CHECKING([for a sed that does not truncate output]) 7190AC_CACHE_VAL(lt_cv_path_SED, 7191[# Loop through the user's path and test for sed and gsed. 7192# Then use that list of sed's as ones to test for truncation. 7193as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 7194for as_dir in $PATH 7195do 7196 IFS=$as_save_IFS 7197 test -z "$as_dir" && as_dir=. 7198 for lt_ac_prog in sed gsed; do 7199 for ac_exec_ext in '' $ac_executable_extensions; do 7200 if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then 7201 lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" 7202 fi 7203 done 7204 done 7205done 7206lt_ac_max=0 7207lt_ac_count=0 7208# Add /usr/xpg4/bin/sed as it is typically found on Solaris 7209# along with /bin/sed that truncates output. 7210for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do 7211 test ! -f $lt_ac_sed && continue 7212 cat /dev/null > conftest.in 7213 lt_ac_count=0 7214 echo $ECHO_N "0123456789$ECHO_C" >conftest.in 7215 # Check for GNU sed and select it if it is found. 7216 if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then 7217 lt_cv_path_SED=$lt_ac_sed 7218 break 7219 fi 7220 while true; do 7221 cat conftest.in conftest.in >conftest.tmp 7222 mv conftest.tmp conftest.in 7223 cp conftest.in conftest.nl 7224 echo >>conftest.nl 7225 $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break 7226 cmp -s conftest.out conftest.nl || break 7227 # 10000 chars as input seems more than enough 7228 test $lt_ac_count -gt 10 && break 7229 lt_ac_count=`expr $lt_ac_count + 1` 7230 if test $lt_ac_count -gt $lt_ac_max; then 7231 lt_ac_max=$lt_ac_count 7232 lt_cv_path_SED=$lt_ac_sed 7233 fi 7234 done 7235done 7236]) 7237SED=$lt_cv_path_SED 7238AC_MSG_RESULT([$SED]) 7239]) 7240m4trace:acinclude.m4:7025: -1- AC_DEFUN([AM_PATH_LIBGCRYPT], [ AC_ARG_WITH(libgcrypt-prefix, 7241 AC_HELP_STRING([--with-libgcrypt-prefix=PFX], 7242 [prefix where LIBGCRYPT is installed (optional)]), 7243 libgcrypt_config_prefix="$withval", libgcrypt_config_prefix="") 7244 if test x$libgcrypt_config_prefix != x ; then 7245 if test x${LIBGCRYPT_CONFIG+set} != xset ; then 7246 LIBGCRYPT_CONFIG=$libgcrypt_config_prefix/bin/libgcrypt-config 7247 fi 7248 fi 7249 7250 AC_PATH_PROG(LIBGCRYPT_CONFIG, libgcrypt-config, no) 7251 tmp=ifelse([$1], ,1:1.2.0,$1) 7252 if echo "$tmp" | grep ':' >/dev/null 2>/dev/null ; then 7253 req_libgcrypt_api=`echo "$tmp" | sed 's/\(.*\):\(.*\)/\1/'` 7254 min_libgcrypt_version=`echo "$tmp" | sed 's/\(.*\):\(.*\)/\2/'` 7255 else 7256 req_libgcrypt_api=0 7257 min_libgcrypt_version="$tmp" 7258 fi 7259 7260 AC_MSG_CHECKING(for LIBGCRYPT - version >= $min_libgcrypt_version) 7261 ok=no 7262 if test "$LIBGCRYPT_CONFIG" != "no" ; then 7263 req_major=`echo $min_libgcrypt_version | \ 7264 sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\1/'` 7265 req_minor=`echo $min_libgcrypt_version | \ 7266 sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\2/'` 7267 req_micro=`echo $min_libgcrypt_version | \ 7268 sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\3/'` 7269 libgcrypt_config_version=`$LIBGCRYPT_CONFIG --version` 7270 major=`echo $libgcrypt_config_version | \ 7271 sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\).*/\1/'` 7272 minor=`echo $libgcrypt_config_version | \ 7273 sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\).*/\2/'` 7274 micro=`echo $libgcrypt_config_version | \ 7275 sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\).*/\3/'` 7276 if test "$major" -gt "$req_major"; then 7277 ok=yes 7278 else 7279 if test "$major" -eq "$req_major"; then 7280 if test "$minor" -gt "$req_minor"; then 7281 ok=yes 7282 else 7283 if test "$minor" -eq "$req_minor"; then 7284 if test "$micro" -ge "$req_micro"; then 7285 ok=yes 7286 fi 7287 fi 7288 fi 7289 fi 7290 fi 7291 fi 7292 if test $ok = yes; then 7293 AC_MSG_RESULT([yes ($libgcrypt_config_version)]) 7294 else 7295 AC_MSG_RESULT(no) 7296 fi 7297 if test $ok = yes; then 7298 # If we have a recent libgcrypt, we should also check that the 7299 # API is compatible 7300 if test "$req_libgcrypt_api" -gt 0 ; then 7301 tmp=`$LIBGCRYPT_CONFIG --api-version 2>/dev/null || echo 0` 7302 if test "$tmp" -gt 0 ; then 7303 AC_MSG_CHECKING([LIBGCRYPT API version]) 7304 if test "$req_libgcrypt_api" -eq "$tmp" ; then 7305 AC_MSG_RESULT([okay]) 7306 else 7307 ok=no 7308 AC_MSG_RESULT([does not match. want=$req_libgcrypt_api got=$tmp]) 7309 fi 7310 fi 7311 fi 7312 fi 7313 if test $ok = yes; then 7314 LIBGCRYPT_CFLAGS=`$LIBGCRYPT_CONFIG --cflags` 7315 LIBGCRYPT_LIBS=`$LIBGCRYPT_CONFIG --libs` 7316 ifelse([$2], , :, [$2]) 7317 else 7318 LIBGCRYPT_CFLAGS="" 7319 LIBGCRYPT_LIBS="" 7320 ifelse([$3], , :, [$3]) 7321 fi 7322 AC_SUBST(LIBGCRYPT_CFLAGS) 7323 AC_SUBST(LIBGCRYPT_LIBS) 7324]) 7325m4trace:configure.ac:2: -1- m4_pattern_forbid([^_?A[CHUM]_]) 7326m4trace:configure.ac:2: -1- m4_pattern_forbid([_AC_]) 7327m4trace:configure.ac:2: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS']) 7328m4trace:configure.ac:2: -1- m4_pattern_allow([^AS_FLAGS$]) 7329m4trace:configure.ac:2: -1- m4_pattern_forbid([^_?m4_]) 7330m4trace:configure.ac:2: -1- m4_pattern_forbid([^dnl$]) 7331m4trace:configure.ac:2: -1- m4_pattern_forbid([^_?AS_]) 7332m4trace:configure.ac:2: -1- m4_pattern_allow([^SHELL$]) 7333m4trace:configure.ac:2: -1- m4_pattern_allow([^PATH_SEPARATOR$]) 7334m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_NAME$]) 7335m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_TARNAME$]) 7336m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_VERSION$]) 7337m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_STRING$]) 7338m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$]) 7339m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_URL$]) 7340m4trace:configure.ac:2: -1- m4_pattern_allow([^exec_prefix$]) 7341m4trace:configure.ac:2: -1- m4_pattern_allow([^prefix$]) 7342m4trace:configure.ac:2: -1- m4_pattern_allow([^program_transform_name$]) 7343m4trace:configure.ac:2: -1- m4_pattern_allow([^bindir$]) 7344m4trace:configure.ac:2: -1- m4_pattern_allow([^sbindir$]) 7345m4trace:configure.ac:2: -1- m4_pattern_allow([^libexecdir$]) 7346m4trace:configure.ac:2: -1- m4_pattern_allow([^datarootdir$]) 7347m4trace:configure.ac:2: -1- m4_pattern_allow([^datadir$]) 7348m4trace:configure.ac:2: -1- m4_pattern_allow([^sysconfdir$]) 7349m4trace:configure.ac:2: -1- m4_pattern_allow([^sharedstatedir$]) 7350m4trace:configure.ac:2: -1- m4_pattern_allow([^localstatedir$]) 7351m4trace:configure.ac:2: -1- m4_pattern_allow([^includedir$]) 7352m4trace:configure.ac:2: -1- m4_pattern_allow([^oldincludedir$]) 7353m4trace:configure.ac:2: -1- m4_pattern_allow([^docdir$]) 7354m4trace:configure.ac:2: -1- m4_pattern_allow([^infodir$]) 7355m4trace:configure.ac:2: -1- m4_pattern_allow([^htmldir$]) 7356m4trace:configure.ac:2: -1- m4_pattern_allow([^dvidir$]) 7357m4trace:configure.ac:2: -1- m4_pattern_allow([^pdfdir$]) 7358m4trace:configure.ac:2: -1- m4_pattern_allow([^psdir$]) 7359m4trace:configure.ac:2: -1- m4_pattern_allow([^libdir$]) 7360m4trace:configure.ac:2: -1- m4_pattern_allow([^localedir$]) 7361m4trace:configure.ac:2: -1- m4_pattern_allow([^mandir$]) 7362m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_NAME$]) 7363m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_TARNAME$]) 7364m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_VERSION$]) 7365m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_STRING$]) 7366m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$]) 7367m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_URL$]) 7368m4trace:configure.ac:2: -1- m4_pattern_allow([^DEFS$]) 7369m4trace:configure.ac:2: -1- m4_pattern_allow([^ECHO_C$]) 7370m4trace:configure.ac:2: -1- m4_pattern_allow([^ECHO_N$]) 7371m4trace:configure.ac:2: -1- m4_pattern_allow([^ECHO_T$]) 7372m4trace:configure.ac:2: -1- m4_pattern_allow([^LIBS$]) 7373m4trace:configure.ac:2: -1- m4_pattern_allow([^build_alias$]) 7374m4trace:configure.ac:2: -1- m4_pattern_allow([^host_alias$]) 7375m4trace:configure.ac:2: -1- m4_pattern_allow([^target_alias$]) 7376m4trace:configure.ac:3: -1- AM_INIT_AUTOMAKE([LibVNCServer], [0.9.9]) 7377m4trace:configure.ac:3: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$]) 7378m4trace:configure.ac:3: -1- AM_SET_CURRENT_AUTOMAKE_VERSION 7379m4trace:configure.ac:3: -1- AM_AUTOMAKE_VERSION([1.11.6]) 7380m4trace:configure.ac:3: -1- _AM_AUTOCONF_VERSION([2.69]) 7381m4trace:configure.ac:3: -1- m4_pattern_allow([^INSTALL_PROGRAM$]) 7382m4trace:configure.ac:3: -1- m4_pattern_allow([^INSTALL_SCRIPT$]) 7383m4trace:configure.ac:3: -1- m4_pattern_allow([^INSTALL_DATA$]) 7384m4trace:configure.ac:3: -1- m4_pattern_allow([^am__isrc$]) 7385m4trace:configure.ac:3: -1- _AM_SUBST_NOTMAKE([am__isrc]) 7386m4trace:configure.ac:3: -1- m4_pattern_allow([^CYGPATH_W$]) 7387m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE$]) 7388m4trace:configure.ac:3: -1- m4_pattern_allow([^VERSION$]) 7389m4trace:configure.ac:3: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) 7390 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])]) 7391m4trace:configure.ac:3: -2- _AM_MANGLE_OPTION([no-define]) 7392m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE$]) 7393m4trace:configure.ac:3: -1- m4_pattern_allow([^VERSION$]) 7394m4trace:configure.ac:3: -1- AM_SANITY_CHECK 7395m4trace:configure.ac:3: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) 7396m4trace:configure.ac:3: -1- AM_MISSING_HAS_RUN 7397m4trace:configure.ac:3: -1- AM_AUX_DIR_EXPAND 7398m4trace:configure.ac:3: -1- m4_pattern_allow([^ACLOCAL$]) 7399m4trace:configure.ac:3: -1- AM_MISSING_PROG([AUTOCONF], [autoconf]) 7400m4trace:configure.ac:3: -1- m4_pattern_allow([^AUTOCONF$]) 7401m4trace:configure.ac:3: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) 7402m4trace:configure.ac:3: -1- m4_pattern_allow([^AUTOMAKE$]) 7403m4trace:configure.ac:3: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader]) 7404m4trace:configure.ac:3: -1- m4_pattern_allow([^AUTOHEADER$]) 7405m4trace:configure.ac:3: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo]) 7406m4trace:configure.ac:3: -1- m4_pattern_allow([^MAKEINFO$]) 7407m4trace:configure.ac:3: -1- AM_PROG_INSTALL_SH 7408m4trace:configure.ac:3: -1- m4_pattern_allow([^install_sh$]) 7409m4trace:configure.ac:3: -1- AM_PROG_INSTALL_STRIP 7410m4trace:configure.ac:3: -1- m4_pattern_allow([^STRIP$]) 7411m4trace:configure.ac:3: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$]) 7412m4trace:configure.ac:3: -1- AM_PROG_MKDIR_P 7413m4trace:configure.ac:3: -1- m4_pattern_allow([^MKDIR_P$]) 7414m4trace:configure.ac:3: -1- m4_pattern_allow([^mkdir_p$]) 7415m4trace:configure.ac:3: -1- m4_pattern_allow([^AWK$]) 7416m4trace:configure.ac:3: -1- m4_pattern_allow([^SET_MAKE$]) 7417m4trace:configure.ac:3: -1- AM_SET_LEADING_DOT 7418m4trace:configure.ac:3: -1- m4_pattern_allow([^am__leading_dot$]) 7419m4trace:configure.ac:3: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], 7420 [_AM_PROG_TAR([v7])])]) 7421m4trace:configure.ac:3: -2- _AM_MANGLE_OPTION([tar-ustar]) 7422m4trace:configure.ac:3: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])]) 7423m4trace:configure.ac:3: -2- _AM_MANGLE_OPTION([tar-pax]) 7424m4trace:configure.ac:3: -1- _AM_PROG_TAR([v7]) 7425m4trace:configure.ac:3: -1- m4_pattern_allow([^AMTAR$]) 7426m4trace:configure.ac:3: -1- m4_pattern_allow([^am__tar$]) 7427m4trace:configure.ac:3: -1- m4_pattern_allow([^am__untar$]) 7428m4trace:configure.ac:3: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC], 7429 [_AM_DEPENDENCIES(CC)], 7430 [define([AC_PROG_CC], 7431 defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl 7432AC_PROVIDE_IFELSE([AC_PROG_CXX], 7433 [_AM_DEPENDENCIES(CXX)], 7434 [define([AC_PROG_CXX], 7435 defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl 7436AC_PROVIDE_IFELSE([AC_PROG_OBJC], 7437 [_AM_DEPENDENCIES(OBJC)], 7438 [define([AC_PROG_OBJC], 7439 defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl 7440]) 7441m4trace:configure.ac:3: -2- _AM_MANGLE_OPTION([no-dependencies]) 7442m4trace:configure.ac:3: -1- _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])]) 7443m4trace:configure.ac:3: -2- _AM_MANGLE_OPTION([silent-rules]) 7444m4trace:configure.ac:4: -1- AM_SILENT_RULES([yes]) 7445m4trace:configure.ac:4: -1- m4_pattern_allow([^AM_V$]) 7446m4trace:configure.ac:4: -1- AM_SUBST_NOTMAKE([AM_V]) 7447m4trace:configure.ac:4: -1- _AM_SUBST_NOTMAKE([AM_V]) 7448m4trace:configure.ac:4: -1- m4_pattern_allow([^AM_DEFAULT_V$]) 7449m4trace:configure.ac:4: -1- AM_SUBST_NOTMAKE([AM_DEFAULT_V]) 7450m4trace:configure.ac:4: -1- _AM_SUBST_NOTMAKE([AM_DEFAULT_V]) 7451m4trace:configure.ac:4: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$]) 7452m4trace:configure.ac:4: -1- m4_pattern_allow([^AM_BACKSLASH$]) 7453m4trace:configure.ac:4: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH]) 7454m4trace:configure.ac:5: -1- AM_CONFIG_HEADER([rfbconfig.h]) 7455m4trace:configure.ac:5: -1- _m4_warn([obsolete], [The macro `AM_CONFIG_HEADER' is obsolete. 7456You should run autoupdate.], [/usr/share/aclocal-1.11/header.m4:12: AM_CONFIG_HEADER is expanded from... 7457configure.ac:5: the top level]) 7458m4trace:configure.ac:6: -1- AX_PREFIX_CONFIG_H([rfb/rfbconfig.h]) 7459m4trace:configure.ac:9: -1- m4_pattern_allow([^CC$]) 7460m4trace:configure.ac:9: -1- m4_pattern_allow([^CFLAGS$]) 7461m4trace:configure.ac:9: -1- m4_pattern_allow([^LDFLAGS$]) 7462m4trace:configure.ac:9: -1- m4_pattern_allow([^LIBS$]) 7463m4trace:configure.ac:9: -1- m4_pattern_allow([^CPPFLAGS$]) 7464m4trace:configure.ac:9: -1- m4_pattern_allow([^CC$]) 7465m4trace:configure.ac:9: -1- m4_pattern_allow([^CC$]) 7466m4trace:configure.ac:9: -1- m4_pattern_allow([^CC$]) 7467m4trace:configure.ac:9: -1- m4_pattern_allow([^CC$]) 7468m4trace:configure.ac:9: -1- m4_pattern_allow([^ac_ct_CC$]) 7469m4trace:configure.ac:9: -1- m4_pattern_allow([^EXEEXT$]) 7470m4trace:configure.ac:9: -1- m4_pattern_allow([^OBJEXT$]) 7471m4trace:configure.ac:9: -1- _AM_DEPENDENCIES([CC]) 7472m4trace:configure.ac:9: -1- AM_SET_DEPDIR 7473m4trace:configure.ac:9: -1- m4_pattern_allow([^DEPDIR$]) 7474m4trace:configure.ac:9: -1- AM_OUTPUT_DEPENDENCY_COMMANDS 7475m4trace:configure.ac:9: -1- AM_MAKE_INCLUDE 7476m4trace:configure.ac:9: -1- m4_pattern_allow([^am__include$]) 7477m4trace:configure.ac:9: -1- m4_pattern_allow([^am__quote$]) 7478m4trace:configure.ac:9: -1- AM_DEP_TRACK 7479m4trace:configure.ac:9: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) 7480m4trace:configure.ac:9: -1- m4_pattern_allow([^AMDEP_TRUE$]) 7481m4trace:configure.ac:9: -1- m4_pattern_allow([^AMDEP_FALSE$]) 7482m4trace:configure.ac:9: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE]) 7483m4trace:configure.ac:9: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE]) 7484m4trace:configure.ac:9: -1- m4_pattern_allow([^AMDEPBACKSLASH$]) 7485m4trace:configure.ac:9: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH]) 7486m4trace:configure.ac:9: -1- m4_pattern_allow([^am__nodep$]) 7487m4trace:configure.ac:9: -1- _AM_SUBST_NOTMAKE([am__nodep]) 7488m4trace:configure.ac:9: -1- m4_pattern_allow([^CCDEPMODE$]) 7489m4trace:configure.ac:9: -1- AM_CONDITIONAL([am__fastdepCC], [ 7490 test "x$enable_dependency_tracking" != xno \ 7491 && test "$am_cv_CC_dependencies_compiler_type" = gcc3]) 7492m4trace:configure.ac:9: -1- m4_pattern_allow([^am__fastdepCC_TRUE$]) 7493m4trace:configure.ac:9: -1- m4_pattern_allow([^am__fastdepCC_FALSE$]) 7494m4trace:configure.ac:9: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE]) 7495m4trace:configure.ac:9: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE]) 7496m4trace:configure.ac:10: -1- AM_PROG_CC_C_O 7497m4trace:configure.ac:10: -1- m4_pattern_allow([^NO_MINUS_C_MINUS_O$]) 7498m4trace:configure.ac:17: -1- m4_pattern_allow([^SET_MAKE$]) 7499m4trace:configure.ac:18: -1- AC_LIBTOOL_WIN32_DLL 7500m4trace:configure.ac:19: -1- AC_PROG_LIBTOOL 7501m4trace:configure.ac:19: -1- _AC_PROG_LIBTOOL 7502m4trace:configure.ac:19: -1- AC_LIBTOOL_SETUP 7503m4trace:configure.ac:19: -1- AC_ENABLE_SHARED 7504m4trace:configure.ac:19: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. 7505You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... 7506../../lib/autoconf/general.m4:1462: AC_ARG_ENABLE is expanded from... 7507acinclude.m4:2513: AC_ENABLE_SHARED is expanded from... 7508acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 7509acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 7510acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 7511configure.ac:19: the top level]) 7512m4trace:configure.ac:19: -1- AC_ENABLE_STATIC 7513m4trace:configure.ac:19: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. 7514You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... 7515../../lib/autoconf/general.m4:1462: AC_ARG_ENABLE is expanded from... 7516acinclude.m4:2552: AC_ENABLE_STATIC is expanded from... 7517acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 7518acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 7519acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 7520configure.ac:19: the top level]) 7521m4trace:configure.ac:19: -1- AC_ENABLE_FAST_INSTALL 7522m4trace:configure.ac:19: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. 7523You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... 7524../../lib/autoconf/general.m4:1462: AC_ARG_ENABLE is expanded from... 7525acinclude.m4:2591: AC_ENABLE_FAST_INSTALL is expanded from... 7526acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 7527acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 7528acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 7529configure.ac:19: the top level]) 7530m4trace:configure.ac:19: -1- m4_pattern_allow([^build$]) 7531m4trace:configure.ac:19: -1- m4_pattern_allow([^build_cpu$]) 7532m4trace:configure.ac:19: -1- m4_pattern_allow([^build_vendor$]) 7533m4trace:configure.ac:19: -1- m4_pattern_allow([^build_os$]) 7534m4trace:configure.ac:19: -1- m4_pattern_allow([^host$]) 7535m4trace:configure.ac:19: -1- m4_pattern_allow([^host_cpu$]) 7536m4trace:configure.ac:19: -1- m4_pattern_allow([^host_vendor$]) 7537m4trace:configure.ac:19: -1- m4_pattern_allow([^host_os$]) 7538m4trace:configure.ac:19: -1- AC_PROG_LD 7539m4trace:configure.ac:19: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. 7540You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... 7541../../lib/autoconf/general.m4:1481: AC_ARG_WITH is expanded from... 7542acinclude.m4:2732: AC_PROG_LD is expanded from... 7543acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 7544acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 7545acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 7546configure.ac:19: the top level]) 7547m4trace:configure.ac:19: -1- LT_AC_PROG_SED 7548m4trace:configure.ac:19: -1- AC_PROG_LD_GNU 7549m4trace:configure.ac:19: -1- AC_PROG_EGREP 7550m4trace:configure.ac:19: -1- m4_pattern_allow([^GREP$]) 7551m4trace:configure.ac:19: -1- m4_pattern_allow([^EGREP$]) 7552m4trace:configure.ac:19: -1- AC_PROG_LD_RELOAD_FLAG 7553m4trace:configure.ac:19: -1- AC_PROG_NM 7554m4trace:configure.ac:19: -1- m4_pattern_allow([^LN_S$]) 7555m4trace:configure.ac:19: -1- AC_DEPLIBS_CHECK_METHOD 7556m4trace:configure.ac:19: -1- AC_LIBTOOL_SYS_MAX_CMD_LEN 7557m4trace:configure.ac:19: -1- AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE 7558m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], []) 7559m4trace:configure.ac:19: -1- AC_LIBTOOL_OBJDIR 7560m4trace:configure.ac:19: -1- _LT_AC_SYS_COMPILER 7561m4trace:configure.ac:19: -1- _LT_AC_PROG_ECHO_BACKSLASH 7562m4trace:configure.ac:19: -1- _LT_AC_SHELL_INIT([ 7563# Check that we are running under the correct shell. 7564SHELL=${CONFIG_SHELL-/bin/sh} 7565 7566case X$ECHO in 7567X*--fallback-echo) 7568 # Remove one level of quotation (which was required for Make). 7569 ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','` 7570 ;; 7571esac 7572 7573echo=${ECHO-echo} 7574if test "X[$]1" = X--no-reexec; then 7575 # Discard the --no-reexec flag, and continue. 7576 shift 7577elif test "X[$]1" = X--fallback-echo; then 7578 # Avoid inline document here, it may be left over 7579 : 7580elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then 7581 # Yippee, $echo works! 7582 : 7583else 7584 # Restart under the correct shell. 7585 exec $SHELL "[$]0" --no-reexec ${1+"[$]@"} 7586fi 7587 7588if test "X[$]1" = X--fallback-echo; then 7589 # used as fallback echo 7590 shift 7591 cat <<EOF 7592[$]* 7593EOF 7594 exit 0 7595fi 7596 7597# The HP-UX ksh and POSIX shell print the target directory to stdout 7598# if CDPATH is set. 7599(unset CDPATH) >/dev/null 2>&1 && unset CDPATH 7600 7601if test -z "$ECHO"; then 7602if test "X${echo_test_string+set}" != Xset; then 7603# find a string as large as possible, as long as the shell can cope with it 7604 for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do 7605 # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... 7606 if (echo_test_string=`eval $cmd`) 2>/dev/null && 7607 echo_test_string=`eval $cmd` && 7608 (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null 7609 then 7610 break 7611 fi 7612 done 7613fi 7614 7615if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && 7616 echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && 7617 test "X$echo_testing_string" = "X$echo_test_string"; then 7618 : 7619else 7620 # The Solaris, AIX, and Digital Unix default echo programs unquote 7621 # backslashes. This makes it impossible to quote backslashes using 7622 # echo "$something" | sed 's/\\/\\\\/g' 7623 # 7624 # So, first we look for a working echo in the user's PATH. 7625 7626 lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR 7627 for dir in $PATH /usr/ucb; do 7628 IFS="$lt_save_ifs" 7629 if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && 7630 test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && 7631 echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && 7632 test "X$echo_testing_string" = "X$echo_test_string"; then 7633 echo="$dir/echo" 7634 break 7635 fi 7636 done 7637 IFS="$lt_save_ifs" 7638 7639 if test "X$echo" = Xecho; then 7640 # We didn't find a better echo, so look for alternatives. 7641 if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && 7642 echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && 7643 test "X$echo_testing_string" = "X$echo_test_string"; then 7644 # This shell has a builtin print -r that does the trick. 7645 echo='print -r' 7646 elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && 7647 test "X$CONFIG_SHELL" != X/bin/ksh; then 7648 # If we have ksh, try running configure again with it. 7649 ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} 7650 export ORIGINAL_CONFIG_SHELL 7651 CONFIG_SHELL=/bin/ksh 7652 export CONFIG_SHELL 7653 exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"} 7654 else 7655 # Try using printf. 7656 echo='printf %s\n' 7657 if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && 7658 echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && 7659 test "X$echo_testing_string" = "X$echo_test_string"; then 7660 # Cool, printf works 7661 : 7662 elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && 7663 test "X$echo_testing_string" = 'X\t' && 7664 echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && 7665 test "X$echo_testing_string" = "X$echo_test_string"; then 7666 CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL 7667 export CONFIG_SHELL 7668 SHELL="$CONFIG_SHELL" 7669 export SHELL 7670 echo="$CONFIG_SHELL [$]0 --fallback-echo" 7671 elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && 7672 test "X$echo_testing_string" = 'X\t' && 7673 echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && 7674 test "X$echo_testing_string" = "X$echo_test_string"; then 7675 echo="$CONFIG_SHELL [$]0 --fallback-echo" 7676 else 7677 # maybe with a smaller string... 7678 prev=: 7679 7680 for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do 7681 if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null 7682 then 7683 break 7684 fi 7685 prev="$cmd" 7686 done 7687 7688 if test "$prev" != 'sed 50q "[$]0"'; then 7689 echo_test_string=`eval $prev` 7690 export echo_test_string 7691 exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"} 7692 else 7693 # Oops. We lost completely, so just stick with echo. 7694 echo=echo 7695 fi 7696 fi 7697 fi 7698 fi 7699fi 7700fi 7701 7702# Copy echo and quote the copy suitably for passing to libtool from 7703# the Makefile, instead of quoting the original, which is used later. 7704ECHO=$echo 7705if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then 7706 ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo" 7707fi 7708 7709AC_SUBST(ECHO) 7710]) 7711m4trace:configure.ac:19: -1- m4_pattern_allow([^ECHO$]) 7712m4trace:configure.ac:19: -1- m4_pattern_allow([^AR$]) 7713m4trace:configure.ac:19: -1- m4_pattern_allow([^RANLIB$]) 7714m4trace:configure.ac:19: -1- m4_pattern_allow([^STRIP$]) 7715m4trace:configure.ac:19: -1- _LT_CC_BASENAME([$compiler]) 7716m4trace:configure.ac:19: -1- AC_PATH_MAGIC 7717m4trace:configure.ac:19: -1- AC_PATH_TOOL_PREFIX([${ac_tool_prefix}file], [/usr/bin$PATH_SEPARATOR$PATH]) 7718m4trace:configure.ac:19: -1- AC_PATH_TOOL_PREFIX([file], [/usr/bin$PATH_SEPARATOR$PATH]) 7719m4trace:configure.ac:19: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. 7720You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... 7721../../lib/autoconf/general.m4:1462: AC_ARG_ENABLE is expanded from... 7722acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 7723acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 7724acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 7725configure.ac:19: the top level]) 7726m4trace:configure.ac:19: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. 7727You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... 7728../../lib/autoconf/general.m4:1481: AC_ARG_WITH is expanded from... 7729acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 7730acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 7731acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 7732configure.ac:19: the top level]) 7733m4trace:configure.ac:19: -1- AC_LIBTOOL_LANG_C_CONFIG 7734m4trace:configure.ac:19: -1- _LT_AC_LANG_C_CONFIG 7735m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([objext], []) 7736m4trace:configure.ac:19: -1- _LT_AC_SYS_COMPILER 7737m4trace:configure.ac:19: -1- _LT_COMPILER_BOILERPLATE 7738m4trace:configure.ac:19: -1- _LT_LINKER_BOILERPLATE 7739m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_COMPILER_NO_RTTI([]) 7740m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], []) 7741m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], []) 7742m4trace: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"]) 7743m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], []) 7744m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], []) 7745m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_COMPILER_PIC([]) 7746m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7747m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7748m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7749m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7750m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7751m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7752m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7753m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7754m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7755m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], []) 7756m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7757m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7758m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7759m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7760m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7761m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7762m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7763m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7764m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7765m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7766m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7767m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7768m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7769m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7770m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7771m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7772m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7773m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7774m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7775m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7776m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7777m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7778m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7779m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7780m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7781m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7782m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7783m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7784m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7785m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7786m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7787m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7788m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7789m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7790m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7791m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7792m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7793m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7794m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7795m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7796m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7797m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7798m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], []) 7799m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7800m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7801m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], []) 7802m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7803m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7804m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7805m4trace:configure.ac:19: -2- _LT_AC_TAGVAR([lt_prog_compiler_pic_works], []) 7806m4trace: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 7807 "" | " "*) ;; 7808 *) _LT_AC_TAGVAR(lt_prog_compiler_pic, )=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, )" ;; 7809 esac], [_LT_AC_TAGVAR(lt_prog_compiler_pic, )= 7810 _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, )=no]) 7811m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7812m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7813m4trace: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... 7814../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... 7815acinclude.m4:1219: AC_LIBTOOL_COMPILER_OPTION is expanded from... 7816acinclude.m4:5419: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... 7817acinclude.m4:3255: _LT_AC_LANG_C_CONFIG is expanded from... 7818acinclude.m4:3254: AC_LIBTOOL_LANG_C_CONFIG is expanded from... 7819acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 7820acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 7821acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 7822configure.ac:19: the top level]) 7823m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7824m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7825m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7826m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7827m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7828m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], []) 7829m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7830m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7831m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 7832m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 7833m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7834m4trace:configure.ac:19: -2- _LT_AC_TAGVAR([lt_prog_compiler_static_works], []) 7835m4trace: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, )=]) 7836m4trace: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... 7837../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... 7838acinclude.m4:1264: AC_LIBTOOL_LINKER_OPTION is expanded from... 7839acinclude.m4:5419: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... 7840acinclude.m4:3255: _LT_AC_LANG_C_CONFIG is expanded from... 7841acinclude.m4:3254: AC_LIBTOOL_LANG_C_CONFIG is expanded from... 7842acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 7843acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 7844acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 7845configure.ac:19: the top level]) 7846m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 7847m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_CC_C_O([]) 7848m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], []) 7849m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], []) 7850m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], []) 7851m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], []) 7852m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], []) 7853m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], []) 7854m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], []) 7855m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], []) 7856m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], []) 7857m4trace:configure.ac:19: -1- AC_LIBTOOL_SYS_HARD_LINK_LOCKS([]) 7858m4trace:configure.ac:19: -1- _LT_AC_LOCK 7859m4trace:configure.ac:19: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. 7860You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... 7861../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... 7862../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... 7863../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... 7864acinclude.m4:1073: _LT_AC_LOCK is expanded from... 7865acinclude.m4:1677: AC_LIBTOOL_SYS_HARD_LINK_LOCKS is expanded from... 7866acinclude.m4:3255: _LT_AC_LANG_C_CONFIG is expanded from... 7867acinclude.m4:3254: AC_LIBTOOL_LANG_C_CONFIG is expanded from... 7868acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 7869acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 7870acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 7871configure.ac:19: the top level]) 7872m4trace:configure.ac:19: -1- m4_pattern_allow([^DLLTOOL$]) 7873m4trace:configure.ac:19: -1- m4_pattern_allow([^AS$]) 7874m4trace:configure.ac:19: -1- m4_pattern_allow([^OBJDUMP$]) 7875m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], []) 7876m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_LD_SHLIBS([]) 7877m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 7878m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], []) 7879m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7880m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 7881m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], []) 7882m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], []) 7883m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], []) 7884m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], []) 7885m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], []) 7886m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7887m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], []) 7888m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], []) 7889m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 7890m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], []) 7891m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 7892m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], []) 7893m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], []) 7894m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], []) 7895m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], []) 7896m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], []) 7897m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], []) 7898m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([include_expsyms], []) 7899m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([exclude_expsyms], []) 7900m4trace:configure.ac:19: -1- _LT_CC_BASENAME([$compiler]) 7901m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 7902m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7903m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], []) 7904m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], []) 7905m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], []) 7906m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 7907m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7908m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7909m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], []) 7910m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 7911m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 7912m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7913m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 7914m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7915m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 7916m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], []) 7917m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], []) 7918m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], []) 7919m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7920m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 7921m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 7922m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 7923m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 7924m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7925m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], []) 7926m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7927m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 7928m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], []) 7929m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], []) 7930m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7931m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 7932m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 7933m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7934m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7935m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 7936m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 7937m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7938m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 7939m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 7940m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 7941m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7942m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7943m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 7944m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 7945m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7946m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 7947m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 7948m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7949m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 7950m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 7951m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 7952m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7953m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], []) 7954m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], []) 7955m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 7956m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], []) 7957m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 7958m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], []) 7959m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 7960m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], []) 7961m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], []) 7962m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 7963m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 7964m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], []) 7965m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], []) 7966m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 7967m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 7968m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], []) 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([always_export_symbols], []) 7972m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 7973m4trace:configure.ac:19: -1- _LT_AC_SYS_LIBPATH_AIX 7974m4trace: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... 7975../../lib/autoconf/general.m4:2661: _AC_LINK_IFELSE is expanded from... 7976../../lib/autoconf/general.m4:2678: AC_LINK_IFELSE is expanded from... 7977acinclude.m4:893: _LT_AC_SYS_LIBPATH_AIX is expanded from... 7978acinclude.m4:5946: AC_LIBTOOL_PROG_LD_SHLIBS is expanded from... 7979acinclude.m4:3255: _LT_AC_LANG_C_CONFIG is expanded from... 7980acinclude.m4:3254: AC_LIBTOOL_LANG_C_CONFIG is expanded from... 7981acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 7982acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 7983acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 7984configure.ac:19: the top level]) 7985m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7986m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 7987m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 7988m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 7989m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 7990m4trace:configure.ac:19: -1- _LT_AC_SYS_LIBPATH_AIX 7991m4trace: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... 7992../../lib/autoconf/general.m4:2661: _AC_LINK_IFELSE is expanded from... 7993../../lib/autoconf/general.m4:2678: AC_LINK_IFELSE is expanded from... 7994acinclude.m4:893: _LT_AC_SYS_LIBPATH_AIX is expanded from... 7995acinclude.m4:5946: AC_LIBTOOL_PROG_LD_SHLIBS is expanded from... 7996acinclude.m4:3255: _LT_AC_LANG_C_CONFIG is expanded from... 7997acinclude.m4:3254: AC_LIBTOOL_LANG_C_CONFIG is expanded from... 7998acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 7999acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 8000acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 8001configure.ac:19: the top level]) 8002m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8003m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], []) 8004m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8005m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], []) 8006m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], []) 8007m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 8008m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8009m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8010m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], []) 8011m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 8012m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], []) 8013m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8014m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8015m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8016m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], []) 8017m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], []) 8018m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([fix_srcfile_path], []) 8019m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], []) 8020m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8021m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8022m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8023m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8024m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], []) 8025m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 8026m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], []) 8027m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8028m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], []) 8029m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], []) 8030m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8031m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], []) 8032m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 8033m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], []) 8034m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8035m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], []) 8036m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 8037m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], []) 8038m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 8039m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8040m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8041m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8042m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 8043m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8044m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8045m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 8046m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8047m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8048m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 8049m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], []) 8050m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 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_shlibpath_var], []) 8055m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8056m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8057m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8058m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], []) 8059m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 8060m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], []) 8061m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], []) 8062m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8063m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8064m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8065m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], []) 8066m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 8067m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], []) 8068m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], []) 8069m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8070m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8071m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8072m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8073m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8074m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8075m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8076m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], []) 8077m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], []) 8078m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 8079m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8080m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 8081m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], []) 8082m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], []) 8083m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8084m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8085m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], []) 8086m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8087m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], []) 8088m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], []) 8089m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8090m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8091m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8092m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 8093m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8094m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8095m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 8096m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8097m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], []) 8098m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8099m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 8100m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8101m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8102m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 8103m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8104m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], []) 8105m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8106m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8107m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8108m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8109m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8110m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], []) 8111m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8112m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8113m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], []) 8114m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8115m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8116m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8117m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8118m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8119m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], []) 8120m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8121m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8122m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8123m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8124m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8125m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 8126m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8127m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], []) 8128m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], []) 8129m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8130m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 8131m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8132m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 8133m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8134m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8135m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], []) 8136m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], []) 8137m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], []) 8138m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8139m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8140m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8141m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 8142m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], []) 8143m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8144m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8145m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 8146m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8147m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([reload_cmds], []) 8148m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 8149m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8150m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 8151m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8152m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8153m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8154m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], []) 8155m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8156m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8157m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 8158m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], []) 8159m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], []) 8160m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8161m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8162m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 8163m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8164m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 8165m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], []) 8166m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8167m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], []) 8168m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8169m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8170m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], []) 8171m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], []) 8172m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], []) 8173m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8174m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 8175m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8176m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 8177m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8178m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8179m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8180m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 8181m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 8182m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 8183m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], []) 8184m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], []) 8185m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], []) 8186m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8187m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 8188m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 8189m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8190m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8191m4trace:configure.ac:19: -2- _LT_AC_TAGVAR([archive_cmds], []) 8192m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], []) 8193m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], []) 8194m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8195m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], []) 8196m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], []) 8197m4trace:configure.ac:19: -1- AC_LIBTOOL_SYS_DYNAMIC_LINKER([]) 8198m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([]) 8199m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], []) 8200m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8201m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([runpath_var], []) 8202m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], []) 8203m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 8204m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], []) 8205m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], []) 8206m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], []) 8207m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], []) 8208m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], []) 8209m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], []) 8210m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], []) 8211m4trace:configure.ac:19: -1- AC_LIBTOOL_SYS_LIB_STRIP 8212m4trace:configure.ac:19: -1- AC_LIBTOOL_DLOPEN_SELF 8213m4trace:configure.ac:19: -1- _LT_AC_CHECK_DLFCN 8214m4trace:configure.ac:19: -1- m4_pattern_allow([^CPP$]) 8215m4trace:configure.ac:19: -1- m4_pattern_allow([^CPPFLAGS$]) 8216m4trace:configure.ac:19: -1- m4_pattern_allow([^CPP$]) 8217m4trace:configure.ac:19: -1- m4_pattern_allow([^STDC_HEADERS$]) 8218m4trace:configure.ac:19: -1- m4_pattern_allow([^HAVE_DLFCN_H$]) 8219m4trace: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]) 8220m4trace: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]) 8221m4trace:configure.ac:19: -1- AC_LIBTOOL_CONFIG([]) 8222m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], []) 8223m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([CC], []) 8224m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([LD], []) 8225m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 8226m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 8227m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 8228m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], []) 8229m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], []) 8230m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], []) 8231m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], []) 8232m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], []) 8233m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], []) 8234m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], []) 8235m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], []) 8236m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], []) 8237m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predeps], []) 8238m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], []) 8239m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], []) 8240m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8241m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 8242m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postinstall_cmds], []) 8243m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postuninstall_cmds], []) 8244m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], []) 8245m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8246m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], []) 8247m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], []) 8248m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8249m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], []) 8250m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], []) 8251m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], []) 8252m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], []) 8253m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], []) 8254m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], []) 8255m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([exclude_expsyms], []) 8256m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([include_expsyms], []) 8257m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], []) 8258m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], []) 8259m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8260m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 8261m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], []) 8262m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], []) 8263m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], []) 8264m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], []) 8265m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], []) 8266m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], []) 8267m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], []) 8268m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([GCC], []) 8269m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([LD], []) 8270m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], []) 8271m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], []) 8272m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], []) 8273m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], []) 8274m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], []) 8275m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], []) 8276m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], []) 8277m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], []) 8278m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], []) 8279m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], []) 8280m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], []) 8281m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], []) 8282m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], []) 8283m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], []) 8284m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], []) 8285m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], []) 8286m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], []) 8287m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predeps], []) 8288m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], []) 8289m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], []) 8290m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], []) 8291m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], []) 8292m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], []) 8293m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], []) 8294m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], []) 8295m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], []) 8296m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], []) 8297m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], []) 8298m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], []) 8299m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], []) 8300m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], []) 8301m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([fix_srcfile_path], []) 8302m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], []) 8303m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], []) 8304m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([exclude_expsyms], []) 8305m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([include_expsyms], []) 8306m4trace:configure.ac:19: -1- _LT_AC_TAGCONFIG 8307m4trace:configure.ac:19: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. 8308You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... 8309../../lib/autoconf/general.m4:1481: AC_ARG_WITH is expanded from... 8310acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 8311acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 8312acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 8313acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 8314configure.ac:19: the top level]) 8315m4trace: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... 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- AC_LIBTOOL_LANG_CXX_CONFIG 8321m4trace:configure.ac:19: -1- _LT_AC_LANG_CXX_CONFIG([CXX]) 8322m4trace:configure.ac:19: -1- m4_pattern_allow([^CXX$]) 8323m4trace:configure.ac:19: -1- m4_pattern_allow([^CXXFLAGS$]) 8324m4trace:configure.ac:19: -1- m4_pattern_allow([^LDFLAGS$]) 8325m4trace:configure.ac:19: -1- m4_pattern_allow([^LIBS$]) 8326m4trace:configure.ac:19: -1- m4_pattern_allow([^CPPFLAGS$]) 8327m4trace:configure.ac:19: -1- m4_pattern_allow([^CXX$]) 8328m4trace:configure.ac:19: -1- m4_pattern_allow([^ac_ct_CXX$]) 8329m4trace:configure.ac:19: -1- _AM_DEPENDENCIES([CXX]) 8330m4trace:configure.ac:19: -1- m4_pattern_allow([^CXXDEPMODE$]) 8331m4trace:configure.ac:19: -1- AM_CONDITIONAL([am__fastdepCXX], [ 8332 test "x$enable_dependency_tracking" != xno \ 8333 && test "$am_cv_CXX_dependencies_compiler_type" = gcc3]) 8334m4trace:configure.ac:19: -1- m4_pattern_allow([^am__fastdepCXX_TRUE$]) 8335m4trace:configure.ac:19: -1- m4_pattern_allow([^am__fastdepCXX_FALSE$]) 8336m4trace:configure.ac:19: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_TRUE]) 8337m4trace:configure.ac:19: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_FALSE]) 8338m4trace:configure.ac:19: -1- _LT_AC_PROG_CXXCPP 8339m4trace:configure.ac:19: -1- m4_pattern_allow([^CXXCPP$]) 8340m4trace:configure.ac:19: -1- m4_pattern_allow([^CPPFLAGS$]) 8341m4trace:configure.ac:19: -1- m4_pattern_allow([^CXXCPP$]) 8342m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8343m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8344m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [CXX]) 8345m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8346m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX]) 8347m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX]) 8348m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8349m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [CXX]) 8350m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8351m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX]) 8352m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX]) 8353m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [CXX]) 8354m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [CXX]) 8355m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX]) 8356m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX]) 8357m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX]) 8358m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX]) 8359m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX]) 8360m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [CXX]) 8361m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [CXX]) 8362m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [CXX]) 8363m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predeps], [CXX]) 8364m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [CXX]) 8365m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX]) 8366m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([objext], [CXX]) 8367m4trace:configure.ac:19: -1- _LT_AC_SYS_COMPILER 8368m4trace:configure.ac:19: -1- _LT_COMPILER_BOILERPLATE 8369m4trace:configure.ac:19: -1- _LT_LINKER_BOILERPLATE 8370m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], [CXX]) 8371m4trace:configure.ac:19: -1- _LT_CC_BASENAME([$compiler]) 8372m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [CXX]) 8373m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [CXX]) 8374m4trace:configure.ac:19: -1- AC_PROG_LD 8375m4trace:configure.ac:19: -1- AC_PROG_LD_GNU 8376m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8377m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8378m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8379m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX]) 8380m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX]) 8381m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX]) 8382m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8383m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8384m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8385m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8386m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX]) 8387m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8388m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX]) 8389m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX]) 8390m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX]) 8391m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX]) 8392m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8393m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8394m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [CXX]) 8395m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8396m4trace:configure.ac:19: -1- _LT_AC_SYS_LIBPATH_AIX 8397m4trace: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... 8398../../lib/autoconf/general.m4:2661: _AC_LINK_IFELSE is expanded from... 8399../../lib/autoconf/general.m4:2678: AC_LINK_IFELSE is expanded from... 8400acinclude.m4:893: _LT_AC_SYS_LIBPATH_AIX is expanded from... 8401acinclude.m4:3336: _LT_AC_LANG_CXX_CONFIG is expanded from... 8402acinclude.m4:3335: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from... 8403acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 8404acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 8405acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 8406acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 8407configure.ac:19: the top level]) 8408m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8409m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8410m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8411m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8412m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8413m4trace:configure.ac:19: -1- _LT_AC_SYS_LIBPATH_AIX 8414m4trace: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... 8415../../lib/autoconf/general.m4:2661: _AC_LINK_IFELSE is expanded from... 8416../../lib/autoconf/general.m4:2678: AC_LINK_IFELSE is expanded from... 8417acinclude.m4:893: _LT_AC_SYS_LIBPATH_AIX is expanded from... 8418acinclude.m4:3336: _LT_AC_LANG_CXX_CONFIG is expanded from... 8419acinclude.m4:3335: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from... 8420acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 8421acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 8422acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 8423acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 8424configure.ac:19: the top level]) 8425m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8426m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX]) 8427m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8428m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX]) 8429m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8430m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8431m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8432m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8433m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8434m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8435m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8436m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8437m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [CXX]) 8438m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [CXX]) 8439m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8440m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8441m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8442m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8443m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8444m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8445m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8446m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8447m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX]) 8448m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [CXX]) 8449m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX]) 8450m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX]) 8451m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX]) 8452m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8453m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8454m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [CXX]) 8455m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8456m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8457m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX]) 8458m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8459m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [CXX]) 8460m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8461m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX]) 8462m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8463m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8464m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8465m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8466m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8467m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8468m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8469m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8470m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8471m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX]) 8472m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX]) 8473m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX]) 8474m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8475m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8476m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8477m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8478m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8479m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8480m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [CXX]) 8481m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX]) 8482m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX]) 8483m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX]) 8484m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX]) 8485m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX]) 8486m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8487m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8488m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8489m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8490m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8491m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8492m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8493m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8494m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX]) 8495m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX]) 8496m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8497m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX]) 8498m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8499m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8500m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8501m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX]) 8502m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8503m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8504m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX]) 8505m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8506m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8507m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8508m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8509m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8510m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX]) 8511m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_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([archive_cmds], [CXX]) 8515m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8516m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8517m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8518m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX]) 8519m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX]) 8520m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8521m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8522m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8523m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX]) 8524m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX]) 8525m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8526m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8527m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8528m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [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([archive_cmds], [CXX]) 8534m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8535m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX]) 8536m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX]) 8537m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8538m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX]) 8539m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX]) 8540m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8541m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8542m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8543m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX]) 8544m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX]) 8545m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8546m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8547m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8548m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX]) 8549m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8550m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8551m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8552m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8553m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8554m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8555m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8556m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8557m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8558m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8559m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8560m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8561m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8562m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX]) 8563m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8564m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8565m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8566m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8567m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8568m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8569m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8570m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8571m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8572m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8573m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8574m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8575m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8576m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8577m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8578m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8579m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX]) 8580m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8581m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8582m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8583m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX]) 8584m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX]) 8585m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX]) 8586m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX]) 8587m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8588m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX]) 8589m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX]) 8590m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8591m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8592m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8593m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8594m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8595m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX]) 8596m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8597m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX]) 8598m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8599m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8600m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8601m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8602m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX]) 8603m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8604m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8605m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX]) 8606m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8607m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8608m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX]) 8609m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX]) 8610m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8611m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8612m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8613m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8614m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8615m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8616m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8617m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8618m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8619m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8620m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8621m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([GCC], [CXX]) 8622m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([LD], [CXX]) 8623m4trace:configure.ac:19: -1- AC_LIBTOOL_POSTDEP_PREDEP([CXX]) 8624m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX]) 8625m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX]) 8626m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX]) 8627m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX]) 8628m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [CXX]) 8629m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [CXX]) 8630m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [CXX]) 8631m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [CXX]) 8632m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [CXX]) 8633m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [CXX]) 8634m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [CXX]) 8635m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [CXX]) 8636m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [CXX]) 8637m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [CXX]) 8638m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [CXX]) 8639m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [CXX]) 8640m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [CXX]) 8641m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [CXX]) 8642m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [CXX]) 8643m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [CXX]) 8644m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [CXX]) 8645m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8646m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_COMPILER_PIC([CXX]) 8647m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8648m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8649m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8650m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8651m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8652m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8653m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8654m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8655m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8656m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8657m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8658m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8659m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8660m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8661m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8662m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8663m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8664m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8665m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8666m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8667m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8668m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8669m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8670m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8671m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8672m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8673m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8674m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8675m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8676m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8677m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8678m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8679m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8680m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8681m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8682m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8683m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8684m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8685m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8686m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8687m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8688m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8689m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8690m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8691m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8692m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8693m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8694m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8695m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8696m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8697m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8698m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8699m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8700m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8701m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [CXX]) 8702m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8703m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8704m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8705m4trace:configure.ac:19: -2- _LT_AC_TAGVAR([lt_prog_compiler_pic_works], [CXX]) 8706m4trace: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 8707 "" | " "*) ;; 8708 *) _LT_AC_TAGVAR(lt_prog_compiler_pic, CXX)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, CXX)" ;; 8709 esac], [_LT_AC_TAGVAR(lt_prog_compiler_pic, CXX)= 8710 _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, CXX)=no]) 8711m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8712m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8713m4trace: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... 8714../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... 8715acinclude.m4:1219: AC_LIBTOOL_COMPILER_OPTION is expanded from... 8716acinclude.m4:5419: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... 8717acinclude.m4:3336: _LT_AC_LANG_CXX_CONFIG is expanded from... 8718acinclude.m4:3335: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from... 8719acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 8720acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 8721acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 8722acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 8723configure.ac:19: the top level]) 8724m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8725m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8726m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8727m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8728m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8729m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [CXX]) 8730m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8731m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8732m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8733m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8734m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8735m4trace:configure.ac:19: -2- _LT_AC_TAGVAR([lt_prog_compiler_static_works], [CXX]) 8736m4trace: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)=]) 8737m4trace: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... 8738../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... 8739acinclude.m4:1264: AC_LIBTOOL_LINKER_OPTION is expanded from... 8740acinclude.m4:5419: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... 8741acinclude.m4:3336: _LT_AC_LANG_CXX_CONFIG is expanded from... 8742acinclude.m4:3335: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from... 8743acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 8744acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 8745acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 8746acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 8747configure.ac:19: the top level]) 8748m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8749m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_CC_C_O([CXX]) 8750m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX]) 8751m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX]) 8752m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX]) 8753m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX]) 8754m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX]) 8755m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX]) 8756m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX]) 8757m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX]) 8758m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX]) 8759m4trace:configure.ac:19: -1- AC_LIBTOOL_SYS_HARD_LINK_LOCKS([CXX]) 8760m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX]) 8761m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_LD_SHLIBS([CXX]) 8762m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX]) 8763m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX]) 8764m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX]) 8765m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX]) 8766m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX]) 8767m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX]) 8768m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8769m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8770m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX]) 8771m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8772m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8773m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8774m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8775m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8776m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8777m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8778m4trace:configure.ac:19: -2- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8779m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8780m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8781m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8782m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8783m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8784m4trace:configure.ac:19: -1- AC_LIBTOOL_SYS_DYNAMIC_LINKER([CXX]) 8785m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([CXX]) 8786m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [CXX]) 8787m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8788m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([runpath_var], [CXX]) 8789m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [CXX]) 8790m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX]) 8791m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX]) 8792m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [CXX]) 8793m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [CXX]) 8794m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [CXX]) 8795m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [CXX]) 8796m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [CXX]) 8797m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [CXX]) 8798m4trace:configure.ac:19: -1- AC_LIBTOOL_CONFIG([CXX]) 8799m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], [CXX]) 8800m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([CC], [CXX]) 8801m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([LD], [CXX]) 8802m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8803m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8804m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8805m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [CXX]) 8806m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX]) 8807m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [CXX]) 8808m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX]) 8809m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [CXX]) 8810m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX]) 8811m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [CXX]) 8812m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [CXX]) 8813m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [CXX]) 8814m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predeps], [CXX]) 8815m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [CXX]) 8816m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX]) 8817m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8818m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8819m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postinstall_cmds], [CXX]) 8820m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postuninstall_cmds], [CXX]) 8821m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [CXX]) 8822m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8823m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX]) 8824m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX]) 8825m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8826m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [CXX]) 8827m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8828m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [CXX]) 8829m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [CXX]) 8830m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX]) 8831m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX]) 8832m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([exclude_expsyms], [CXX]) 8833m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([include_expsyms], [CXX]) 8834m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX]) 8835m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [CXX]) 8836m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8837m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8838m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [CXX]) 8839m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX]) 8840m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [CXX]) 8841m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX]) 8842m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX]) 8843m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [CXX]) 8844m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], [CXX]) 8845m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([GCC], [CXX]) 8846m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([LD], [CXX]) 8847m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX]) 8848m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX]) 8849m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX]) 8850m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX]) 8851m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [CXX]) 8852m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX]) 8853m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX]) 8854m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [CXX]) 8855m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX]) 8856m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [CXX]) 8857m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [CXX]) 8858m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [CXX]) 8859m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX]) 8860m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [CXX]) 8861m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX]) 8862m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [CXX]) 8863m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [CXX]) 8864m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predeps], [CXX]) 8865m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [CXX]) 8866m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX]) 8867m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX]) 8868m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX]) 8869m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [CXX]) 8870m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX]) 8871m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [CXX]) 8872m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX]) 8873m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX]) 8874m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX]) 8875m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX]) 8876m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [CXX]) 8877m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX]) 8878m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([fix_srcfile_path], [CXX]) 8879m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [CXX]) 8880m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX]) 8881m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([exclude_expsyms], [CXX]) 8882m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([include_expsyms], [CXX]) 8883m4trace:configure.ac:19: -1- AC_LIBTOOL_LANG_F77_CONFIG 8884m4trace:configure.ac:19: -1- _LT_AC_LANG_F77_CONFIG([F77]) 8885m4trace:configure.ac:19: -1- m4_pattern_allow([^F77$]) 8886m4trace:configure.ac:19: -1- m4_pattern_allow([^FFLAGS$]) 8887m4trace:configure.ac:19: -1- m4_pattern_allow([^LDFLAGS$]) 8888m4trace:configure.ac:19: -1- m4_pattern_allow([^LIBS$]) 8889m4trace:configure.ac:19: -1- m4_pattern_allow([^F77$]) 8890m4trace:configure.ac:19: -1- m4_pattern_allow([^ac_ct_F77$]) 8891m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77]) 8892m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 8893m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [F77]) 8894m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 8895m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 8896m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 8897m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 8898m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77]) 8899m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 8900m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 8901m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77]) 8902m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [F77]) 8903m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77]) 8904m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77]) 8905m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [F77]) 8906m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77]) 8907m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77]) 8908m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77]) 8909m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([objext], [F77]) 8910m4trace:configure.ac:19: -1- _LT_AC_SYS_COMPILER 8911m4trace:configure.ac:19: -1- _LT_COMPILER_BOILERPLATE 8912m4trace:configure.ac:19: -1- _LT_LINKER_BOILERPLATE 8913m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], [F77]) 8914m4trace:configure.ac:19: -1- _LT_CC_BASENAME([$compiler]) 8915m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([GCC], [F77]) 8916m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([LD], [F77]) 8917m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_COMPILER_PIC([F77]) 8918m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8919m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8920m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8921m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8922m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8923m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8924m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8925m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8926m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8927m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [F77]) 8928m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8929m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8930m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8931m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8932m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8933m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8934m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8935m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8936m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8937m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8938m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8939m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8940m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8941m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8942m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8943m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8944m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8945m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8946m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8947m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8948m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8949m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8950m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8951m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8952m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8953m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8954m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8955m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8956m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8957m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8958m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8959m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8960m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8961m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8962m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8963m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8964m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8965m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8966m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8967m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8968m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8969m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 8970m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [F77]) 8971m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8972m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 8973m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [F77]) 8974m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8975m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8976m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8977m4trace:configure.ac:19: -2- _LT_AC_TAGVAR([lt_prog_compiler_pic_works], [F77]) 8978m4trace: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 8979 "" | " "*) ;; 8980 *) _LT_AC_TAGVAR(lt_prog_compiler_pic, F77)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, F77)" ;; 8981 esac], [_LT_AC_TAGVAR(lt_prog_compiler_pic, F77)= 8982 _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, F77)=no]) 8983m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8984m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8985m4trace: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... 8986../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... 8987acinclude.m4:1219: AC_LIBTOOL_COMPILER_OPTION is expanded from... 8988acinclude.m4:5419: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... 8989acinclude.m4:4503: _LT_AC_LANG_F77_CONFIG is expanded from... 8990acinclude.m4:4502: AC_LIBTOOL_LANG_F77_CONFIG is expanded from... 8991acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 8992acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 8993acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 8994acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 8995configure.ac:19: the top level]) 8996m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8997m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8998m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 8999m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 9000m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 9001m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [F77]) 9002m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 9003m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 9004m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 9005m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 9006m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 9007m4trace:configure.ac:19: -2- _LT_AC_TAGVAR([lt_prog_compiler_static_works], [F77]) 9008m4trace: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)=]) 9009m4trace: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... 9010../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... 9011acinclude.m4:1264: AC_LIBTOOL_LINKER_OPTION is expanded from... 9012acinclude.m4:5419: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... 9013acinclude.m4:4503: _LT_AC_LANG_F77_CONFIG is expanded from... 9014acinclude.m4:4502: AC_LIBTOOL_LANG_F77_CONFIG is expanded from... 9015acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 9016acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 9017acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 9018acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 9019configure.ac:19: the top level]) 9020m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 9021m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_CC_C_O([F77]) 9022m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77]) 9023m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77]) 9024m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77]) 9025m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77]) 9026m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77]) 9027m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77]) 9028m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77]) 9029m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77]) 9030m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77]) 9031m4trace:configure.ac:19: -1- AC_LIBTOOL_SYS_HARD_LINK_LOCKS([F77]) 9032m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77]) 9033m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_LD_SHLIBS([F77]) 9034m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9035m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77]) 9036m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9037m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9038m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [F77]) 9039m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [F77]) 9040m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 9041m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77]) 9042m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [F77]) 9043m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9044m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77]) 9045m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 9046m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9047m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 9048m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9049m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77]) 9050m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77]) 9051m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [F77]) 9052m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77]) 9053m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [F77]) 9054m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77]) 9055m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([include_expsyms], [F77]) 9056m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([exclude_expsyms], [F77]) 9057m4trace:configure.ac:19: -1- _LT_CC_BASENAME([$compiler]) 9058m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9059m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9060m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 9061m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77]) 9062m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77]) 9063m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9064m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9065m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9066m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 9067m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9068m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9069m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9070m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9071m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9072m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9073m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [F77]) 9074m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77]) 9075m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77]) 9076m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9077m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9078m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9079m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9080m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9081m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9082m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 9083m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9084m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9085m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77]) 9086m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77]) 9087m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9088m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [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([archive_cmds], [F77]) 9092m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9093m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9094m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9095m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9096m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9097m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9098m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9099m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9100m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9101m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9102m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9103m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9104m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9105m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9106m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9107m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9108m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9109m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9110m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 9111m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77]) 9112m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9113m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [F77]) 9114m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9115m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 9116m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9117m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77]) 9118m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77]) 9119m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9120m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9121m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 9122m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77]) 9123m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9124m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9125m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 9126m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9127m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 9128m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [F77]) 9129m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9130m4trace:configure.ac:19: -1- _LT_AC_SYS_LIBPATH_AIX 9131m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9132m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9133m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9134m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9135m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9136m4trace:configure.ac:19: -1- _LT_AC_SYS_LIBPATH_AIX 9137m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9138m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77]) 9139m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9140m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77]) 9141m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77]) 9142m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9143m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9144m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9145m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 9146m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9147m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 9148m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9149m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9150m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9151m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [F77]) 9152m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [F77]) 9153m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([fix_srcfile_path], [F77]) 9154m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77]) 9155m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9156m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9157m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9158m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9159m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77]) 9160m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9161m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77]) 9162m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9163m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77]) 9164m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77]) 9165m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9166m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [F77]) 9167m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9168m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77]) 9169m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9170m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [F77]) 9171m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9172m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77]) 9173m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9174m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9175m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9176m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9177m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9178m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9179m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9180m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9181m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9182m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9183m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9184m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 9185m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [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_shlibpath_var], [F77]) 9190m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9191m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9192m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9193m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 9194m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9195m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 9196m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 9197m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9198m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9199m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9200m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 9201m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9202m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 9203m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 9204m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9205m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9206m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9207m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9208m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9209m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9210m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9211m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 9212m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77]) 9213m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9214m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9215m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9216m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 9217m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 9218m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9219m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9220m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77]) 9221m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9222m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 9223m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77]) 9224m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9225m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9226m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9227m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9228m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9229m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9230m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9231m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9232m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 9233m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9234m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9235m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9236m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9237m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9238m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9239m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 9240m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9241m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9242m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9243m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9244m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9245m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 9246m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9247m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9248m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [F77]) 9249m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9250m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9251m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9252m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9253m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9254m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 9255m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9256m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9257m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9258m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9259m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9260m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9261m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9262m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 9263m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77]) 9264m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9265m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9266m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9267m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9268m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9269m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9270m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77]) 9271m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77]) 9272m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77]) 9273m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9274m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9275m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9276m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9277m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 9278m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9279m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9280m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9281m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9282m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([reload_cmds], [F77]) 9283m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9284m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9285m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9286m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9287m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9288m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9289m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 9290m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9291m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9292m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9293m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77]) 9294m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77]) 9295m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [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([archive_cmds], [F77]) 9299m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9300m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77]) 9301m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9302m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77]) 9303m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9304m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9305m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 9306m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77]) 9307m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 9308m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9309m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9310m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9311m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9312m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9313m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9314m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9315m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9316m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9317m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9318m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [F77]) 9319m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77]) 9320m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77]) 9321m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9322m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 9323m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 9324m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9325m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9326m4trace:configure.ac:19: -2- _LT_AC_TAGVAR([archive_cmds], [F77]) 9327m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77]) 9328m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77]) 9329m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9330m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77]) 9331m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77]) 9332m4trace:configure.ac:19: -1- AC_LIBTOOL_SYS_DYNAMIC_LINKER([F77]) 9333m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([F77]) 9334m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [F77]) 9335m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9336m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([runpath_var], [F77]) 9337m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77]) 9338m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9339m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 9340m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [F77]) 9341m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [F77]) 9342m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [F77]) 9343m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [F77]) 9344m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [F77]) 9345m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [F77]) 9346m4trace:configure.ac:19: -1- AC_LIBTOOL_CONFIG([F77]) 9347m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], [F77]) 9348m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([CC], [F77]) 9349m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([LD], [F77]) 9350m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 9351m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 9352m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 9353m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [F77]) 9354m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 9355m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [F77]) 9356m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77]) 9357m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77]) 9358m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [F77]) 9359m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [F77]) 9360m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [F77]) 9361m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [F77]) 9362m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predeps], [F77]) 9363m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [F77]) 9364m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [F77]) 9365m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9366m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9367m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postinstall_cmds], [F77]) 9368m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postuninstall_cmds], [F77]) 9369m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [F77]) 9370m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9371m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77]) 9372m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77]) 9373m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9374m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77]) 9375m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 9376m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77]) 9377m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [F77]) 9378m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77]) 9379m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77]) 9380m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([exclude_expsyms], [F77]) 9381m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([include_expsyms], [F77]) 9382m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [F77]) 9383m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [F77]) 9384m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9385m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9386m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [F77]) 9387m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77]) 9388m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [F77]) 9389m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77]) 9390m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77]) 9391m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77]) 9392m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], [F77]) 9393m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([GCC], [F77]) 9394m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([LD], [F77]) 9395m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77]) 9396m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77]) 9397m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77]) 9398m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77]) 9399m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [F77]) 9400m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77]) 9401m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77]) 9402m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [F77]) 9403m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [F77]) 9404m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [F77]) 9405m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [F77]) 9406m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [F77]) 9407m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77]) 9408m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [F77]) 9409m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77]) 9410m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [F77]) 9411m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [F77]) 9412m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predeps], [F77]) 9413m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [F77]) 9414m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [F77]) 9415m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77]) 9416m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77]) 9417m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [F77]) 9418m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77]) 9419m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77]) 9420m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77]) 9421m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [F77]) 9422m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77]) 9423m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77]) 9424m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77]) 9425m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77]) 9426m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([fix_srcfile_path], [F77]) 9427m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [F77]) 9428m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77]) 9429m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([exclude_expsyms], [F77]) 9430m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([include_expsyms], [F77]) 9431m4trace:configure.ac:19: -1- AC_LIBTOOL_LANG_GCJ_CONFIG 9432m4trace:configure.ac:19: -1- _LT_AC_LANG_GCJ_CONFIG([GCJ]) 9433m4trace:configure.ac:19: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. 9434You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... 9435acinclude.m4:4605: _LT_AC_LANG_GCJ_CONFIG is expanded from... 9436acinclude.m4:4604: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from... 9437acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 9438acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 9439acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 9440acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 9441configure.ac:19: the top level]) 9442m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([objext], [GCJ]) 9443m4trace:configure.ac:19: -1- _LT_AC_SYS_COMPILER 9444m4trace:configure.ac:19: -1- _LT_COMPILER_BOILERPLATE 9445m4trace:configure.ac:19: -1- _LT_LINKER_BOILERPLATE 9446m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], [GCJ]) 9447m4trace:configure.ac:19: -1- _LT_CC_BASENAME([$compiler]) 9448m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ]) 9449m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [GCJ]) 9450m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_COMPILER_NO_RTTI([GCJ]) 9451m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ]) 9452m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ]) 9453m4trace: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"]) 9454m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ]) 9455m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ]) 9456m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_COMPILER_PIC([GCJ]) 9457m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9458m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9459m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9460m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9461m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9462m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9463m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9464m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9465m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9466m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [GCJ]) 9467m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9468m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9469m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9470m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9471m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9472m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9473m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9474m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9475m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9476m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9477m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9478m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9479m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9480m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9481m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9482m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9483m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9484m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9485m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9486m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9487m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9488m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9489m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9490m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9491m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9492m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9493m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9494m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9495m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9496m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9497m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9498m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9499m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9500m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9501m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9502m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9503m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9504m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9505m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9506m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9507m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9508m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9509m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [GCJ]) 9510m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9511m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9512m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [GCJ]) 9513m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9514m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9515m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9516m4trace:configure.ac:19: -2- _LT_AC_TAGVAR([lt_prog_compiler_pic_works], [GCJ]) 9517m4trace: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 9518 "" | " "*) ;; 9519 *) _LT_AC_TAGVAR(lt_prog_compiler_pic, GCJ)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, GCJ)" ;; 9520 esac], [_LT_AC_TAGVAR(lt_prog_compiler_pic, GCJ)= 9521 _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, GCJ)=no]) 9522m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9523m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9524m4trace: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... 9525../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... 9526acinclude.m4:1219: AC_LIBTOOL_COMPILER_OPTION is expanded from... 9527acinclude.m4:5419: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... 9528acinclude.m4:4605: _LT_AC_LANG_GCJ_CONFIG is expanded from... 9529acinclude.m4:4604: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from... 9530acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 9531acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 9532acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 9533acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 9534configure.ac:19: the top level]) 9535m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9536m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9537m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9538m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9539m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9540m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [GCJ]) 9541m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9542m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9543m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9544m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9545m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9546m4trace:configure.ac:19: -2- _LT_AC_TAGVAR([lt_prog_compiler_static_works], [GCJ]) 9547m4trace: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)=]) 9548m4trace: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... 9549../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... 9550acinclude.m4:1264: AC_LIBTOOL_LINKER_OPTION is expanded from... 9551acinclude.m4:5419: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... 9552acinclude.m4:4605: _LT_AC_LANG_GCJ_CONFIG is expanded from... 9553acinclude.m4:4604: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from... 9554acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 9555acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 9556acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 9557acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 9558configure.ac:19: the top level]) 9559m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9560m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_CC_C_O([GCJ]) 9561m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ]) 9562m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ]) 9563m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ]) 9564m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ]) 9565m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ]) 9566m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ]) 9567m4trace:configure.ac:19: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ]) 9568m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ]) 9569m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ]) 9570m4trace:configure.ac:19: -1- AC_LIBTOOL_SYS_HARD_LINK_LOCKS([GCJ]) 9571m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ]) 9572m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_LD_SHLIBS([GCJ]) 9573m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9574m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [GCJ]) 9575m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9576m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9577m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [GCJ]) 9578m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [GCJ]) 9579m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ]) 9580m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ]) 9581m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [GCJ]) 9582m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9583m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [GCJ]) 9584m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ]) 9585m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9586m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ]) 9587m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9588m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ]) 9589m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [GCJ]) 9590m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [GCJ]) 9591m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ]) 9592m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [GCJ]) 9593m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ]) 9594m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([include_expsyms], [GCJ]) 9595m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([exclude_expsyms], [GCJ]) 9596m4trace:configure.ac:19: -1- _LT_CC_BASENAME([$compiler]) 9597m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9598m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9599m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ]) 9600m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ]) 9601m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ]) 9602m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9603m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9604m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9605m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ]) 9606m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9607m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9608m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9609m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9610m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9611m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9612m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [GCJ]) 9613m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [GCJ]) 9614m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ]) 9615m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9616m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9617m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9618m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9619m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9620m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9621m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ]) 9622m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9623m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9624m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ]) 9625m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ]) 9626m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9627m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9628m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9629m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9630m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9631m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9632m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9633m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9634m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9635m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9636m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9637m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9638m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9639m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9640m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9641m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9642m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9643m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9644m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9645m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9646m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9647m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9648m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9649m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ]) 9650m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ]) 9651m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9652m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [GCJ]) 9653m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9654m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ]) 9655m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9656m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ]) 9657m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ]) 9658m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9659m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9660m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ]) 9661m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ]) 9662m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9663m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9664m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ]) 9665m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9666m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ]) 9667m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [GCJ]) 9668m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9669m4trace:configure.ac:19: -1- _LT_AC_SYS_LIBPATH_AIX 9670m4trace: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... 9671../../lib/autoconf/general.m4:2661: _AC_LINK_IFELSE is expanded from... 9672../../lib/autoconf/general.m4:2678: AC_LINK_IFELSE is expanded from... 9673acinclude.m4:893: _LT_AC_SYS_LIBPATH_AIX is expanded from... 9674acinclude.m4:5946: AC_LIBTOOL_PROG_LD_SHLIBS is expanded from... 9675acinclude.m4:4605: _LT_AC_LANG_GCJ_CONFIG is expanded from... 9676acinclude.m4:4604: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from... 9677acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 9678acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 9679acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 9680acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 9681configure.ac:19: the top level]) 9682m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9683m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9684m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9685m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9686m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9687m4trace:configure.ac:19: -1- _LT_AC_SYS_LIBPATH_AIX 9688m4trace: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... 9689../../lib/autoconf/general.m4:2661: _AC_LINK_IFELSE is expanded from... 9690../../lib/autoconf/general.m4:2678: AC_LINK_IFELSE is expanded from... 9691acinclude.m4:893: _LT_AC_SYS_LIBPATH_AIX is expanded from... 9692acinclude.m4:5946: AC_LIBTOOL_PROG_LD_SHLIBS is expanded from... 9693acinclude.m4:4605: _LT_AC_LANG_GCJ_CONFIG is expanded from... 9694acinclude.m4:4604: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from... 9695acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 9696acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 9697acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 9698acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 9699configure.ac:19: the top level]) 9700m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9701m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ]) 9702m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9703m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ]) 9704m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ]) 9705m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9706m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9707m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9708m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ]) 9709m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9710m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ]) 9711m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9712m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9713m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9714m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [GCJ]) 9715m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [GCJ]) 9716m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([fix_srcfile_path], [GCJ]) 9717m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [GCJ]) 9718m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9719m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9720m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9721m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9722m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ]) 9723m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9724m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [GCJ]) 9725m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9726m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ]) 9727m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ]) 9728m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9729m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [GCJ]) 9730m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9731m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ]) 9732m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9733m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [GCJ]) 9734m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9735m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ]) 9736m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9737m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9738m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9739m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9740m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9741m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9742m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9743m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9744m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9745m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9746m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9747m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ]) 9748m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [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_shlibpath_var], [GCJ]) 9753m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9754m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9755m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9756m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ]) 9757m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9758m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ]) 9759m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ]) 9760m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9761m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9762m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9763m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ]) 9764m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9765m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ]) 9766m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ]) 9767m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9768m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9769m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9770m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9771m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9772m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9773m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9774m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ]) 9775m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [GCJ]) 9776m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9777m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9778m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9779m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ]) 9780m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ]) 9781m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9782m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9783m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [GCJ]) 9784m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9785m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ]) 9786m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ]) 9787m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9788m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9789m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9790m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9791m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9792m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9793m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9794m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9795m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ]) 9796m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9797m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9798m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9799m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9800m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9801m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9802m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ]) 9803m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9804m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9805m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9806m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9807m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9808m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ]) 9809m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9810m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9811m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [GCJ]) 9812m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9813m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9814m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9815m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9816m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9817m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ]) 9818m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9819m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9820m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9821m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9822m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9823m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9824m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9825m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ]) 9826m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ]) 9827m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9828m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9829m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9830m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9831m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9832m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9833m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ]) 9834m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ]) 9835m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ]) 9836m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9837m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9838m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9839m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9840m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ]) 9841m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9842m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9843m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9844m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9845m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([reload_cmds], [GCJ]) 9846m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9847m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9848m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9849m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9850m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9851m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9852m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ]) 9853m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9854m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9855m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9856m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ]) 9857m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ]) 9858m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [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([archive_cmds], [GCJ]) 9862m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9863m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ]) 9864m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9865m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ]) 9866m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9867m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9868m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ]) 9869m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ]) 9870m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ]) 9871m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9872m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9873m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9874m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9875m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9876m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9877m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9878m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9879m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9880m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9881m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ]) 9882m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ]) 9883m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ]) 9884m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9885m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9886m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9887m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9888m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9889m4trace:configure.ac:19: -2- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9890m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ]) 9891m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ]) 9892m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9893m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ]) 9894m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ]) 9895m4trace:configure.ac:19: -1- AC_LIBTOOL_SYS_DYNAMIC_LINKER([GCJ]) 9896m4trace:configure.ac:19: -1- AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([GCJ]) 9897m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ]) 9898m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9899m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([runpath_var], [GCJ]) 9900m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [GCJ]) 9901m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9902m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ]) 9903m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ]) 9904m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ]) 9905m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ]) 9906m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ]) 9907m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ]) 9908m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ]) 9909m4trace:configure.ac:19: -1- AC_LIBTOOL_CONFIG([GCJ]) 9910m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], [GCJ]) 9911m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([CC], [GCJ]) 9912m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([LD], [GCJ]) 9913m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9914m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9915m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9916m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ]) 9917m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ]) 9918m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [GCJ]) 9919m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ]) 9920m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [GCJ]) 9921m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [GCJ]) 9922m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [GCJ]) 9923m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [GCJ]) 9924m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [GCJ]) 9925m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predeps], [GCJ]) 9926m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [GCJ]) 9927m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [GCJ]) 9928m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9929m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9930m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postinstall_cmds], [GCJ]) 9931m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postuninstall_cmds], [GCJ]) 9932m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [GCJ]) 9933m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9934m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ]) 9935m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ]) 9936m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9937m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [GCJ]) 9938m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ]) 9939m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [GCJ]) 9940m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [GCJ]) 9941m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ]) 9942m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ]) 9943m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([exclude_expsyms], [GCJ]) 9944m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([include_expsyms], [GCJ]) 9945m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [GCJ]) 9946m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [GCJ]) 9947m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9948m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9949m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [GCJ]) 9950m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ]) 9951m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [GCJ]) 9952m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ]) 9953m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ]) 9954m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [GCJ]) 9955m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], [GCJ]) 9956m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([GCC], [GCJ]) 9957m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([LD], [GCJ]) 9958m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ]) 9959m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ]) 9960m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ]) 9961m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ]) 9962m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ]) 9963m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ]) 9964m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ]) 9965m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [GCJ]) 9966m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [GCJ]) 9967m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [GCJ]) 9968m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [GCJ]) 9969m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ]) 9970m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ]) 9971m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [GCJ]) 9972m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ]) 9973m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [GCJ]) 9974m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [GCJ]) 9975m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predeps], [GCJ]) 9976m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [GCJ]) 9977m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [GCJ]) 9978m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ]) 9979m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ]) 9980m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ]) 9981m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ]) 9982m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [GCJ]) 9983m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ]) 9984m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ]) 9985m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ]) 9986m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ]) 9987m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [GCJ]) 9988m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ]) 9989m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([fix_srcfile_path], [GCJ]) 9990m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [GCJ]) 9991m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ]) 9992m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([exclude_expsyms], [GCJ]) 9993m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([include_expsyms], [GCJ]) 9994m4trace:configure.ac:19: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. 9995You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... 9996acinclude.m4:4605: _LT_AC_LANG_GCJ_CONFIG is expanded from... 9997acinclude.m4:4604: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from... 9998acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 9999acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 10000acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 10001acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 10002configure.ac:19: the top level]) 10003m4trace:configure.ac:19: -1- AC_LIBTOOL_LANG_RC_CONFIG 10004m4trace:configure.ac:19: -1- _LT_AC_LANG_RC_CONFIG([RC]) 10005m4trace:configure.ac:19: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. 10006You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... 10007acinclude.m4:4665: _LT_AC_LANG_RC_CONFIG is expanded from... 10008acinclude.m4:4664: AC_LIBTOOL_LANG_RC_CONFIG is expanded from... 10009acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 10010acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 10011acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 10012acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 10013configure.ac:19: the top level]) 10014m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([objext], [RC]) 10015m4trace:configure.ac:19: -1- _LT_AC_SYS_COMPILER 10016m4trace:configure.ac:19: -1- _LT_COMPILER_BOILERPLATE 10017m4trace:configure.ac:19: -1- _LT_LINKER_BOILERPLATE 10018m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], [RC]) 10019m4trace:configure.ac:19: -1- _LT_CC_BASENAME([$compiler]) 10020m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [RC]) 10021m4trace:configure.ac:19: -1- AC_LIBTOOL_CONFIG([RC]) 10022m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], [RC]) 10023m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([CC], [RC]) 10024m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([LD], [RC]) 10025m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [RC]) 10026m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [RC]) 10027m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [RC]) 10028m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [RC]) 10029m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [RC]) 10030m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [RC]) 10031m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [RC]) 10032m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [RC]) 10033m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [RC]) 10034m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [RC]) 10035m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [RC]) 10036m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [RC]) 10037m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predeps], [RC]) 10038m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [RC]) 10039m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [RC]) 10040m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [RC]) 10041m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [RC]) 10042m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postinstall_cmds], [RC]) 10043m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postuninstall_cmds], [RC]) 10044m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [RC]) 10045m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [RC]) 10046m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [RC]) 10047m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [RC]) 10048m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [RC]) 10049m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [RC]) 10050m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [RC]) 10051m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [RC]) 10052m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [RC]) 10053m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [RC]) 10054m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [RC]) 10055m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([exclude_expsyms], [RC]) 10056m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([include_expsyms], [RC]) 10057m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [RC]) 10058m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [RC]) 10059m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [RC]) 10060m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [RC]) 10061m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [RC]) 10062m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [RC]) 10063m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [RC]) 10064m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [RC]) 10065m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [RC]) 10066m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [RC]) 10067m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler], [RC]) 10068m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([GCC], [RC]) 10069m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([LD], [RC]) 10070m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [RC]) 10071m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [RC]) 10072m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [RC]) 10073m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [RC]) 10074m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [RC]) 10075m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [RC]) 10076m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [RC]) 10077m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [RC]) 10078m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_cmds], [RC]) 10079m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [RC]) 10080m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [RC]) 10081m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_cmds], [RC]) 10082m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [RC]) 10083m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_cmds], [RC]) 10084m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([module_expsym_cmds], [RC]) 10085m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predep_objects], [RC]) 10086m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdep_objects], [RC]) 10087m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([predeps], [RC]) 10088m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([postdeps], [RC]) 10089m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [RC]) 10090m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([allow_undefined_flag], [RC]) 10091m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([no_undefined_flag], [RC]) 10092m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_action], [RC]) 10093m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [RC]) 10094m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [RC]) 10095m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [RC]) 10096m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_direct], [RC]) 10097m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_minus_L], [RC]) 10098m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [RC]) 10099m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([hardcode_automatic], [RC]) 10100m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([link_all_deplibs], [RC]) 10101m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([fix_srcfile_path], [RC]) 10102m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([always_export_symbols], [RC]) 10103m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([export_symbols_cmds], [RC]) 10104m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([exclude_expsyms], [RC]) 10105m4trace:configure.ac:19: -1- _LT_AC_TAGVAR([include_expsyms], [RC]) 10106m4trace:configure.ac:19: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. 10107You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... 10108acinclude.m4:4665: _LT_AC_LANG_RC_CONFIG is expanded from... 10109acinclude.m4:4664: AC_LIBTOOL_LANG_RC_CONFIG is expanded from... 10110acinclude.m4:2391: _LT_AC_TAGCONFIG is expanded from... 10111acinclude.m4:684: AC_LIBTOOL_SETUP is expanded from... 10112acinclude.m4:664: _AC_PROG_LIBTOOL is expanded from... 10113acinclude.m4:629: AC_PROG_LIBTOOL is expanded from... 10114configure.ac:19: the top level]) 10115m4trace:configure.ac:19: -1- m4_pattern_allow([^LIBTOOL$]) 10116m4trace:configure.ac:19: -1- AC_LIBTOOL_CXX 10117m4trace:configure.ac:19: -1- _LT_AC_LANG_CXX 10118m4trace:configure.ac:19: -1- _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX]) 10119m4trace:configure.ac:19: -1- AC_LIBTOOL_F77 10120m4trace:configure.ac:19: -1- _LT_AC_LANG_F77 10121m4trace:configure.ac:19: -1- _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}F77]) 10122m4trace:configure.ac:20: -1- m4_pattern_allow([^AR$]) 10123m4trace:configure.ac:43: -1- m4_pattern_allow([^ALLOW24BPP$]) 10124m4trace:configure.ac:48: -1- m4_pattern_allow([^with_ffmpeg$]) 10125m4trace:configure.ac:49: -1- AM_CONDITIONAL([WITH_FFMPEG], [test ! -z "$with_ffmpeg"]) 10126m4trace:configure.ac:49: -1- m4_pattern_allow([^WITH_FFMPEG_TRUE$]) 10127m4trace:configure.ac:49: -1- m4_pattern_allow([^WITH_FFMPEG_FALSE$]) 10128m4trace:configure.ac:49: -1- _AM_SUBST_NOTMAKE([WITH_FFMPEG_TRUE]) 10129m4trace:configure.ac:49: -1- _AM_SUBST_NOTMAKE([WITH_FFMPEG_FALSE]) 10130m4trace:configure.ac:53: -1- AM_CONDITIONAL([HAVE_MP3LAME], [test "$HAVE_MP3LAME" = "true"]) 10131m4trace:configure.ac:53: -1- m4_pattern_allow([^HAVE_MP3LAME_TRUE$]) 10132m4trace:configure.ac:53: -1- m4_pattern_allow([^HAVE_MP3LAME_FALSE$]) 10133m4trace:configure.ac:53: -1- _AM_SUBST_NOTMAKE([HAVE_MP3LAME_TRUE]) 10134m4trace:configure.ac:53: -1- _AM_SUBST_NOTMAKE([HAVE_MP3LAME_FALSE]) 10135m4trace:configure.ac:76: -1- m4_pattern_allow([^HAVE_CRYPT$]) 10136m4trace:configure.ac:78: -1- m4_pattern_allow([^HAVE_LIBCRYPT$]) 10137m4trace:configure.ac:83: -1- m4_pattern_allow([^CRYPT_LIBS$]) 10138m4trace:configure.ac:109: -1- m4_pattern_allow([^HAVE_LIBCRYPTO$]) 10139m4trace:configure.ac:122: -1- m4_pattern_allow([^HAVE_LIBSSL$]) 10140m4trace:configure.ac:127: -1- m4_pattern_allow([^HAVE_LIBSSL$]) 10141m4trace:configure.ac:132: -1- m4_pattern_allow([^SSL_LIBS$]) 10142m4trace:configure.ac:133: -1- AM_CONDITIONAL([HAVE_LIBSSL], [test ! -z "$SSL_LIBS"]) 10143m4trace:configure.ac:133: -1- m4_pattern_allow([^HAVE_LIBSSL_TRUE$]) 10144m4trace:configure.ac:133: -1- m4_pattern_allow([^HAVE_LIBSSL_FALSE$]) 10145m4trace:configure.ac:133: -1- _AM_SUBST_NOTMAKE([HAVE_LIBSSL_TRUE]) 10146m4trace:configure.ac:133: -1- _AM_SUBST_NOTMAKE([HAVE_LIBSSL_FALSE]) 10147m4trace:configure.ac:137: -1- m4_pattern_allow([^XMKMF$]) 10148m4trace:configure.ac:137: -1- m4_pattern_allow([^X_DISPLAY_MISSING$]) 10149m4trace:configure.ac:137: -1- m4_pattern_allow([^X_CFLAGS$]) 10150m4trace:configure.ac:137: -1- m4_pattern_allow([^X_PRE_LIBS$]) 10151m4trace:configure.ac:137: -1- m4_pattern_allow([^X_LIBS$]) 10152m4trace:configure.ac:137: -1- m4_pattern_allow([^X_EXTRA_LIBS$]) 10153m4trace:configure.ac:214: -1- m4_pattern_allow([^HAVE_X11$]) 10154m4trace:configure.ac:222: -1- m4_pattern_allow([^HAVE_XSHM$]) 10155m4trace:configure.ac:226: -1- m4_pattern_allow([^HAVE_SOLARIS_XREADSCREEN$]) 10156m4trace:configure.ac:230: -1- m4_pattern_allow([^HAVE_IRIX_XREADDISPLAY$]) 10157m4trace:configure.ac:235: -1- m4_pattern_allow([^HAVE_FBPM$]) 10158m4trace:configure.ac:241: -1- m4_pattern_allow([^HAVE_DPMS$]) 10159m4trace:configure.ac:246: -1- m4_pattern_allow([^HAVE_XTESTGRABCONTROL$]) 10160m4trace:configure.ac:251: -1- m4_pattern_allow([^HAVE_XTEST$]) 10161m4trace:configure.ac:257: -1- m4_pattern_allow([^HAVE_RECORD$]) 10162m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_LIBXTRAP$]) 10163m4trace:configure.ac:271: -1- m4_pattern_allow([^HAVE_LIBXTRAP$]) 10164m4trace:configure.ac:285: -1- m4_pattern_allow([^HAVE_XKEYBOARD$]) 10165m4trace:configure.ac:292: -1- m4_pattern_allow([^HAVE_LIBXINERAMA$]) 10166m4trace:configure.ac:299: -1- m4_pattern_allow([^HAVE_LIBXRANDR$]) 10167m4trace:configure.ac:306: -1- m4_pattern_allow([^HAVE_LIBXFIXES$]) 10168m4trace:configure.ac:313: -1- m4_pattern_allow([^HAVE_LIBXDAMAGE$]) 10169m4trace:configure.ac:337: -1- m4_pattern_allow([^X_LIBS$]) 10170m4trace:configure.ac:338: -1- AM_CONDITIONAL([HAVE_X11], [test $HAVE_X11 != "false"]) 10171m4trace:configure.ac:338: -1- m4_pattern_allow([^HAVE_X11_TRUE$]) 10172m4trace:configure.ac:338: -1- m4_pattern_allow([^HAVE_X11_FALSE$]) 10173m4trace:configure.ac:338: -1- _AM_SUBST_NOTMAKE([HAVE_X11_TRUE]) 10174m4trace:configure.ac:338: -1- _AM_SUBST_NOTMAKE([HAVE_X11_FALSE]) 10175m4trace:configure.ac:378: -1- m4_pattern_allow([^HAVE_LINUX_VIDEODEV_H$]) 10176m4trace:configure.ac:382: -1- m4_pattern_allow([^HAVE_LINUX_FB_H$]) 10177m4trace:configure.ac:386: -1- m4_pattern_allow([^HAVE_LINUX_INPUT_H$]) 10178m4trace:configure.ac:389: -1- m4_pattern_allow([^HAVE_LINUX_UINPUT_H$]) 10179m4trace:configure.ac:395: -1- m4_pattern_allow([^HAVE_MACOSX_NATIVE_DISPLAY$]) 10180m4trace:configure.ac:399: -1- m4_pattern_allow([^HAVE_MACOSX_OPENGL_H$]) 10181m4trace:configure.ac:424: -1- m4_pattern_allow([^HAVE_AVAHI$]) 10182m4trace:configure.ac:425: -1- m4_pattern_allow([^AVAHI_CFLAGS$]) 10183m4trace:configure.ac:426: -1- m4_pattern_allow([^AVAHI_LIBS$]) 10184m4trace:configure.ac:433: -1- AM_CONDITIONAL([OSX_OPENGL], [test "$HAVE_MACOSX_OPENGL_H" = "true"]) 10185m4trace:configure.ac:433: -1- m4_pattern_allow([^OSX_OPENGL_TRUE$]) 10186m4trace:configure.ac:433: -1- m4_pattern_allow([^OSX_OPENGL_FALSE$]) 10187m4trace:configure.ac:433: -1- _AM_SUBST_NOTMAKE([OSX_OPENGL_TRUE]) 10188m4trace:configure.ac:433: -1- _AM_SUBST_NOTMAKE([OSX_OPENGL_FALSE]) 10189m4trace:configure.ac:515: -1- m4_pattern_allow([^HAVE_SYSTEM_LIBVNCSERVER$]) 10190m4trace:configure.ac:516: -1- m4_pattern_allow([^SYSTEM_LIBVNCSERVER_CFLAGS$]) 10191m4trace:configure.ac:517: -1- m4_pattern_allow([^SYSTEM_LIBVNCSERVER_LIBS$]) 10192m4trace:configure.ac:519: -1- AM_CONDITIONAL([HAVE_SYSTEM_LIBVNCSERVER], [test "x$with_system_libvncserver" = "xyes"]) 10193m4trace:configure.ac:519: -1- m4_pattern_allow([^HAVE_SYSTEM_LIBVNCSERVER_TRUE$]) 10194m4trace:configure.ac:519: -1- m4_pattern_allow([^HAVE_SYSTEM_LIBVNCSERVER_FALSE$]) 10195m4trace:configure.ac:519: -1- _AM_SUBST_NOTMAKE([HAVE_SYSTEM_LIBVNCSERVER_TRUE]) 10196m4trace:configure.ac:519: -1- _AM_SUBST_NOTMAKE([HAVE_SYSTEM_LIBVNCSERVER_FALSE]) 10197m4trace:configure.ac:535: -1- m4_pattern_allow([^JPEG_LDFLAGS$]) 10198m4trace:configure.ac:562: -1- m4_pattern_allow([^HAVE_LIBJPEG$]) 10199m4trace: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... 10200configure.ac:603: the top level]) 10201m4trace:configure.ac:653: -1- m4_pattern_allow([^HAVE_LIBPNG$]) 10202m4trace:configure.ac:701: -1- m4_pattern_allow([^HAVE_LIBZ$]) 10203m4trace:configure.ac:731: -1- m4_pattern_allow([^HAVE_LIBPTHREAD$]) 10204m4trace:configure.ac:735: -1- AM_CONDITIONAL([HAVE_LIBPTHREAD], [test ! -z "$HAVE_LIBPTHREAD"]) 10205m4trace:configure.ac:735: -1- m4_pattern_allow([^HAVE_LIBPTHREAD_TRUE$]) 10206m4trace:configure.ac:735: -1- m4_pattern_allow([^HAVE_LIBPTHREAD_FALSE$]) 10207m4trace:configure.ac:735: -1- _AM_SUBST_NOTMAKE([HAVE_LIBPTHREAD_TRUE]) 10208m4trace:configure.ac:735: -1- _AM_SUBST_NOTMAKE([HAVE_LIBPTHREAD_FALSE]) 10209m4trace:configure.ac:738: -1- m4_pattern_allow([^HAVE_TLS$]) 10210m4trace:configure.ac:749: -1- m4_pattern_allow([^WITH_TIGHTVNC_FILETRANSFER$]) 10211m4trace:configure.ac:751: -1- AM_CONDITIONAL([WITH_TIGHTVNC_FILETRANSFER], [test "$with_tightvnc_filetransfer" = "yes"]) 10212m4trace:configure.ac:751: -1- m4_pattern_allow([^WITH_TIGHTVNC_FILETRANSFER_TRUE$]) 10213m4trace:configure.ac:751: -1- m4_pattern_allow([^WITH_TIGHTVNC_FILETRANSFER_FALSE$]) 10214m4trace:configure.ac:751: -1- _AM_SUBST_NOTMAKE([WITH_TIGHTVNC_FILETRANSFER_TRUE]) 10215m4trace:configure.ac:751: -1- _AM_SUBST_NOTMAKE([WITH_TIGHTVNC_FILETRANSFER_FALSE]) 10216m4trace:configure.ac:759: -1- m4_pattern_allow([^WITH_WEBSOCKETS$]) 10217m4trace:configure.ac:761: -1- AM_CONDITIONAL([WITH_WEBSOCKETS], [test "$with_websockets" = "yes"]) 10218m4trace:configure.ac:761: -1- m4_pattern_allow([^WITH_WEBSOCKETS_TRUE$]) 10219m4trace:configure.ac:761: -1- m4_pattern_allow([^WITH_WEBSOCKETS_FALSE$]) 10220m4trace:configure.ac:761: -1- _AM_SUBST_NOTMAKE([WITH_WEBSOCKETS_TRUE]) 10221m4trace:configure.ac:761: -1- _AM_SUBST_NOTMAKE([WITH_WEBSOCKETS_FALSE]) 10222m4trace:configure.ac:763: -1- AM_CONDITIONAL([HAVE_LIBZ], [test ! -z "$HAVE_ZLIB_H"]) 10223m4trace:configure.ac:763: -1- m4_pattern_allow([^HAVE_LIBZ_TRUE$]) 10224m4trace:configure.ac:763: -1- m4_pattern_allow([^HAVE_LIBZ_FALSE$]) 10225m4trace:configure.ac:763: -1- _AM_SUBST_NOTMAKE([HAVE_LIBZ_TRUE]) 10226m4trace:configure.ac:763: -1- _AM_SUBST_NOTMAKE([HAVE_LIBZ_FALSE]) 10227m4trace:configure.ac:764: -1- AM_CONDITIONAL([HAVE_LIBJPEG], [test ! -z "$HAVE_JPEGLIB_H"]) 10228m4trace:configure.ac:764: -1- m4_pattern_allow([^HAVE_LIBJPEG_TRUE$]) 10229m4trace:configure.ac:764: -1- m4_pattern_allow([^HAVE_LIBJPEG_FALSE$]) 10230m4trace:configure.ac:764: -1- _AM_SUBST_NOTMAKE([HAVE_LIBJPEG_TRUE]) 10231m4trace:configure.ac:764: -1- _AM_SUBST_NOTMAKE([HAVE_LIBJPEG_FALSE]) 10232m4trace:configure.ac:765: -1- AM_CONDITIONAL([HAVE_LIBPNG], [test ! -z "$HAVE_PNGLIB_H"]) 10233m4trace:configure.ac:765: -1- m4_pattern_allow([^HAVE_LIBPNG_TRUE$]) 10234m4trace:configure.ac:765: -1- m4_pattern_allow([^HAVE_LIBPNG_FALSE$]) 10235m4trace:configure.ac:765: -1- _AM_SUBST_NOTMAKE([HAVE_LIBPNG_TRUE]) 10236m4trace:configure.ac:765: -1- _AM_SUBST_NOTMAKE([HAVE_LIBPNG_FALSE]) 10237m4trace:configure.ac:788: -1- AM_CONDITIONAL([HAVE_LIBSDL], [test "x$with_sdl" = "xyes"]) 10238m4trace:configure.ac:788: -1- m4_pattern_allow([^HAVE_LIBSDL_TRUE$]) 10239m4trace:configure.ac:788: -1- m4_pattern_allow([^HAVE_LIBSDL_FALSE$]) 10240m4trace:configure.ac:788: -1- _AM_SUBST_NOTMAKE([HAVE_LIBSDL_TRUE]) 10241m4trace:configure.ac:788: -1- _AM_SUBST_NOTMAKE([HAVE_LIBSDL_FALSE]) 10242m4trace:configure.ac:789: -1- m4_pattern_allow([^SDL_CFLAGS$]) 10243m4trace:configure.ac:790: -1- m4_pattern_allow([^SDL_LIBS$]) 10244m4trace:configure.ac:794: -1- PKG_CHECK_MODULES([GTK], [gtk+-2.0], [], [:]) 10245m4trace:configure.ac:794: -1- PKG_PROG_PKG_CONFIG 10246m4trace:configure.ac:794: -1- m4_pattern_forbid([^_?PKG_[A-Z_]+$]) 10247m4trace:configure.ac:794: -1- m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) 10248m4trace:configure.ac:794: -1- m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$]) 10249m4trace:configure.ac:794: -1- m4_pattern_allow([^PKG_CONFIG$]) 10250m4trace:configure.ac:794: -1- m4_pattern_allow([^PKG_CONFIG_PATH$]) 10251m4trace:configure.ac:794: -1- m4_pattern_allow([^PKG_CONFIG_LIBDIR$]) 10252m4trace:configure.ac:794: -1- m4_pattern_allow([^PKG_CONFIG$]) 10253m4trace:configure.ac:794: -1- m4_pattern_allow([^GTK_CFLAGS$]) 10254m4trace:configure.ac:794: -1- m4_pattern_allow([^GTK_LIBS$]) 10255m4trace:configure.ac:794: -1- PKG_CHECK_EXISTS([gtk+-2.0], [pkg_cv_[]GTK_CFLAGS=`$PKG_CONFIG --[]cflags "gtk+-2.0" 2>/dev/null` 10256 test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) 10257m4trace:configure.ac:794: -1- PKG_CHECK_EXISTS([gtk+-2.0], [pkg_cv_[]GTK_LIBS=`$PKG_CONFIG --[]libs "gtk+-2.0" 2>/dev/null` 10258 test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) 10259m4trace:configure.ac:794: -1- _PKG_SHORT_ERRORS_SUPPORTED 10260m4trace:configure.ac:795: -1- AM_CONDITIONAL([HAVE_LIBGTK], [test ! -z "$GTK_LIBS"]) 10261m4trace:configure.ac:795: -1- m4_pattern_allow([^HAVE_LIBGTK_TRUE$]) 10262m4trace:configure.ac:795: -1- m4_pattern_allow([^HAVE_LIBGTK_FALSE$]) 10263m4trace:configure.ac:795: -1- _AM_SUBST_NOTMAKE([HAVE_LIBGTK_TRUE]) 10264m4trace:configure.ac:795: -1- _AM_SUBST_NOTMAKE([HAVE_LIBGTK_FALSE]) 10265m4trace:configure.ac:799: -1- AM_CONDITIONAL([MINGW], [test ! -z "$MINGW" ]) 10266m4trace:configure.ac:799: -1- m4_pattern_allow([^MINGW_TRUE$]) 10267m4trace:configure.ac:799: -1- m4_pattern_allow([^MINGW_FALSE$]) 10268m4trace:configure.ac:799: -1- _AM_SUBST_NOTMAKE([MINGW_TRUE]) 10269m4trace:configure.ac:799: -1- _AM_SUBST_NOTMAKE([MINGW_FALSE]) 10270m4trace:configure.ac:804: -1- m4_pattern_allow([^WSOCKLIB$]) 10271m4trace:configure.ac:814: -1- AM_PATH_LIBGCRYPT([1.4.0], [], [with_client_gcrypt=no]) 10272m4trace:configure.ac:814: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. 10273You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... 10274acinclude.m4:7025: AM_PATH_LIBGCRYPT is expanded from... 10275configure.ac:814: the top level]) 10276m4trace:configure.ac:814: -1- m4_pattern_allow([^LIBGCRYPT_CONFIG$]) 10277m4trace:configure.ac:814: -1- m4_pattern_allow([^LIBGCRYPT_CFLAGS$]) 10278m4trace:configure.ac:814: -1- m4_pattern_allow([^LIBGCRYPT_LIBS$]) 10279m4trace:configure.ac:818: -1- m4_pattern_allow([^WITH_CLIENT_GCRYPT$]) 10280m4trace:configure.ac:829: -1- PKG_CHECK_MODULES([GNUTLS], [gnutls >= 2.4.0], [], [:]) 10281m4trace:configure.ac:829: -1- m4_pattern_allow([^GNUTLS_CFLAGS$]) 10282m4trace:configure.ac:829: -1- m4_pattern_allow([^GNUTLS_LIBS$]) 10283m4trace:configure.ac:829: -1- PKG_CHECK_EXISTS([gnutls >= 2.4.0], [pkg_cv_[]GNUTLS_CFLAGS=`$PKG_CONFIG --[]cflags "gnutls >= 2.4.0" 2>/dev/null` 10284 test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) 10285m4trace:configure.ac:829: -1- PKG_CHECK_EXISTS([gnutls >= 2.4.0], [pkg_cv_[]GNUTLS_LIBS=`$PKG_CONFIG --[]libs "gnutls >= 2.4.0" 2>/dev/null` 10286 test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) 10287m4trace:configure.ac:829: -1- _PKG_SHORT_ERRORS_SUPPORTED 10288m4trace:configure.ac:833: -1- AM_CONDITIONAL([HAVE_GNUTLS], [test ! -z "$GNUTLS_LIBS"]) 10289m4trace:configure.ac:833: -1- m4_pattern_allow([^HAVE_GNUTLS_TRUE$]) 10290m4trace:configure.ac:833: -1- m4_pattern_allow([^HAVE_GNUTLS_FALSE$]) 10291m4trace:configure.ac:833: -1- _AM_SUBST_NOTMAKE([HAVE_GNUTLS_TRUE]) 10292m4trace:configure.ac:833: -1- _AM_SUBST_NOTMAKE([HAVE_GNUTLS_FALSE]) 10293m4trace:configure.ac:835: -1- m4_pattern_allow([^HAVE_GNUTLS$]) 10294m4trace:configure.ac:858: -2- m4_pattern_allow([^IPv6$]) 10295m4trace:configure.ac:859: -3- m4_pattern_allow([^IPv6$]) 10296m4trace:configure.ac:859: -2- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. 10297You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... 10298../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... 10299../../lib/autoconf/libs.m4:99: AC_CHECK_LIB is expanded from... 10300configure.ac:859: the top level]) 10301m4trace:configure.ac:859: -2- m4_pattern_allow([^IPv6$]) 10302m4trace:configure.ac:873: -1- m4_pattern_allow([^STDC_HEADERS$]) 10303m4trace:configure.ac:882: -1- m4_pattern_allow([^const$]) 10304m4trace:configure.ac:884: -1- m4_pattern_allow([^WORDS_BIGENDIAN$]) 10305m4trace:configure.ac:884: -1- m4_pattern_allow([^AC_APPLE_UNIVERSAL_BUILD$]) 10306m4trace:configure.ac:885: -1- m4_pattern_allow([^size_t$]) 10307m4trace:configure.ac:886: -1- m4_pattern_allow([^TIME_WITH_SYS_TIME$]) 10308m4trace:configure.ac:887: -1- m4_pattern_allow([^HAVE_SYS_WAIT_H$]) 10309m4trace:configure.ac:888: -1- AC_TYPE_SOCKLEN_T 10310m4trace:configure.ac:888: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. 10311You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... 10312../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... 10313../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... 10314../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... 10315acinclude.m4:2: AC_TYPE_SOCKLEN_T is expanded from... 10316configure.ac:888: the top level]) 10317m4trace:configure.ac:888: -1- m4_pattern_allow([^socklen_t$]) 10318m4trace:configure.ac:893: -1- AC_CREATE_STDINT_H([rfb/rfbint.h]) 10319m4trace:configure.ac:893: -1- AC_COMPILE_CHECK_SIZEOF([char]) 10320m4trace:configure.ac:893: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. 10321You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... 10322../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... 10323../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... 10324acinclude.m4:20: AC_COMPILE_CHECK_SIZEOF is expanded from... 10325acinclude.m4:49: AC_CREATE_STDINT_H is expanded from... 10326configure.ac:893: the top level]) 10327m4trace:configure.ac:893: -1- m4_pattern_allow([^SIZEOF_CHAR$]) 10328m4trace:configure.ac:893: -1- AC_COMPILE_CHECK_SIZEOF([short]) 10329m4trace:configure.ac:893: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. 10330You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... 10331../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... 10332../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... 10333acinclude.m4:20: AC_COMPILE_CHECK_SIZEOF is expanded from... 10334acinclude.m4:49: AC_CREATE_STDINT_H is expanded from... 10335configure.ac:893: the top level]) 10336m4trace:configure.ac:893: -1- m4_pattern_allow([^SIZEOF_SHORT$]) 10337m4trace:configure.ac:893: -1- AC_COMPILE_CHECK_SIZEOF([int]) 10338m4trace:configure.ac:893: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. 10339You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... 10340../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... 10341../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... 10342acinclude.m4:20: AC_COMPILE_CHECK_SIZEOF is expanded from... 10343acinclude.m4:49: AC_CREATE_STDINT_H is expanded from... 10344configure.ac:893: the top level]) 10345m4trace:configure.ac:893: -1- m4_pattern_allow([^SIZEOF_INT$]) 10346m4trace:configure.ac:893: -1- AC_COMPILE_CHECK_SIZEOF([long]) 10347m4trace:configure.ac:893: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. 10348You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... 10349../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... 10350../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... 10351acinclude.m4:20: AC_COMPILE_CHECK_SIZEOF is expanded from... 10352acinclude.m4:49: AC_CREATE_STDINT_H is expanded from... 10353configure.ac:893: the top level]) 10354m4trace:configure.ac:893: -1- m4_pattern_allow([^SIZEOF_LONG$]) 10355m4trace:configure.ac:893: -1- AC_COMPILE_CHECK_SIZEOF([void*]) 10356m4trace:configure.ac:893: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. 10357You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... 10358../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... 10359../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... 10360acinclude.m4:20: AC_COMPILE_CHECK_SIZEOF is expanded from... 10361acinclude.m4:49: AC_CREATE_STDINT_H is expanded from... 10362configure.ac:893: the top level]) 10363m4trace:configure.ac:893: -1- m4_pattern_allow([^SIZEOF_VOIDP$]) 10364m4trace:configure.ac:894: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. 10365You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... 10366../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... 10367../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... 10368../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... 10369configure.ac:894: the top level]) 10370m4trace:configure.ac:904: -1- m4_pattern_allow([^NEED_INADDR_T$]) 10371m4trace:configure.ac:907: -1- m4_pattern_allow([^LIB@&t@OBJS$]) 10372m4trace:configure.ac:908: -1- m4_pattern_allow([^LSTAT_FOLLOWS_SLASHED_SYMLINK$]) 10373m4trace:configure.ac:908: -1- m4_pattern_allow([^LIB@&t@OBJS$]) 10374m4trace:configure.ac:908: -1- m4_pattern_allow([^LIB@&t@OBJS$]) 10375m4trace:configure.ac:908: -1- m4_pattern_allow([^HAVE_STAT_EMPTY_STRING_BUG$]) 10376m4trace:configure.ac:909: -1- m4_pattern_allow([^HAVE_STRFTIME$]) 10377m4trace:configure.ac:909: -1- m4_pattern_allow([^HAVE_STRFTIME$]) 10378m4trace:configure.ac:910: -1- m4_pattern_allow([^HAVE_VPRINTF$]) 10379m4trace:configure.ac:910: -1- m4_pattern_allow([^HAVE_DOPRNT$]) 10380m4trace:configure.ac:911: -1- m4_pattern_allow([^pid_t$]) 10381m4trace:configure.ac:911: -1- m4_pattern_allow([^HAVE_VFORK_H$]) 10382m4trace:configure.ac:911: -1- m4_pattern_allow([^HAVE_WORKING_VFORK$]) 10383m4trace:configure.ac:911: -1- m4_pattern_allow([^vfork$]) 10384m4trace:configure.ac:911: -1- m4_pattern_allow([^HAVE_WORKING_FORK$]) 10385m4trace:configure.ac:912: -1- m4_pattern_allow([^HAVE_LIBNSL$]) 10386m4trace:configure.ac:913: -1- m4_pattern_allow([^HAVE_LIBSOCKET$]) 10387m4trace:configure.ac:928: -1- m4_pattern_allow([^HAVE_LIBCYGIPC$]) 10388m4trace:configure.ac:929: -1- AM_CONDITIONAL([CYGIPC], [test "$HAVE_CYGIPC" = "true"]) 10389m4trace:configure.ac:929: -1- m4_pattern_allow([^CYGIPC_TRUE$]) 10390m4trace:configure.ac:929: -1- m4_pattern_allow([^CYGIPC_FALSE$]) 10391m4trace:configure.ac:929: -1- _AM_SUBST_NOTMAKE([CYGIPC_TRUE]) 10392m4trace:configure.ac:929: -1- _AM_SUBST_NOTMAKE([CYGIPC_FALSE]) 10393m4trace:configure.ac:932: -1- AM_CONDITIONAL([LINUX], [test -d /usr/include/linux]) 10394m4trace:configure.ac:932: -1- m4_pattern_allow([^LINUX_TRUE$]) 10395m4trace:configure.ac:932: -1- m4_pattern_allow([^LINUX_FALSE$]) 10396m4trace:configure.ac:932: -1- _AM_SUBST_NOTMAKE([LINUX_TRUE]) 10397m4trace:configure.ac:932: -1- _AM_SUBST_NOTMAKE([LINUX_FALSE]) 10398m4trace:configure.ac:936: -1- AM_CONDITIONAL([OSX], [test "$HAVE_OSX" = "true"]) 10399m4trace:configure.ac:936: -1- m4_pattern_allow([^OSX_TRUE$]) 10400m4trace:configure.ac:936: -1- m4_pattern_allow([^OSX_FALSE$]) 10401m4trace:configure.ac:936: -1- _AM_SUBST_NOTMAKE([OSX_TRUE]) 10402m4trace:configure.ac:936: -1- _AM_SUBST_NOTMAKE([OSX_FALSE]) 10403m4trace:configure.ac:940: -1- AM_CONDITIONAL([ANDROID], [test "$HAVE_ANDROID" = "true"]) 10404m4trace:configure.ac:940: -1- m4_pattern_allow([^ANDROID_TRUE$]) 10405m4trace:configure.ac:940: -1- m4_pattern_allow([^ANDROID_FALSE$]) 10406m4trace:configure.ac:940: -1- _AM_SUBST_NOTMAKE([ANDROID_TRUE]) 10407m4trace:configure.ac:940: -1- _AM_SUBST_NOTMAKE([ANDROID_FALSE]) 10408m4trace:configure.ac:942: -1- m4_pattern_allow([^HAVE_ANDROID$]) 10409m4trace:configure.ac:949: -1- m4_pattern_allow([^ENOENT_WORKAROUND$]) 10410m4trace:configure.ac:962: -1- AM_CONDITIONAL([HAVE_RPM], [test "$RPMSOURCEDIR" != "NOT-FOUND"]) 10411m4trace:configure.ac:962: -1- m4_pattern_allow([^HAVE_RPM_TRUE$]) 10412m4trace:configure.ac:962: -1- m4_pattern_allow([^HAVE_RPM_FALSE$]) 10413m4trace:configure.ac:962: -1- _AM_SUBST_NOTMAKE([HAVE_RPM_TRUE]) 10414m4trace:configure.ac:962: -1- _AM_SUBST_NOTMAKE([HAVE_RPM_FALSE]) 10415m4trace:configure.ac:963: -1- AM_CONDITIONAL([WITH_X11VNC], [test "$build_x11vnc" = "yes"]) 10416m4trace:configure.ac:963: -1- m4_pattern_allow([^WITH_X11VNC_TRUE$]) 10417m4trace:configure.ac:963: -1- m4_pattern_allow([^WITH_X11VNC_FALSE$]) 10418m4trace:configure.ac:963: -1- _AM_SUBST_NOTMAKE([WITH_X11VNC_TRUE]) 10419m4trace:configure.ac:963: -1- _AM_SUBST_NOTMAKE([WITH_X11VNC_FALSE]) 10420m4trace:configure.ac:964: -1- m4_pattern_allow([^RPMSOURCEDIR$]) 10421m4trace:configure.ac:1013: -1- m4_pattern_allow([^LIB@&t@OBJS$]) 10422m4trace:configure.ac:1013: -1- m4_pattern_allow([^LTLIBOBJS$]) 10423m4trace:configure.ac:1013: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"]) 10424m4trace:configure.ac:1013: -1- m4_pattern_allow([^am__EXEEXT_TRUE$]) 10425m4trace:configure.ac:1013: -1- m4_pattern_allow([^am__EXEEXT_FALSE$]) 10426m4trace:configure.ac:1013: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE]) 10427m4trace:configure.ac:1013: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE]) 10428m4trace:configure.ac:1013: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"]) 10429m4trace:configure.ac:1013: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS 10430