configure
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:717k
源码类别:

网格计算

开发平台:

Java

  1.   archive_expsym_cmds='$echo "{ global:" > $output_objdir/$libname.ver~
  2.   cat $export_symbols | sed -e "s/(.*)/1;/" >> $output_objdir/$libname.ver~
  3.   $echo "local: *; };" >> $output_objdir/$libname.ver~
  4.   $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
  5. fi
  6.       else
  7. ld_shlibs=no
  8.       fi
  9.       ;;
  10.     netbsd*)
  11.       if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
  12. archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
  13. wlarc=
  14.       else
  15. archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  16. archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
  17.       fi
  18.       ;;
  19.     solaris* | sysv5*)
  20.       if $LD -v 2>&1 | grep 'BFD 2.8' > /dev/null; then
  21. ld_shlibs=no
  22. cat <<EOF 1>&2
  23. *** Warning: The releases 2.8.* of the GNU linker cannot reliably
  24. *** create shared libraries on Solaris systems.  Therefore, libtool
  25. *** is disabling shared libraries support.  We urge you to upgrade GNU
  26. *** binutils to release 2.9.1 or newer.  Another option is to modify
  27. *** your PATH or compiler configuration so that the native linker is
  28. *** used, and then restart.
  29. EOF
  30.       elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
  31. archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  32. archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
  33.       else
  34. ld_shlibs=no
  35.       fi
  36.       ;;
  37.     sunos4*)
  38.       archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'
  39.       wlarc=
  40.       hardcode_direct=yes
  41.       hardcode_shlibpath_var=no
  42.       ;;
  43.     *)
  44.       if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
  45. archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  46. archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
  47.       else
  48. ld_shlibs=no
  49.       fi
  50.       ;;
  51.     esac
  52.     if test "$ld_shlibs" = no; then
  53.       runpath_var=
  54.       hardcode_libdir_flag_spec=
  55.       export_dynamic_flag_spec=
  56.       whole_archive_flag_spec=
  57.     fi
  58.   else
  59.     # PORTME fill in a description of your system's linker (not GNU ld)
  60.     case $host_os in
  61.     aix3*)
  62.       allow_undefined_flag=unsupported
  63.       always_export_symbols=yes
  64.       archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname'
  65.       # Note: this linker hardcodes the directories in LIBPATH if there
  66.       # are no directories specified by -L.
  67.       hardcode_minus_L=yes
  68.       if test "$GCC" = yes && test -z "$link_static_flag"; then
  69. # Neither direct hardcoding nor static linking is supported with a
  70. # broken collect2.
  71. hardcode_direct=unsupported
  72.       fi
  73.       ;;
  74.     aix4* | aix5*)
  75.       if test "$host_cpu" = ia64; then
  76. # On IA64, the linker does run time linking by default, so we don't
  77. # have to do anything special.
  78. aix_use_runtimelinking=no
  79. exp_sym_flag='-Bexport'
  80. no_entry_flag=""
  81.       else
  82. # If we're using GNU nm, then we don't want the "-C" option.
  83. # -C means demangle to AIX nm, but means don't demangle with GNU nm
  84. if $NM -V 2>&1 | grep 'GNU' > /dev/null; then
  85.   export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '''{ if ((($2 == "T") || ($2 == "D") || ($2 == "B")) && (substr($3,1,1) != ".")) { print $3 } }''' | sort -u > $export_symbols'
  86. else
  87.   export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '''{ if ((($2 == "T") || ($2 == "D") || ($2 == "B")) && (substr($3,1,1) != ".")) { print $3 } }''' | sort -u > $export_symbols'
  88. fi
  89. aix_use_runtimelinking=no
  90. # Test if we are trying to use run time linking or normal
  91. # AIX style linking. If -brtl is somewhere in LDFLAGS, we
  92. # need to do runtime linking.
  93. case $host_os in aix4.[23]|aix4.[23].*|aix5*)
  94.   for ld_flag in $LDFLAGS; do
  95.      if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
  96.        aix_use_runtimelinking=yes
  97.        break
  98.      fi
  99.   done
  100. esac
  101. exp_sym_flag='-bexport'
  102. no_entry_flag='-bnoentry'
  103.       fi
  104.       # When large executables or shared objects are built, AIX ld can
  105.       # have problems creating the table of contents.  If linking a library
  106.       # or program results in "error TOC overflow" add -mminimal-toc to
  107.       # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
  108.       # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
  109.       archive_cmds=''
  110.       hardcode_direct=yes
  111.       hardcode_libdir_separator=':'
  112.       link_all_deplibs=yes
  113.       if test "$GCC" = yes; then
  114. case $host_os in aix4.[012]|aix4.[012].*)
  115. # We only want to do this on AIX 4.2 and lower, the check
  116. # below for broken collect2 doesn't work under 4.3+
  117.   collect2name=`${CC} -print-prog-name=collect2`
  118.   if test -f "$collect2name" && 
  119.       strings "$collect2name" | grep resolve_lib_name >/dev/null
  120.   then
  121.      # We have reworked collect2
  122.      hardcode_direct=yes
  123.   else
  124.      # We have old collect2
  125.      hardcode_direct=unsupported
  126.      # It fails to find uninstalled libraries when the uninstalled
  127.      # path is not listed in the libpath.  Setting hardcode_minus_L
  128.      # to unsupported forces relinking
  129.      hardcode_minus_L=yes
  130.      hardcode_libdir_flag_spec='-L$libdir'
  131.      hardcode_libdir_separator=
  132.   fi
  133. esac
  134. shared_flag='-shared'
  135. if test "$aix_use_runtimelinking" = yes; then
  136.   shared_flag="$shared_flag "'${wl}-G'
  137. fi
  138.       else
  139. # not using gcc
  140. if test "$host_cpu" = ia64; then
  141.    # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
  142.    # chokes on -Wl,-G. The following line is correct:
  143.   shared_flag='-G'
  144. else
  145.    if test "$aix_use_runtimelinking" = yes; then
  146.     shared_flag='${wl}-G'
  147.   else
  148.     shared_flag='${wl}-bM:SRE'
  149.    fi
  150. fi
  151.       fi
  152.       # It seems that -bexpall does not export symbols beginning with
  153.       # underscore (_), so it is better to generate a list of symbols to export.
  154.       always_export_symbols=yes
  155.       if test "$aix_use_runtimelinking" = yes; then
  156. # Warning - without using the other runtime loading flags (-brtl),
  157. # -berok will link without error, but may produce a broken library.
  158. allow_undefined_flag='-berok'
  159.        # Determine the default libpath from the value encoded in an empty executable.
  160.        cat >conftest.$ac_ext <<_ACEOF
  161. /* confdefs.h.  */
  162. _ACEOF
  163. cat confdefs.h >>conftest.$ac_ext
  164. cat >>conftest.$ac_ext <<_ACEOF
  165. /* end confdefs.h.  */
  166. int
  167. main ()
  168. {
  169.   ;
  170.   return 0;
  171. }
  172. _ACEOF
  173. rm -f conftest.$ac_objext conftest$ac_exeext
  174. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  175.   (eval $ac_link) 2>conftest.er1
  176.   ac_status=$?
  177.   grep -v '^ *+' conftest.er1 >conftest.err
  178.   rm -f conftest.er1
  179.   cat conftest.err >&5
  180.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  181.   (exit $ac_status); } &&
  182.  { ac_try='test -z "$ac_c_werror_flag"
  183.  || test ! -s conftest.err'
  184.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  185.   (eval $ac_try) 2>&5
  186.   ac_status=$?
  187.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  188.   (exit $ac_status); }; } &&
  189.  { ac_try='test -s conftest$ac_exeext'
  190.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  191.   (eval $ac_try) 2>&5
  192.   ac_status=$?
  193.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  194.   (exit $ac_status); }; }; then
  195. aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *(.*)$/1/; p; }
  196. }'`
  197. # Check for a 64-bit object if we didn't find anything.
  198. if 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; }
  199. }'`; fi
  200. else
  201.   echo "$as_me: failed program was:" >&5
  202. sed 's/^/| /' conftest.$ac_ext >&5
  203. fi
  204. rm -f conftest.err conftest.$ac_objext 
  205.       conftest$ac_exeext conftest.$ac_ext
  206. if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
  207.        hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
  208. archive_expsym_cmds="$CC"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"${wl}$no_entry_flag ${wl}$exp_sym_flag:$export_symbols $shared_flag"
  209.        else
  210. if test "$host_cpu" = ia64; then
  211.   hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib'
  212.   allow_undefined_flag="-z nodefs"
  213.   archive_expsym_cmds="$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}${allow_undefined_flag} '"${wl}$no_entry_flag ${wl}$exp_sym_flag:$export_symbols"
  214. else
  215.  # Determine the default libpath from the value encoded in an empty executable.
  216.  cat >conftest.$ac_ext <<_ACEOF
  217. /* confdefs.h.  */
  218. _ACEOF
  219. cat confdefs.h >>conftest.$ac_ext
  220. cat >>conftest.$ac_ext <<_ACEOF
  221. /* end confdefs.h.  */
  222. int
  223. main ()
  224. {
  225.   ;
  226.   return 0;
  227. }
  228. _ACEOF
  229. rm -f conftest.$ac_objext conftest$ac_exeext
  230. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  231.   (eval $ac_link) 2>conftest.er1
  232.   ac_status=$?
  233.   grep -v '^ *+' conftest.er1 >conftest.err
  234.   rm -f conftest.er1
  235.   cat conftest.err >&5
  236.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  237.   (exit $ac_status); } &&
  238.  { ac_try='test -z "$ac_c_werror_flag"
  239.  || test ! -s conftest.err'
  240.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  241.   (eval $ac_try) 2>&5
  242.   ac_status=$?
  243.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  244.   (exit $ac_status); }; } &&
  245.  { ac_try='test -s conftest$ac_exeext'
  246.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  247.   (eval $ac_try) 2>&5
  248.   ac_status=$?
  249.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  250.   (exit $ac_status); }; }; then
  251. aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *(.*)$/1/; p; }
  252. }'`
  253. # Check for a 64-bit object if we didn't find anything.
  254. if 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; }
  255. }'`; fi
  256. else
  257.   echo "$as_me: failed program was:" >&5
  258. sed 's/^/| /' conftest.$ac_ext >&5
  259. fi
  260. rm -f conftest.err conftest.$ac_objext 
  261.       conftest$ac_exeext conftest.$ac_ext
  262. if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
  263.  hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
  264.   # Warning - without using the other run time loading flags,
  265.   # -berok will link without error, but may produce a broken library.
  266.   no_undefined_flag=' ${wl}-bernotok'
  267.   allow_undefined_flag=' ${wl}-berok'
  268.   # -bexpall does not export symbols beginning with underscore (_)
  269.   always_export_symbols=yes
  270.   # Exported symbols can be pulled into shared objects from archives
  271.   whole_archive_flag_spec=' '
  272.   archive_cmds_need_lc=yes
  273.   # This is similar to how AIX traditionally builds its shared libraries.
  274.   archive_expsym_cmds="$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}-bE:$export_symbols ${wl}-bnoentry${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
  275. fi
  276.       fi
  277.       ;;
  278.     amigaos*)
  279.       archive_cmds='$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)'
  280.       hardcode_libdir_flag_spec='-L$libdir'
  281.       hardcode_minus_L=yes
  282.       # see comment about different semantics on the GNU ld section
  283.       ld_shlibs=no
  284.       ;;
  285.     bsdi[45]*)
  286.       export_dynamic_flag_spec=-rdynamic
  287.       ;;
  288.     cygwin* | mingw* | pw32*)
  289.       # When not using gcc, we currently assume that we are using
  290.       # Microsoft Visual C++.
  291.       # hardcode_libdir_flag_spec is actually meaningless, as there is
  292.       # no search path for DLLs.
  293.       hardcode_libdir_flag_spec=' '
  294.       allow_undefined_flag=unsupported
  295.       # Tell ltmain to make .lib files, not .a files.
  296.       libext=lib
  297.       # Tell ltmain to make .dll files, not .so files.
  298.       shrext_cmds=".dll"
  299.       # FIXME: Setting linknames here is a bad hack.
  300.       archive_cmds='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '''s/ -lc$//'''` -link -dll~linknames='
  301.       # The linker will automatically build a .lib file if we build a DLL.
  302.       old_archive_From_new_cmds='true'
  303.       # FIXME: Should let the user specify the lib program.
  304.       old_archive_cmds='lib /OUT:$oldlib$oldobjs$old_deplibs'
  305.       fix_srcfile_path='`cygpath -w "$srcfile"`'
  306.       enable_shared_with_static_runtimes=yes
  307.       ;;
  308.     darwin* | rhapsody*)
  309.       case $host_os in
  310.         rhapsody* | darwin1.[012])
  311.          allow_undefined_flag='${wl}-undefined ${wl}suppress'
  312.          ;;
  313.        *) # Darwin 1.3 on
  314.          if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
  315.            allow_undefined_flag='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
  316.          else
  317.            case ${MACOSX_DEPLOYMENT_TARGET} in
  318.              10.[012])
  319.                allow_undefined_flag='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
  320.                ;;
  321.              10.*)
  322.                allow_undefined_flag='${wl}-undefined ${wl}dynamic_lookup'
  323.                ;;
  324.            esac
  325.          fi
  326.          ;;
  327.       esac
  328.       archive_cmds_need_lc=no
  329.       hardcode_direct=no
  330.       hardcode_automatic=yes
  331.       hardcode_shlibpath_var=unsupported
  332.       whole_archive_flag_spec=''
  333.       link_all_deplibs=yes
  334.     if test "$GCC" = yes ; then
  335.      output_verbose_link_cmd='echo'
  336.         archive_cmds='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring'
  337.       module_cmds='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
  338.       # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
  339.       archive_expsym_cmds='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}'
  340.       module_expsym_cmds='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}'
  341.     else
  342.       case $cc_basename in
  343.         xlc*)
  344.          output_verbose_link_cmd='echo'
  345.          archive_cmds='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring'
  346.          module_cmds='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
  347.           # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
  348.          archive_expsym_cmds='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}'
  349.           module_expsym_cmds='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}'
  350.           ;;
  351.        *)
  352.          ld_shlibs=no
  353.           ;;
  354.       esac
  355.     fi
  356.       ;;
  357.     dgux*)
  358.       archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  359.       hardcode_libdir_flag_spec='-L$libdir'
  360.       hardcode_shlibpath_var=no
  361.       ;;
  362.     freebsd1*)
  363.       ld_shlibs=no
  364.       ;;
  365.     # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
  366.     # support.  Future versions do this automatically, but an explicit c++rt0.o
  367.     # does not break anything, and helps significantly (at the cost of a little
  368.     # extra space).
  369.     freebsd2.2*)
  370.       archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'
  371.       hardcode_libdir_flag_spec='-R$libdir'
  372.       hardcode_direct=yes
  373.       hardcode_shlibpath_var=no
  374.       ;;
  375.     # Unfortunately, older versions of FreeBSD 2 do not have this feature.
  376.     freebsd2*)
  377.       archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
  378.       hardcode_direct=yes
  379.       hardcode_minus_L=yes
  380.       hardcode_shlibpath_var=no
  381.       ;;
  382.     # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
  383.     freebsd* | kfreebsd*-gnu | dragonfly*)
  384.       archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
  385.       hardcode_libdir_flag_spec='-R$libdir'
  386.       hardcode_direct=yes
  387.       hardcode_shlibpath_var=no
  388.       ;;
  389.     hpux9*)
  390.       if test "$GCC" = yes; then
  391. archive_cmds='$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'
  392.       else
  393. archive_cmds='$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'
  394.       fi
  395.       hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
  396.       hardcode_libdir_separator=:
  397.       hardcode_direct=yes
  398.       # hardcode_minus_L: Not really in the search PATH,
  399.       # but as the default location of the library.
  400.       hardcode_minus_L=yes
  401.       export_dynamic_flag_spec='${wl}-E'
  402.       ;;
  403.     hpux10* | hpux11*)
  404.       if test "$GCC" = yes -a "$with_gnu_ld" = no; then
  405. case $host_cpu in
  406. hppa*64*|ia64*)
  407.   archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
  408.   ;;
  409. *)
  410.   archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
  411.   ;;
  412. esac
  413.       else
  414. case $host_cpu in
  415. hppa*64*|ia64*)
  416.   archive_cmds='$LD -b +h $soname -o $lib $libobjs $deplibs $linker_flags'
  417.   ;;
  418. *)
  419.   archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'
  420.   ;;
  421. esac
  422.       fi
  423.       if test "$with_gnu_ld" = no; then
  424. case $host_cpu in
  425. hppa*64*)
  426.   hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
  427.   hardcode_libdir_flag_spec_ld='+b $libdir'
  428.   hardcode_libdir_separator=:
  429.   hardcode_direct=no
  430.   hardcode_shlibpath_var=no
  431.   ;;
  432. ia64*)
  433.   hardcode_libdir_flag_spec='-L$libdir'
  434.   hardcode_direct=no
  435.   hardcode_shlibpath_var=no
  436.   # hardcode_minus_L: Not really in the search PATH,
  437.   # but as the default location of the library.
  438.   hardcode_minus_L=yes
  439.   ;;
  440. *)
  441.   hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
  442.   hardcode_libdir_separator=:
  443.   hardcode_direct=yes
  444.   export_dynamic_flag_spec='${wl}-E'
  445.   # hardcode_minus_L: Not really in the search PATH,
  446.   # but as the default location of the library.
  447.   hardcode_minus_L=yes
  448.   ;;
  449. esac
  450.       fi
  451.       ;;
  452.     irix5* | irix6* | nonstopux*)
  453.       if test "$GCC" = yes; then
  454. archive_cmds='$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'
  455.       else
  456. archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
  457. hardcode_libdir_flag_spec_ld='-rpath $libdir'
  458.       fi
  459.       hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
  460.       hardcode_libdir_separator=:
  461.       link_all_deplibs=yes
  462.       ;;
  463.     netbsd*)
  464.       if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
  465. archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out
  466.       else
  467. archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags'      # ELF
  468.       fi
  469.       hardcode_libdir_flag_spec='-R$libdir'
  470.       hardcode_direct=yes
  471.       hardcode_shlibpath_var=no
  472.       ;;
  473.     newsos6)
  474.       archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  475.       hardcode_direct=yes
  476.       hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
  477.       hardcode_libdir_separator=:
  478.       hardcode_shlibpath_var=no
  479.       ;;
  480.     openbsd*)
  481.       hardcode_direct=yes
  482.       hardcode_shlibpath_var=no
  483.       if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
  484. archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
  485. archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols'
  486. hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
  487. export_dynamic_flag_spec='${wl}-E'
  488.       else
  489.        case $host_os in
  490.  openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*)
  491.    archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
  492.    hardcode_libdir_flag_spec='-R$libdir'
  493.    ;;
  494.  *)
  495.    archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
  496.    hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
  497.    ;;
  498.        esac
  499.       fi
  500.       ;;
  501.     os2*)
  502.       hardcode_libdir_flag_spec='-L$libdir'
  503.       hardcode_minus_L=yes
  504.       allow_undefined_flag=unsupported
  505.       archive_cmds='$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'
  506.       old_archive_From_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def'
  507.       ;;
  508.     osf3*)
  509.       if test "$GCC" = yes; then
  510. allow_undefined_flag=' ${wl}-expect_unresolved ${wl}*'
  511. archive_cmds='$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'
  512.       else
  513. allow_undefined_flag=' -expect_unresolved *'
  514. archive_cmds='$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'
  515.       fi
  516.       hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
  517.       hardcode_libdir_separator=:
  518.       ;;
  519.     osf4* | osf5*) # as osf3* with the addition of -msym flag
  520.       if test "$GCC" = yes; then
  521. allow_undefined_flag=' ${wl}-expect_unresolved ${wl}*'
  522. archive_cmds='$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'
  523. hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
  524.       else
  525. allow_undefined_flag=' -expect_unresolved *'
  526. archive_cmds='$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'
  527. archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\n" -exported_symbol "$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~
  528. $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'
  529. # Both c and cxx compiler support -rpath directly
  530. hardcode_libdir_flag_spec='-rpath $libdir'
  531.       fi
  532.       hardcode_libdir_separator=:
  533.       ;;
  534.     sco3.2v5*)
  535.       archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  536.       hardcode_shlibpath_var=no
  537.       export_dynamic_flag_spec='${wl}-Bexport'
  538.       runpath_var=LD_RUN_PATH
  539.       hardcode_runpath_var=yes
  540.       ;;
  541.     solaris*)
  542.       no_undefined_flag=' -z text'
  543.       if test "$GCC" = yes; then
  544. wlarc='${wl}'
  545. archive_cmds='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
  546. archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/(.*)/1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
  547.   $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp'
  548.       else
  549. wlarc=''
  550. archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
  551. archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/(.*)/1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
  552.    $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp'
  553.       fi
  554.       hardcode_libdir_flag_spec='-R$libdir'
  555.       hardcode_shlibpath_var=no
  556.       case $host_os in
  557.       solaris2.[0-5] | solaris2.[0-5].*) ;;
  558.       *)
  559.   # The compiler driver will combine linker options so we
  560.   # cannot just pass the convience library names through
  561.   # without $wl, iff we do not link with $LD.
  562.   # Luckily, gcc supports the same syntax we need for Sun Studio.
  563.   # Supported since Solaris 2.6 (maybe 2.5.1?)
  564.   case $wlarc in
  565.   '')
  566.     whole_archive_flag_spec='-z allextract$convenience -z defaultextract' ;;
  567.   *)
  568.     whole_archive_flag_spec='${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' ;;
  569.   esac ;;
  570.       esac
  571.       link_all_deplibs=yes
  572.       ;;
  573.     sunos4*)
  574.       if test "x$host_vendor" = xsequent; then
  575. # Use $CC to link under sequent, because it throws in some extra .o
  576. # files that make .init and .fini sections work.
  577. archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags'
  578.       else
  579. archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'
  580.       fi
  581.       hardcode_libdir_flag_spec='-L$libdir'
  582.       hardcode_direct=yes
  583.       hardcode_minus_L=yes
  584.       hardcode_shlibpath_var=no
  585.       ;;
  586.     sysv4)
  587.       case $host_vendor in
  588. sni)
  589.   archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  590.   hardcode_direct=yes # is this really true???
  591. ;;
  592. siemens)
  593.   ## LD is ld it makes a PLAMLIB
  594.   ## CC just makes a GrossModule.
  595.   archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags'
  596.   reload_cmds='$CC -r -o $output$reload_objs'
  597.   hardcode_direct=no
  598.         ;;
  599. motorola)
  600.   archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  601.   hardcode_direct=no #Motorola manual says yes, but my tests say they lie
  602. ;;
  603.       esac
  604.       runpath_var='LD_RUN_PATH'
  605.       hardcode_shlibpath_var=no
  606.       ;;
  607.     sysv4.3*)
  608.       archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  609.       hardcode_shlibpath_var=no
  610.       export_dynamic_flag_spec='-Bexport'
  611.       ;;
  612.     sysv4*MP*)
  613.       if test -d /usr/nec; then
  614. archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  615. hardcode_shlibpath_var=no
  616. runpath_var=LD_RUN_PATH
  617. hardcode_runpath_var=yes
  618. ld_shlibs=yes
  619.       fi
  620.       ;;
  621.     sysv4.2uw2*)
  622.       archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags'
  623.       hardcode_direct=yes
  624.       hardcode_minus_L=no
  625.       hardcode_shlibpath_var=no
  626.       hardcode_runpath_var=yes
  627.       runpath_var=LD_RUN_PATH
  628.       ;;
  629.    sysv5OpenUNIX8* | sysv5UnixWare7* |  sysv5uw[78]* | unixware7*)
  630.       no_undefined_flag='${wl}-z ${wl}text'
  631.       if test "$GCC" = yes; then
  632. archive_cmds='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
  633.       else
  634. archive_cmds='$CC -G ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
  635.       fi
  636.       runpath_var='LD_RUN_PATH'
  637.       hardcode_shlibpath_var=no
  638.       ;;
  639.     sysv5*)
  640.       no_undefined_flag=' -z text'
  641.       # $CC -shared without GNU ld will not create a library from C++
  642.       # object files and a static libstdc++, better avoid it by now
  643.       archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
  644.       archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/(.*)/1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
  645.    $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp'
  646.       hardcode_libdir_flag_spec=
  647.       hardcode_shlibpath_var=no
  648.       runpath_var='LD_RUN_PATH'
  649.       ;;
  650.     uts4*)
  651.       archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  652.       hardcode_libdir_flag_spec='-L$libdir'
  653.       hardcode_shlibpath_var=no
  654.       ;;
  655.     *)
  656.       ld_shlibs=no
  657.       ;;
  658.     esac
  659.   fi
  660. echo "$as_me:$LINENO: result: $ld_shlibs" >&5
  661. echo "${ECHO_T}$ld_shlibs" >&6
  662. test "$ld_shlibs" = no && can_build_shared=no
  663. variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
  664. if test "$GCC" = yes; then
  665.   variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
  666. fi
  667. #
  668. # Do we need to explicitly link libc?
  669. #
  670. case "x$archive_cmds_need_lc" in
  671. x|xyes)
  672.   # Assume -lc should be added
  673.   archive_cmds_need_lc=yes
  674.   if test "$enable_shared" = yes && test "$GCC" = yes; then
  675.     case $archive_cmds in
  676.     *'~'*)
  677.       # FIXME: we may have to deal with multi-command sequences.
  678.       ;;
  679.     '$CC '*)
  680.       # Test whether the compiler implicitly links with -lc since on some
  681.       # systems, -lgcc has to come before -lc. If gcc already passes -lc
  682.       # to ld, don't add -lc before -lgcc.
  683.       echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5
  684. echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6
  685.       $rm conftest*
  686.       printf "$lt_simple_compile_test_code" > conftest.$ac_ext
  687.       if { (eval echo "$as_me:$LINENO: "$ac_compile"") >&5
  688.   (eval $ac_compile) 2>&5
  689.   ac_status=$?
  690.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  691.   (exit $ac_status); } 2>conftest.err; then
  692.         soname=conftest
  693.         lib=conftest
  694.         libobjs=conftest.$ac_objext
  695.         deplibs=
  696.         wl=$lt_prog_compiler_wl
  697.         compiler_flags=-v
  698.         linker_flags=-v
  699.         verstring=
  700.         output_objdir=.
  701.         libname=conftest
  702.         lt_save_allow_undefined_flag=$allow_undefined_flag
  703.         allow_undefined_flag=
  704.         if { (eval echo "$as_me:$LINENO: "$archive_cmds 2>&1 | grep " -lc " >/dev/null 2>&1"") >&5
  705.   (eval $archive_cmds 2>&1 | grep " -lc " >/dev/null 2>&1) 2>&5
  706.   ac_status=$?
  707.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  708.   (exit $ac_status); }
  709.         then
  710.   archive_cmds_need_lc=no
  711.         else
  712.   archive_cmds_need_lc=yes
  713.         fi
  714.         allow_undefined_flag=$lt_save_allow_undefined_flag
  715.       else
  716.         cat conftest.err 1>&5
  717.       fi
  718.       $rm conftest*
  719.       echo "$as_me:$LINENO: result: $archive_cmds_need_lc" >&5
  720. echo "${ECHO_T}$archive_cmds_need_lc" >&6
  721.       ;;
  722.     esac
  723.   fi
  724.   ;;
  725. esac
  726. echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5
  727. echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6
  728. library_names_spec=
  729. libname_spec='lib$name'
  730. soname_spec=
  731. shrext_cmds=".so"
  732. postinstall_cmds=
  733. postuninstall_cmds=
  734. finish_cmds=
  735. finish_eval=
  736. shlibpath_var=
  737. shlibpath_overrides_runpath=unknown
  738. version_type=none
  739. dynamic_linker="$host_os ld.so"
  740. sys_lib_dlsearch_path_spec="/lib /usr/lib"
  741. if test "$GCC" = yes; then
  742.   sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
  743.   if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then
  744.     # if the path contains ";" then we assume it to be the separator
  745.     # otherwise default to the standard path separator (i.e. ":") - it is
  746.     # assumed that no part of a normal pathname contains ";" but that should
  747.     # okay in the real world where ";" in dirpaths is itself problematic.
  748.     sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
  749.   else
  750.     sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
  751.   fi
  752. else
  753.   sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
  754. fi
  755. need_lib_prefix=unknown
  756. hardcode_into_libs=no
  757. # when you set need_version to no, make sure it does not cause -set_version
  758. # flags to be left without arguments
  759. need_version=unknown
  760. case $host_os in
  761. aix3*)
  762.   version_type=linux
  763.   library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'
  764.   shlibpath_var=LIBPATH
  765.   # AIX 3 has no versioning support, so we append a major version to the name.
  766.   soname_spec='${libname}${release}${shared_ext}$major'
  767.   ;;
  768. aix4* | aix5*)
  769.   version_type=linux
  770.   need_lib_prefix=no
  771.   need_version=no
  772.   hardcode_into_libs=yes
  773.   if test "$host_cpu" = ia64; then
  774.     # AIX 5 supports IA64
  775.     library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'
  776.     shlibpath_var=LD_LIBRARY_PATH
  777.   else
  778.     # With GCC up to 2.95.x, collect2 would create an import file
  779.     # for dependence libraries.  The import file would start with
  780.     # the line `#! .'.  This would cause the generated library to
  781.     # depend on `.', always an invalid library.  This was fixed in
  782.     # development snapshots of GCC prior to 3.0.
  783.     case $host_os in
  784.       aix4 | aix4.[01] | aix4.[01].*)
  785.       if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
  786.    echo ' yes '
  787.    echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then
  788. :
  789.       else
  790. can_build_shared=no
  791.       fi
  792.       ;;
  793.     esac
  794.     # AIX (on Power*) has no versioning support, so currently we can not hardcode correct
  795.     # soname into executable. Probably we can add versioning support to
  796.     # collect2, so additional links can be useful in future.
  797.     if test "$aix_use_runtimelinking" = yes; then
  798.       # If using run time linking (on AIX 4.2 or later) use lib<name>.so
  799.       # instead of lib<name>.a to let people know that these are not
  800.       # typical AIX shared libraries.
  801.       library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  802.     else
  803.       # We preserve .a as extension for shared libraries through AIX4.2
  804.       # and later when we are not doing run time linking.
  805.       library_names_spec='${libname}${release}.a $libname.a'
  806.       soname_spec='${libname}${release}${shared_ext}$major'
  807.     fi
  808.     shlibpath_var=LIBPATH
  809.   fi
  810.   ;;
  811. amigaos*)
  812.   library_names_spec='$libname.ixlibrary $libname.a'
  813.   # Create ${libname}_ixlibrary.a entries in /sys/libs.
  814.   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'
  815.   ;;
  816. beos*)
  817.   library_names_spec='${libname}${shared_ext}'
  818.   dynamic_linker="$host_os ld.so"
  819.   shlibpath_var=LIBRARY_PATH
  820.   ;;
  821. bsdi[45]*)
  822.   version_type=linux
  823.   need_version=no
  824.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  825.   soname_spec='${libname}${release}${shared_ext}$major'
  826.   finish_cmds='PATH="$PATH:/sbin" ldconfig $libdir'
  827.   shlibpath_var=LD_LIBRARY_PATH
  828.   sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
  829.   sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
  830.   # the default ld.so.conf also contains /usr/contrib/lib and
  831.   # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow
  832.   # libtool to hard-code these into programs
  833.   ;;
  834. cygwin* | mingw* | pw32*)
  835.   version_type=windows
  836.   shrext_cmds=".dll"
  837.   need_version=no
  838.   need_lib_prefix=no
  839.   case $GCC,$host_os in
  840.   yes,cygwin* | yes,mingw* | yes,pw32*)
  841.     library_names_spec='$libname.dll.a'
  842.     # DLL is installed to $(libdir)/../bin by postinstall_cmds
  843.     postinstall_cmds='base_file=`basename ${file}`~
  844.       dlpath=`$SHELL 2>&1 -c '''. $dir/'''${base_file}'''i;echo $dlname'''`~
  845.       dldir=$destdir/`dirname $dlpath`~
  846.       test -d $dldir || mkdir -p $dldir~
  847.       $install_prog $dir/$dlname $dldir/$dlname~
  848.       chmod a+x $dldir/$dlname'
  849.     postuninstall_cmds='dldll=`$SHELL 2>&1 -c '''. $file; echo $dlname'''`~
  850.       dlpath=$dir/$dldll~
  851.        $rm $dlpath'
  852.     shlibpath_overrides_runpath=yes
  853.     case $host_os in
  854.     cygwin*)
  855.       # Cygwin DLLs use 'cyg' prefix rather than 'lib'
  856.       soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
  857.       sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
  858.       ;;
  859.     mingw*)
  860.       # MinGW DLLs use traditional 'lib' prefix
  861.       soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
  862.       sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
  863.       if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then
  864.         # It is most probably a Windows format PATH printed by
  865.         # mingw gcc, but we are running on Cygwin. Gcc prints its search
  866.         # path with ; separators, and with drive letters. We can handle the
  867.         # drive letters (cygwin fileutils understands them), so leave them,
  868.         # especially as we might pass files found there to a mingw objdump,
  869.         # which wouldn't understand a cygwinified path. Ahh.
  870.         sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
  871.       else
  872.         sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
  873.       fi
  874.       ;;
  875.     pw32*)
  876.       # pw32 DLLs use 'pw' prefix rather than 'lib'
  877.       library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
  878.       ;;
  879.     esac
  880.     ;;
  881.   *)
  882.     library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib'
  883.     ;;
  884.   esac
  885.   dynamic_linker='Win32 ld.exe'
  886.   # FIXME: first we should search . and the directory the executable is in
  887.   shlibpath_var=PATH
  888.   ;;
  889. darwin* | rhapsody*)
  890.   dynamic_linker="$host_os dyld"
  891.   version_type=darwin
  892.   need_lib_prefix=no
  893.   need_version=no
  894.   library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext'
  895.   soname_spec='${libname}${release}${major}$shared_ext'
  896.   shlibpath_overrides_runpath=yes
  897.   shlibpath_var=DYLD_LIBRARY_PATH
  898.   shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
  899.   # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same.
  900.   if test "$GCC" = yes; then
  901.     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"`
  902.   else
  903.     sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib'
  904.   fi
  905.   sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
  906.   ;;
  907. dgux*)
  908.   version_type=linux
  909.   need_lib_prefix=no
  910.   need_version=no
  911.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
  912.   soname_spec='${libname}${release}${shared_ext}$major'
  913.   shlibpath_var=LD_LIBRARY_PATH
  914.   ;;
  915. freebsd1*)
  916.   dynamic_linker=no
  917.   ;;
  918. kfreebsd*-gnu)
  919.   version_type=linux
  920.   need_lib_prefix=no
  921.   need_version=no
  922.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
  923.   soname_spec='${libname}${release}${shared_ext}$major'
  924.   shlibpath_var=LD_LIBRARY_PATH
  925.   shlibpath_overrides_runpath=no
  926.   hardcode_into_libs=yes
  927.   dynamic_linker='GNU ld.so'
  928.   ;;
  929. freebsd* | dragonfly*)
  930.   # DragonFly does not have aout.  When/if they implement a new
  931.   # versioning mechanism, adjust this.
  932.   if test -x /usr/bin/objformat; then
  933.     objformat=`/usr/bin/objformat`
  934.   else
  935.     case $host_os in
  936.     freebsd[123]*) objformat=aout ;;
  937.     *) objformat=elf ;;
  938.     esac
  939.   fi
  940.   version_type=freebsd-$objformat
  941.   case $version_type in
  942.     freebsd-elf*)
  943.       library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
  944.       need_version=no
  945.       need_lib_prefix=no
  946.       ;;
  947.     freebsd-*)
  948.       library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'
  949.       need_version=yes
  950.       ;;
  951.   esac
  952.   shlibpath_var=LD_LIBRARY_PATH
  953.   case $host_os in
  954.   freebsd2*)
  955.     shlibpath_overrides_runpath=yes
  956.     ;;
  957.   freebsd3.[01]* | freebsdelf3.[01]*)
  958.     shlibpath_overrides_runpath=yes
  959.     hardcode_into_libs=yes
  960.     ;;
  961.   *) # from 3.2 on
  962.     shlibpath_overrides_runpath=no
  963.     hardcode_into_libs=yes
  964.     ;;
  965.   esac
  966.   ;;
  967. gnu*)
  968.   version_type=linux
  969.   need_lib_prefix=no
  970.   need_version=no
  971.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
  972.   soname_spec='${libname}${release}${shared_ext}$major'
  973.   shlibpath_var=LD_LIBRARY_PATH
  974.   hardcode_into_libs=yes
  975.   ;;
  976. hpux9* | hpux10* | hpux11*)
  977.   # Give a soname corresponding to the major version so that dld.sl refuses to
  978.   # link against other versions.
  979.   version_type=sunos
  980.   need_lib_prefix=no
  981.   need_version=no
  982.   case $host_cpu in
  983.   ia64*)
  984.     shrext_cmds='.so'
  985.     hardcode_into_libs=yes
  986.     dynamic_linker="$host_os dld.so"
  987.     shlibpath_var=LD_LIBRARY_PATH
  988.     shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
  989.     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  990.     soname_spec='${libname}${release}${shared_ext}$major'
  991.     if test "X$HPUX_IA64_MODE" = X32; then
  992.       sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
  993.     else
  994.       sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
  995.     fi
  996.     sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
  997.     ;;
  998.    hppa*64*)
  999.      shrext_cmds='.sl'
  1000.      hardcode_into_libs=yes
  1001.      dynamic_linker="$host_os dld.sl"
  1002.      shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
  1003.      shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
  1004.      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1005.      soname_spec='${libname}${release}${shared_ext}$major'
  1006.      sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64"
  1007.      sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
  1008.      ;;
  1009.    *)
  1010.     shrext_cmds='.sl'
  1011.     dynamic_linker="$host_os dld.sl"
  1012.     shlibpath_var=SHLIB_PATH
  1013.     shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
  1014.     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1015.     soname_spec='${libname}${release}${shared_ext}$major'
  1016.     ;;
  1017.   esac
  1018.   # HP-UX runs *really* slowly unless shared libraries are mode 555.
  1019.   postinstall_cmds='chmod 555 $lib'
  1020.   ;;
  1021. irix5* | irix6* | nonstopux*)
  1022.   case $host_os in
  1023.     nonstopux*) version_type=nonstopux ;;
  1024.     *)
  1025. if test "$lt_cv_prog_gnu_ld" = yes; then
  1026. version_type=linux
  1027. else
  1028. version_type=irix
  1029. fi ;;
  1030.   esac
  1031.   need_lib_prefix=no
  1032.   need_version=no
  1033.   soname_spec='${libname}${release}${shared_ext}$major'
  1034.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}'
  1035.   case $host_os in
  1036.   irix5* | nonstopux*)
  1037.     libsuff= shlibsuff=
  1038.     ;;
  1039.   *)
  1040.     case $LD in # libtool.m4 will add one of these switches to LD
  1041.     *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ")
  1042.       libsuff= shlibsuff= libmagic=32-bit;;
  1043.     *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ")
  1044.       libsuff=32 shlibsuff=N32 libmagic=N32;;
  1045.     *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ")
  1046.       libsuff=64 shlibsuff=64 libmagic=64-bit;;
  1047.     *) libsuff= shlibsuff= libmagic=never-match;;
  1048.     esac
  1049.     ;;
  1050.   esac
  1051.   shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
  1052.   shlibpath_overrides_runpath=no
  1053.   sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
  1054.   sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
  1055.   hardcode_into_libs=yes
  1056.   ;;
  1057. # No shared lib support for Linux oldld, aout, or coff.
  1058. linux*oldld* | linux*aout* | linux*coff*)
  1059.   dynamic_linker=no
  1060.   ;;
  1061. # This must be Linux ELF.
  1062. linux*)
  1063.   version_type=linux
  1064.   need_lib_prefix=no
  1065.   need_version=no
  1066.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1067.   soname_spec='${libname}${release}${shared_ext}$major'
  1068.   finish_cmds='PATH="$PATH:/sbin" ldconfig -n $libdir'
  1069.   shlibpath_var=LD_LIBRARY_PATH
  1070.   shlibpath_overrides_runpath=no
  1071.   # This implies no fast_install, which is unacceptable.
  1072.   # Some rework will be needed to allow for fast_install
  1073.   # before this can be enabled.
  1074.   hardcode_into_libs=yes
  1075.   # Append ld.so.conf contents to the search path
  1076.   if test -f /etc/ld.so.conf; then
  1077.     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' ' '`
  1078.     sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
  1079.   fi
  1080.   # We used to test for /lib/ld.so.1 and disable shared libraries on
  1081.   # powerpc, because MkLinux only supported shared libraries with the
  1082.   # GNU dynamic linker.  Since this was broken with cross compilers,
  1083.   # most powerpc-linux boxes support dynamic linking these days and
  1084.   # people can always --disable-shared, the test was removed, and we
  1085.   # assume the GNU/Linux dynamic linker is in use.
  1086.   dynamic_linker='GNU/Linux ld.so'
  1087.   ;;
  1088. knetbsd*-gnu)
  1089.   version_type=linux
  1090.   need_lib_prefix=no
  1091.   need_version=no
  1092.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
  1093.   soname_spec='${libname}${release}${shared_ext}$major'
  1094.   shlibpath_var=LD_LIBRARY_PATH
  1095.   shlibpath_overrides_runpath=no
  1096.   hardcode_into_libs=yes
  1097.   dynamic_linker='GNU ld.so'
  1098.   ;;
  1099. netbsd*)
  1100.   version_type=sunos
  1101.   need_lib_prefix=no
  1102.   need_version=no
  1103.   if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
  1104.     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
  1105.     finish_cmds='PATH="$PATH:/sbin" ldconfig -m $libdir'
  1106.     dynamic_linker='NetBSD (a.out) ld.so'
  1107.   else
  1108.     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
  1109.     soname_spec='${libname}${release}${shared_ext}$major'
  1110.     dynamic_linker='NetBSD ld.elf_so'
  1111.   fi
  1112.   shlibpath_var=LD_LIBRARY_PATH
  1113.   shlibpath_overrides_runpath=yes
  1114.   hardcode_into_libs=yes
  1115.   ;;
  1116. newsos6)
  1117.   version_type=linux
  1118.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1119.   shlibpath_var=LD_LIBRARY_PATH
  1120.   shlibpath_overrides_runpath=yes
  1121.   ;;
  1122. nto-qnx*)
  1123.   version_type=linux
  1124.   need_lib_prefix=no
  1125.   need_version=no
  1126.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1127.   soname_spec='${libname}${release}${shared_ext}$major'
  1128.   shlibpath_var=LD_LIBRARY_PATH
  1129.   shlibpath_overrides_runpath=yes
  1130.   ;;
  1131. openbsd*)
  1132.   version_type=sunos
  1133.   need_lib_prefix=no
  1134.   # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.
  1135.   case $host_os in
  1136.     openbsd3.3 | openbsd3.3.*) need_version=yes ;;
  1137.     *)                         need_version=no  ;;
  1138.   esac
  1139.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
  1140.   finish_cmds='PATH="$PATH:/sbin" ldconfig -m $libdir'
  1141.   shlibpath_var=LD_LIBRARY_PATH
  1142.   if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
  1143.     case $host_os in
  1144.       openbsd2.[89] | openbsd2.[89].*)
  1145. shlibpath_overrides_runpath=no
  1146. ;;
  1147.       *)
  1148. shlibpath_overrides_runpath=yes
  1149. ;;
  1150.       esac
  1151.   else
  1152.     shlibpath_overrides_runpath=yes
  1153.   fi
  1154.   ;;
  1155. os2*)
  1156.   libname_spec='$name'
  1157.   shrext_cmds=".dll"
  1158.   need_lib_prefix=no
  1159.   library_names_spec='$libname${shared_ext} $libname.a'
  1160.   dynamic_linker='OS/2 ld.exe'
  1161.   shlibpath_var=LIBPATH
  1162.   ;;
  1163. osf3* | osf4* | osf5*)
  1164.   version_type=osf
  1165.   need_lib_prefix=no
  1166.   need_version=no
  1167.   soname_spec='${libname}${release}${shared_ext}$major'
  1168.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1169.   shlibpath_var=LD_LIBRARY_PATH
  1170.   sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
  1171.   sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
  1172.   ;;
  1173. sco3.2v5*)
  1174.   version_type=osf
  1175.   soname_spec='${libname}${release}${shared_ext}$major'
  1176.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1177.   shlibpath_var=LD_LIBRARY_PATH
  1178.   ;;
  1179. solaris*)
  1180.   version_type=linux
  1181.   need_lib_prefix=no
  1182.   need_version=no
  1183.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1184.   soname_spec='${libname}${release}${shared_ext}$major'
  1185.   shlibpath_var=LD_LIBRARY_PATH
  1186.   shlibpath_overrides_runpath=yes
  1187.   hardcode_into_libs=yes
  1188.   # ldd complains unless libraries are executable
  1189.   postinstall_cmds='chmod +x $lib'
  1190.   ;;
  1191. sunos4*)
  1192.   version_type=sunos
  1193.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
  1194.   finish_cmds='PATH="$PATH:/usr/etc" ldconfig $libdir'
  1195.   shlibpath_var=LD_LIBRARY_PATH
  1196.   shlibpath_overrides_runpath=yes
  1197.   if test "$with_gnu_ld" = yes; then
  1198.     need_lib_prefix=no
  1199.   fi
  1200.   need_version=yes
  1201.   ;;
  1202. sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
  1203.   version_type=linux
  1204.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1205.   soname_spec='${libname}${release}${shared_ext}$major'
  1206.   shlibpath_var=LD_LIBRARY_PATH
  1207.   case $host_vendor in
  1208.     sni)
  1209.       shlibpath_overrides_runpath=no
  1210.       need_lib_prefix=no
  1211.       export_dynamic_flag_spec='${wl}-Blargedynsym'
  1212.       runpath_var=LD_RUN_PATH
  1213.       ;;
  1214.     siemens)
  1215.       need_lib_prefix=no
  1216.       ;;
  1217.     motorola)
  1218.       need_lib_prefix=no
  1219.       need_version=no
  1220.       shlibpath_overrides_runpath=no
  1221.       sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
  1222.       ;;
  1223.   esac
  1224.   ;;
  1225. sysv4*MP*)
  1226.   if test -d /usr/nec ;then
  1227.     version_type=linux
  1228.     library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
  1229.     soname_spec='$libname${shared_ext}.$major'
  1230.     shlibpath_var=LD_LIBRARY_PATH
  1231.   fi
  1232.   ;;
  1233. uts4*)
  1234.   version_type=linux
  1235.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1236.   soname_spec='${libname}${release}${shared_ext}$major'
  1237.   shlibpath_var=LD_LIBRARY_PATH
  1238.   ;;
  1239. *)
  1240.   dynamic_linker=no
  1241.   ;;
  1242. esac
  1243. echo "$as_me:$LINENO: result: $dynamic_linker" >&5
  1244. echo "${ECHO_T}$dynamic_linker" >&6
  1245. test "$dynamic_linker" = no && can_build_shared=no
  1246. echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5
  1247. echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6
  1248. hardcode_action=
  1249. if test -n "$hardcode_libdir_flag_spec" || 
  1250.    test -n "$runpath_var" || 
  1251.    test "X$hardcode_automatic" = "Xyes" ; then
  1252.   # We can hardcode non-existant directories.
  1253.   if test "$hardcode_direct" != no &&
  1254.      # If the only mechanism to avoid hardcoding is shlibpath_var, we
  1255.      # have to relink, otherwise we might link with an installed library
  1256.      # when we should be linking with a yet-to-be-installed one
  1257.      ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, )" != no &&
  1258.      test "$hardcode_minus_L" != no; then
  1259.     # Linking always hardcodes the temporary library directory.
  1260.     hardcode_action=relink
  1261.   else
  1262.     # We can link without hardcoding, and we can hardcode nonexisting dirs.
  1263.     hardcode_action=immediate
  1264.   fi
  1265. else
  1266.   # We cannot hardcode anything, or else we can only hardcode existing
  1267.   # directories.
  1268.   hardcode_action=unsupported
  1269. fi
  1270. echo "$as_me:$LINENO: result: $hardcode_action" >&5
  1271. echo "${ECHO_T}$hardcode_action" >&6
  1272. if test "$hardcode_action" = relink; then
  1273.   # Fast installation is not supported
  1274.   enable_fast_install=no
  1275. elif test "$shlibpath_overrides_runpath" = yes ||
  1276.      test "$enable_shared" = no; then
  1277.   # Fast installation is not necessary
  1278.   enable_fast_install=needless
  1279. fi
  1280. striplib=
  1281. old_striplib=
  1282. echo "$as_me:$LINENO: checking whether stripping libraries is possible" >&5
  1283. echo $ECHO_N "checking whether stripping libraries is possible... $ECHO_C" >&6
  1284. if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then
  1285.   test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
  1286.   test -z "$striplib" && striplib="$STRIP --strip-unneeded"
  1287.   echo "$as_me:$LINENO: result: yes" >&5
  1288. echo "${ECHO_T}yes" >&6
  1289. else
  1290. # FIXME - insert some real tests, host_os isn't really good enough
  1291.   case $host_os in
  1292.    darwin*)
  1293.        if test -n "$STRIP" ; then
  1294.          striplib="$STRIP -x"
  1295.          echo "$as_me:$LINENO: result: yes" >&5
  1296. echo "${ECHO_T}yes" >&6
  1297.        else
  1298.   echo "$as_me:$LINENO: result: no" >&5
  1299. echo "${ECHO_T}no" >&6
  1300. fi
  1301.        ;;
  1302.    *)
  1303.   echo "$as_me:$LINENO: result: no" >&5
  1304. echo "${ECHO_T}no" >&6
  1305.     ;;
  1306.   esac
  1307. fi
  1308. if test "x$enable_dlopen" != xyes; then
  1309.   enable_dlopen=unknown
  1310.   enable_dlopen_self=unknown
  1311.   enable_dlopen_self_static=unknown
  1312. else
  1313.   lt_cv_dlopen=no
  1314.   lt_cv_dlopen_libs=
  1315.   case $host_os in
  1316.   beos*)
  1317.     lt_cv_dlopen="load_add_on"
  1318.     lt_cv_dlopen_libs=
  1319.     lt_cv_dlopen_self=yes
  1320.     ;;
  1321.   mingw* | pw32*)
  1322.     lt_cv_dlopen="LoadLibrary"
  1323.     lt_cv_dlopen_libs=
  1324.    ;;
  1325.   cygwin*)
  1326.     lt_cv_dlopen="dlopen"
  1327.     lt_cv_dlopen_libs=
  1328.    ;;
  1329.   darwin*)
  1330.   # if libdl is installed we need to link against it
  1331.     echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5
  1332. echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6
  1333. if test "${ac_cv_lib_dl_dlopen+set}" = set; then
  1334.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1335. else
  1336.   ac_check_lib_save_LIBS=$LIBS
  1337. LIBS="-ldl  $LIBS"
  1338. cat >conftest.$ac_ext <<_ACEOF
  1339. /* confdefs.h.  */
  1340. _ACEOF
  1341. cat confdefs.h >>conftest.$ac_ext
  1342. cat >>conftest.$ac_ext <<_ACEOF
  1343. /* end confdefs.h.  */
  1344. /* Override any gcc2 internal prototype to avoid an error.  */
  1345. #ifdef __cplusplus
  1346. extern "C"
  1347. #endif
  1348. /* We use char because int might match the return type of a gcc2
  1349.    builtin and then its argument prototype would still apply.  */
  1350. char dlopen ();
  1351. int
  1352. main ()
  1353. {
  1354. dlopen ();
  1355.   ;
  1356.   return 0;
  1357. }
  1358. _ACEOF
  1359. rm -f conftest.$ac_objext conftest$ac_exeext
  1360. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  1361.   (eval $ac_link) 2>conftest.er1
  1362.   ac_status=$?
  1363.   grep -v '^ *+' conftest.er1 >conftest.err
  1364.   rm -f conftest.er1
  1365.   cat conftest.err >&5
  1366.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1367.   (exit $ac_status); } &&
  1368.  { ac_try='test -z "$ac_c_werror_flag"
  1369.  || test ! -s conftest.err'
  1370.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1371.   (eval $ac_try) 2>&5
  1372.   ac_status=$?
  1373.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1374.   (exit $ac_status); }; } &&
  1375.  { ac_try='test -s conftest$ac_exeext'
  1376.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1377.   (eval $ac_try) 2>&5
  1378.   ac_status=$?
  1379.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1380.   (exit $ac_status); }; }; then
  1381.   ac_cv_lib_dl_dlopen=yes
  1382. else
  1383.   echo "$as_me: failed program was:" >&5
  1384. sed 's/^/| /' conftest.$ac_ext >&5
  1385. ac_cv_lib_dl_dlopen=no
  1386. fi
  1387. rm -f conftest.err conftest.$ac_objext 
  1388.       conftest$ac_exeext conftest.$ac_ext
  1389. LIBS=$ac_check_lib_save_LIBS
  1390. fi
  1391. echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
  1392. echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6
  1393. if test $ac_cv_lib_dl_dlopen = yes; then
  1394.   lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
  1395. else
  1396.     lt_cv_dlopen="dyld"
  1397.     lt_cv_dlopen_libs=
  1398.     lt_cv_dlopen_self=yes
  1399. fi
  1400.    ;;
  1401.   *)
  1402.     echo "$as_me:$LINENO: checking for shl_load" >&5
  1403. echo $ECHO_N "checking for shl_load... $ECHO_C" >&6
  1404. if test "${ac_cv_func_shl_load+set}" = set; then
  1405.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1406. else
  1407.   cat >conftest.$ac_ext <<_ACEOF
  1408. /* confdefs.h.  */
  1409. _ACEOF
  1410. cat confdefs.h >>conftest.$ac_ext
  1411. cat >>conftest.$ac_ext <<_ACEOF
  1412. /* end confdefs.h.  */
  1413. /* Define shl_load to an innocuous variant, in case <limits.h> declares shl_load.
  1414.    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
  1415. #define shl_load innocuous_shl_load
  1416. /* System header to define __stub macros and hopefully few prototypes,
  1417.     which can conflict with char shl_load (); below.
  1418.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  1419.     <limits.h> exists even on freestanding compilers.  */
  1420. #ifdef __STDC__
  1421. # include <limits.h>
  1422. #else
  1423. # include <assert.h>
  1424. #endif
  1425. #undef shl_load
  1426. /* Override any gcc2 internal prototype to avoid an error.  */
  1427. #ifdef __cplusplus
  1428. extern "C"
  1429. {
  1430. #endif
  1431. /* We use char because int might match the return type of a gcc2
  1432.    builtin and then its argument prototype would still apply.  */
  1433. char shl_load ();
  1434. /* The GNU C library defines this for functions which it implements
  1435.     to always fail with ENOSYS.  Some functions are actually named
  1436.     something starting with __ and the normal name is an alias.  */
  1437. #if defined (__stub_shl_load) || defined (__stub___shl_load)
  1438. choke me
  1439. #else
  1440. char (*f) () = shl_load;
  1441. #endif
  1442. #ifdef __cplusplus
  1443. }
  1444. #endif
  1445. int
  1446. main ()
  1447. {
  1448. return f != shl_load;
  1449.   ;
  1450.   return 0;
  1451. }
  1452. _ACEOF
  1453. rm -f conftest.$ac_objext conftest$ac_exeext
  1454. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  1455.   (eval $ac_link) 2>conftest.er1
  1456.   ac_status=$?
  1457.   grep -v '^ *+' conftest.er1 >conftest.err
  1458.   rm -f conftest.er1
  1459.   cat conftest.err >&5
  1460.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1461.   (exit $ac_status); } &&
  1462.  { ac_try='test -z "$ac_c_werror_flag"
  1463.  || test ! -s conftest.err'
  1464.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1465.   (eval $ac_try) 2>&5
  1466.   ac_status=$?
  1467.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1468.   (exit $ac_status); }; } &&
  1469.  { ac_try='test -s conftest$ac_exeext'
  1470.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1471.   (eval $ac_try) 2>&5
  1472.   ac_status=$?
  1473.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1474.   (exit $ac_status); }; }; then
  1475.   ac_cv_func_shl_load=yes
  1476. else
  1477.   echo "$as_me: failed program was:" >&5
  1478. sed 's/^/| /' conftest.$ac_ext >&5
  1479. ac_cv_func_shl_load=no
  1480. fi
  1481. rm -f conftest.err conftest.$ac_objext 
  1482.       conftest$ac_exeext conftest.$ac_ext
  1483. fi
  1484. echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5
  1485. echo "${ECHO_T}$ac_cv_func_shl_load" >&6
  1486. if test $ac_cv_func_shl_load = yes; then
  1487.   lt_cv_dlopen="shl_load"
  1488. else
  1489.   echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5
  1490. echo $ECHO_N "checking for shl_load in -ldld... $ECHO_C" >&6
  1491. if test "${ac_cv_lib_dld_shl_load+set}" = set; then
  1492.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1493. else
  1494.   ac_check_lib_save_LIBS=$LIBS
  1495. LIBS="-ldld  $LIBS"
  1496. cat >conftest.$ac_ext <<_ACEOF
  1497. /* confdefs.h.  */
  1498. _ACEOF
  1499. cat confdefs.h >>conftest.$ac_ext
  1500. cat >>conftest.$ac_ext <<_ACEOF
  1501. /* end confdefs.h.  */
  1502. /* Override any gcc2 internal prototype to avoid an error.  */
  1503. #ifdef __cplusplus
  1504. extern "C"
  1505. #endif
  1506. /* We use char because int might match the return type of a gcc2
  1507.    builtin and then its argument prototype would still apply.  */
  1508. char shl_load ();
  1509. int
  1510. main ()
  1511. {
  1512. shl_load ();
  1513.   ;
  1514.   return 0;
  1515. }
  1516. _ACEOF
  1517. rm -f conftest.$ac_objext conftest$ac_exeext
  1518. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  1519.   (eval $ac_link) 2>conftest.er1
  1520.   ac_status=$?
  1521.   grep -v '^ *+' conftest.er1 >conftest.err
  1522.   rm -f conftest.er1
  1523.   cat conftest.err >&5
  1524.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1525.   (exit $ac_status); } &&
  1526.  { ac_try='test -z "$ac_c_werror_flag"
  1527.  || test ! -s conftest.err'
  1528.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1529.   (eval $ac_try) 2>&5
  1530.   ac_status=$?
  1531.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1532.   (exit $ac_status); }; } &&
  1533.  { ac_try='test -s conftest$ac_exeext'
  1534.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1535.   (eval $ac_try) 2>&5
  1536.   ac_status=$?
  1537.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1538.   (exit $ac_status); }; }; then
  1539.   ac_cv_lib_dld_shl_load=yes
  1540. else
  1541.   echo "$as_me: failed program was:" >&5
  1542. sed 's/^/| /' conftest.$ac_ext >&5
  1543. ac_cv_lib_dld_shl_load=no
  1544. fi
  1545. rm -f conftest.err conftest.$ac_objext 
  1546.       conftest$ac_exeext conftest.$ac_ext
  1547. LIBS=$ac_check_lib_save_LIBS
  1548. fi
  1549. echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5
  1550. echo "${ECHO_T}$ac_cv_lib_dld_shl_load" >&6
  1551. if test $ac_cv_lib_dld_shl_load = yes; then
  1552.   lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"
  1553. else
  1554.   echo "$as_me:$LINENO: checking for dlopen" >&5
  1555. echo $ECHO_N "checking for dlopen... $ECHO_C" >&6
  1556. if test "${ac_cv_func_dlopen+set}" = set; then
  1557.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1558. else
  1559.   cat >conftest.$ac_ext <<_ACEOF
  1560. /* confdefs.h.  */
  1561. _ACEOF
  1562. cat confdefs.h >>conftest.$ac_ext
  1563. cat >>conftest.$ac_ext <<_ACEOF
  1564. /* end confdefs.h.  */
  1565. /* Define dlopen to an innocuous variant, in case <limits.h> declares dlopen.
  1566.    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
  1567. #define dlopen innocuous_dlopen
  1568. /* System header to define __stub macros and hopefully few prototypes,
  1569.     which can conflict with char dlopen (); below.
  1570.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  1571.     <limits.h> exists even on freestanding compilers.  */
  1572. #ifdef __STDC__
  1573. # include <limits.h>
  1574. #else
  1575. # include <assert.h>
  1576. #endif
  1577. #undef dlopen
  1578. /* Override any gcc2 internal prototype to avoid an error.  */
  1579. #ifdef __cplusplus
  1580. extern "C"
  1581. {
  1582. #endif
  1583. /* We use char because int might match the return type of a gcc2
  1584.    builtin and then its argument prototype would still apply.  */
  1585. char dlopen ();
  1586. /* The GNU C library defines this for functions which it implements
  1587.     to always fail with ENOSYS.  Some functions are actually named
  1588.     something starting with __ and the normal name is an alias.  */
  1589. #if defined (__stub_dlopen) || defined (__stub___dlopen)
  1590. choke me
  1591. #else
  1592. char (*f) () = dlopen;
  1593. #endif
  1594. #ifdef __cplusplus
  1595. }
  1596. #endif
  1597. int
  1598. main ()
  1599. {
  1600. return f != dlopen;
  1601.   ;
  1602.   return 0;
  1603. }
  1604. _ACEOF
  1605. rm -f conftest.$ac_objext conftest$ac_exeext
  1606. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  1607.   (eval $ac_link) 2>conftest.er1
  1608.   ac_status=$?
  1609.   grep -v '^ *+' conftest.er1 >conftest.err
  1610.   rm -f conftest.er1
  1611.   cat conftest.err >&5
  1612.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1613.   (exit $ac_status); } &&
  1614.  { ac_try='test -z "$ac_c_werror_flag"
  1615.  || test ! -s conftest.err'
  1616.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1617.   (eval $ac_try) 2>&5
  1618.   ac_status=$?
  1619.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1620.   (exit $ac_status); }; } &&
  1621.  { ac_try='test -s conftest$ac_exeext'
  1622.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1623.   (eval $ac_try) 2>&5
  1624.   ac_status=$?
  1625.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1626.   (exit $ac_status); }; }; then
  1627.   ac_cv_func_dlopen=yes
  1628. else
  1629.   echo "$as_me: failed program was:" >&5
  1630. sed 's/^/| /' conftest.$ac_ext >&5
  1631. ac_cv_func_dlopen=no
  1632. fi
  1633. rm -f conftest.err conftest.$ac_objext 
  1634.       conftest$ac_exeext conftest.$ac_ext
  1635. fi
  1636. echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5
  1637. echo "${ECHO_T}$ac_cv_func_dlopen" >&6
  1638. if test $ac_cv_func_dlopen = yes; then
  1639.   lt_cv_dlopen="dlopen"
  1640. else
  1641.   echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5
  1642. echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6
  1643. if test "${ac_cv_lib_dl_dlopen+set}" = set; then
  1644.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1645. else
  1646.   ac_check_lib_save_LIBS=$LIBS
  1647. LIBS="-ldl  $LIBS"
  1648. cat >conftest.$ac_ext <<_ACEOF
  1649. /* confdefs.h.  */
  1650. _ACEOF
  1651. cat confdefs.h >>conftest.$ac_ext
  1652. cat >>conftest.$ac_ext <<_ACEOF
  1653. /* end confdefs.h.  */
  1654. /* Override any gcc2 internal prototype to avoid an error.  */
  1655. #ifdef __cplusplus
  1656. extern "C"
  1657. #endif
  1658. /* We use char because int might match the return type of a gcc2
  1659.    builtin and then its argument prototype would still apply.  */
  1660. char dlopen ();
  1661. int
  1662. main ()
  1663. {
  1664. dlopen ();
  1665.   ;
  1666.   return 0;
  1667. }
  1668. _ACEOF
  1669. rm -f conftest.$ac_objext conftest$ac_exeext
  1670. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  1671.   (eval $ac_link) 2>conftest.er1
  1672.   ac_status=$?
  1673.   grep -v '^ *+' conftest.er1 >conftest.err
  1674.   rm -f conftest.er1
  1675.   cat conftest.err >&5
  1676.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1677.   (exit $ac_status); } &&
  1678.  { ac_try='test -z "$ac_c_werror_flag"
  1679.  || test ! -s conftest.err'
  1680.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1681.   (eval $ac_try) 2>&5
  1682.   ac_status=$?
  1683.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1684.   (exit $ac_status); }; } &&
  1685.  { ac_try='test -s conftest$ac_exeext'
  1686.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1687.   (eval $ac_try) 2>&5
  1688.   ac_status=$?
  1689.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1690.   (exit $ac_status); }; }; then
  1691.   ac_cv_lib_dl_dlopen=yes
  1692. else
  1693.   echo "$as_me: failed program was:" >&5
  1694. sed 's/^/| /' conftest.$ac_ext >&5
  1695. ac_cv_lib_dl_dlopen=no
  1696. fi
  1697. rm -f conftest.err conftest.$ac_objext 
  1698.       conftest$ac_exeext conftest.$ac_ext
  1699. LIBS=$ac_check_lib_save_LIBS
  1700. fi
  1701. echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
  1702. echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6
  1703. if test $ac_cv_lib_dl_dlopen = yes; then
  1704.   lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
  1705. else
  1706.   echo "$as_me:$LINENO: checking for dlopen in -lsvld" >&5
  1707. echo $ECHO_N "checking for dlopen in -lsvld... $ECHO_C" >&6
  1708. if test "${ac_cv_lib_svld_dlopen+set}" = set; then
  1709.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1710. else
  1711.   ac_check_lib_save_LIBS=$LIBS
  1712. LIBS="-lsvld  $LIBS"
  1713. cat >conftest.$ac_ext <<_ACEOF
  1714. /* confdefs.h.  */
  1715. _ACEOF
  1716. cat confdefs.h >>conftest.$ac_ext
  1717. cat >>conftest.$ac_ext <<_ACEOF
  1718. /* end confdefs.h.  */
  1719. /* Override any gcc2 internal prototype to avoid an error.  */
  1720. #ifdef __cplusplus
  1721. extern "C"
  1722. #endif
  1723. /* We use char because int might match the return type of a gcc2
  1724.    builtin and then its argument prototype would still apply.  */
  1725. char dlopen ();
  1726. int
  1727. main ()
  1728. {
  1729. dlopen ();
  1730.   ;
  1731.   return 0;
  1732. }
  1733. _ACEOF
  1734. rm -f conftest.$ac_objext conftest$ac_exeext
  1735. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  1736.   (eval $ac_link) 2>conftest.er1
  1737.   ac_status=$?
  1738.   grep -v '^ *+' conftest.er1 >conftest.err
  1739.   rm -f conftest.er1
  1740.   cat conftest.err >&5
  1741.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1742.   (exit $ac_status); } &&
  1743.  { ac_try='test -z "$ac_c_werror_flag"
  1744.  || test ! -s conftest.err'
  1745.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1746.   (eval $ac_try) 2>&5
  1747.   ac_status=$?
  1748.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1749.   (exit $ac_status); }; } &&
  1750.  { ac_try='test -s conftest$ac_exeext'
  1751.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1752.   (eval $ac_try) 2>&5
  1753.   ac_status=$?
  1754.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1755.   (exit $ac_status); }; }; then
  1756.   ac_cv_lib_svld_dlopen=yes
  1757. else
  1758.   echo "$as_me: failed program was:" >&5
  1759. sed 's/^/| /' conftest.$ac_ext >&5
  1760. ac_cv_lib_svld_dlopen=no
  1761. fi
  1762. rm -f conftest.err conftest.$ac_objext 
  1763.       conftest$ac_exeext conftest.$ac_ext
  1764. LIBS=$ac_check_lib_save_LIBS
  1765. fi
  1766. echo "$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen" >&5
  1767. echo "${ECHO_T}$ac_cv_lib_svld_dlopen" >&6
  1768. if test $ac_cv_lib_svld_dlopen = yes; then
  1769.   lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"
  1770. else
  1771.   echo "$as_me:$LINENO: checking for dld_link in -ldld" >&5
  1772. echo $ECHO_N "checking for dld_link in -ldld... $ECHO_C" >&6
  1773. if test "${ac_cv_lib_dld_dld_link+set}" = set; then
  1774.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1775. else
  1776.   ac_check_lib_save_LIBS=$LIBS
  1777. LIBS="-ldld  $LIBS"
  1778. cat >conftest.$ac_ext <<_ACEOF
  1779. /* confdefs.h.  */
  1780. _ACEOF
  1781. cat confdefs.h >>conftest.$ac_ext
  1782. cat >>conftest.$ac_ext <<_ACEOF
  1783. /* end confdefs.h.  */
  1784. /* Override any gcc2 internal prototype to avoid an error.  */
  1785. #ifdef __cplusplus
  1786. extern "C"
  1787. #endif
  1788. /* We use char because int might match the return type of a gcc2
  1789.    builtin and then its argument prototype would still apply.  */
  1790. char dld_link ();
  1791. int
  1792. main ()
  1793. {
  1794. dld_link ();
  1795.   ;
  1796.   return 0;
  1797. }
  1798. _ACEOF
  1799. rm -f conftest.$ac_objext conftest$ac_exeext
  1800. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  1801.   (eval $ac_link) 2>conftest.er1
  1802.   ac_status=$?
  1803.   grep -v '^ *+' conftest.er1 >conftest.err
  1804.   rm -f conftest.er1
  1805.   cat conftest.err >&5
  1806.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1807.   (exit $ac_status); } &&
  1808.  { ac_try='test -z "$ac_c_werror_flag"
  1809.  || test ! -s conftest.err'
  1810.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1811.   (eval $ac_try) 2>&5
  1812.   ac_status=$?
  1813.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1814.   (exit $ac_status); }; } &&
  1815.  { ac_try='test -s conftest$ac_exeext'
  1816.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1817.   (eval $ac_try) 2>&5
  1818.   ac_status=$?
  1819.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1820.   (exit $ac_status); }; }; then
  1821.   ac_cv_lib_dld_dld_link=yes
  1822. else
  1823.   echo "$as_me: failed program was:" >&5
  1824. sed 's/^/| /' conftest.$ac_ext >&5
  1825. ac_cv_lib_dld_dld_link=no
  1826. fi
  1827. rm -f conftest.err conftest.$ac_objext 
  1828.       conftest$ac_exeext conftest.$ac_ext
  1829. LIBS=$ac_check_lib_save_LIBS
  1830. fi
  1831. echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5
  1832. echo "${ECHO_T}$ac_cv_lib_dld_dld_link" >&6
  1833. if test $ac_cv_lib_dld_dld_link = yes; then
  1834.   lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"
  1835. fi
  1836. fi
  1837. fi
  1838. fi
  1839. fi
  1840. fi
  1841.     ;;
  1842.   esac
  1843.   if test "x$lt_cv_dlopen" != xno; then
  1844.     enable_dlopen=yes
  1845.   else
  1846.     enable_dlopen=no
  1847.   fi
  1848.   case $lt_cv_dlopen in
  1849.   dlopen)
  1850.     save_CPPFLAGS="$CPPFLAGS"
  1851.     test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
  1852.     save_LDFLAGS="$LDFLAGS"
  1853.     eval LDFLAGS="$LDFLAGS $export_dynamic_flag_spec"
  1854.     save_LIBS="$LIBS"
  1855.     LIBS="$lt_cv_dlopen_libs $LIBS"
  1856.     echo "$as_me:$LINENO: checking whether a program can dlopen itself" >&5
  1857. echo $ECHO_N "checking whether a program can dlopen itself... $ECHO_C" >&6
  1858. if test "${lt_cv_dlopen_self+set}" = set; then
  1859.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1860. else
  1861.      if test "$cross_compiling" = yes; then :
  1862.   lt_cv_dlopen_self=cross
  1863. else
  1864.   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
  1865.   lt_status=$lt_dlunknown
  1866.   cat > conftest.$ac_ext <<EOF
  1867. #line 9638 "configure"
  1868. #include "confdefs.h"
  1869. #if HAVE_DLFCN_H
  1870. #include <dlfcn.h>
  1871. #endif
  1872. #include <stdio.h>
  1873. #ifdef RTLD_GLOBAL
  1874. #  define LT_DLGLOBAL RTLD_GLOBAL
  1875. #else
  1876. #  ifdef DL_GLOBAL
  1877. #    define LT_DLGLOBAL DL_GLOBAL
  1878. #  else
  1879. #    define LT_DLGLOBAL 0
  1880. #  endif
  1881. #endif
  1882. /* We may have to define LT_DLLAZY_OR_NOW in the command line if we
  1883.    find out it does not work in some platform. */
  1884. #ifndef LT_DLLAZY_OR_NOW
  1885. #  ifdef RTLD_LAZY
  1886. #    define LT_DLLAZY_OR_NOW RTLD_LAZY
  1887. #  else
  1888. #    ifdef DL_LAZY
  1889. #      define LT_DLLAZY_OR_NOW DL_LAZY
  1890. #    else
  1891. #      ifdef RTLD_NOW
  1892. #        define LT_DLLAZY_OR_NOW RTLD_NOW
  1893. #      else
  1894. #        ifdef DL_NOW
  1895. #          define LT_DLLAZY_OR_NOW DL_NOW
  1896. #        else
  1897. #          define LT_DLLAZY_OR_NOW 0
  1898. #        endif
  1899. #      endif
  1900. #    endif
  1901. #  endif
  1902. #endif
  1903. #ifdef __cplusplus
  1904. extern "C" void exit (int);
  1905. #endif
  1906. void fnord() { int i=42;}
  1907. int main ()
  1908. {
  1909.   void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
  1910.   int status = $lt_dlunknown;
  1911.   if (self)
  1912.     {
  1913.       if (dlsym (self,"fnord"))       status = $lt_dlno_uscore;
  1914.       else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
  1915.       /* dlclose (self); */
  1916.     }
  1917.     exit (status);
  1918. }
  1919. EOF
  1920.   if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  1921.   (eval $ac_link) 2>&5
  1922.   ac_status=$?
  1923.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1924.   (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then
  1925.     (./conftest; exit; ) >&5 2>/dev/null
  1926.     lt_status=$?
  1927.     case x$lt_status in
  1928.       x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;;
  1929.       x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;;
  1930.       x$lt_unknown|x*) lt_cv_dlopen_self=no ;;
  1931.     esac
  1932.   else :
  1933.     # compilation failed
  1934.     lt_cv_dlopen_self=no
  1935.   fi
  1936. fi
  1937. rm -fr conftest*
  1938. fi
  1939. echo "$as_me:$LINENO: result: $lt_cv_dlopen_self" >&5
  1940. echo "${ECHO_T}$lt_cv_dlopen_self" >&6
  1941.     if test "x$lt_cv_dlopen_self" = xyes; then
  1942.       LDFLAGS="$LDFLAGS $link_static_flag"
  1943.       echo "$as_me:$LINENO: checking whether a statically linked program can dlopen itself" >&5
  1944. echo $ECHO_N "checking whether a statically linked program can dlopen itself... $ECHO_C" >&6
  1945. if test "${lt_cv_dlopen_self_static+set}" = set; then
  1946.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1947. else
  1948.      if test "$cross_compiling" = yes; then :
  1949.   lt_cv_dlopen_self_static=cross
  1950. else
  1951.   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
  1952.   lt_status=$lt_dlunknown
  1953.   cat > conftest.$ac_ext <<EOF
  1954. #line 9736 "configure"
  1955. #include "confdefs.h"
  1956. #if HAVE_DLFCN_H
  1957. #include <dlfcn.h>
  1958. #endif
  1959. #include <stdio.h>
  1960. #ifdef RTLD_GLOBAL
  1961. #  define LT_DLGLOBAL RTLD_GLOBAL
  1962. #else
  1963. #  ifdef DL_GLOBAL
  1964. #    define LT_DLGLOBAL DL_GLOBAL
  1965. #  else
  1966. #    define LT_DLGLOBAL 0
  1967. #  endif
  1968. #endif
  1969. /* We may have to define LT_DLLAZY_OR_NOW in the command line if we
  1970.    find out it does not work in some platform. */
  1971. #ifndef LT_DLLAZY_OR_NOW
  1972. #  ifdef RTLD_LAZY
  1973. #    define LT_DLLAZY_OR_NOW RTLD_LAZY
  1974. #  else
  1975. #    ifdef DL_LAZY
  1976. #      define LT_DLLAZY_OR_NOW DL_LAZY
  1977. #    else
  1978. #      ifdef RTLD_NOW
  1979. #        define LT_DLLAZY_OR_NOW RTLD_NOW
  1980. #      else
  1981. #        ifdef DL_NOW
  1982. #          define LT_DLLAZY_OR_NOW DL_NOW
  1983. #        else
  1984. #          define LT_DLLAZY_OR_NOW 0
  1985. #        endif
  1986. #      endif
  1987. #    endif
  1988. #  endif
  1989. #endif
  1990. #ifdef __cplusplus
  1991. extern "C" void exit (int);
  1992. #endif
  1993. void fnord() { int i=42;}
  1994. int main ()
  1995. {
  1996.   void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
  1997.   int status = $lt_dlunknown;
  1998.   if (self)
  1999.     {
  2000.       if (dlsym (self,"fnord"))       status = $lt_dlno_uscore;
  2001.       else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
  2002.       /* dlclose (self); */
  2003.     }
  2004.     exit (status);
  2005. }
  2006. EOF
  2007.   if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  2008.   (eval $ac_link) 2>&5
  2009.   ac_status=$?
  2010.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2011.   (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then
  2012.     (./conftest; exit; ) >&5 2>/dev/null
  2013.     lt_status=$?
  2014.     case x$lt_status in
  2015.       x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;;
  2016.       x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;;
  2017.       x$lt_unknown|x*) lt_cv_dlopen_self_static=no ;;
  2018.     esac
  2019.   else :
  2020.     # compilation failed
  2021.     lt_cv_dlopen_self_static=no
  2022.   fi
  2023. fi
  2024. rm -fr conftest*
  2025. fi
  2026. echo "$as_me:$LINENO: result: $lt_cv_dlopen_self_static" >&5
  2027. echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6
  2028.     fi
  2029.     CPPFLAGS="$save_CPPFLAGS"
  2030.     LDFLAGS="$save_LDFLAGS"
  2031.     LIBS="$save_LIBS"
  2032.     ;;
  2033.   esac
  2034.   case $lt_cv_dlopen_self in
  2035.   yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
  2036.   *) enable_dlopen_self=unknown ;;
  2037.   esac
  2038.   case $lt_cv_dlopen_self_static in
  2039.   yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
  2040.   *) enable_dlopen_self_static=unknown ;;
  2041.   esac
  2042. fi
  2043. # Report which librarie types wil actually be built
  2044. echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5
  2045. echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6
  2046. echo "$as_me:$LINENO: result: $can_build_shared" >&5
  2047. echo "${ECHO_T}$can_build_shared" >&6
  2048. echo "$as_me:$LINENO: checking whether to build shared libraries" >&5
  2049. echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6
  2050. test "$can_build_shared" = "no" && enable_shared=no
  2051. # On AIX, shared libraries and static libraries use the same namespace, and
  2052. # are all built from PIC.
  2053. case $host_os in
  2054. aix3*)
  2055.   test "$enable_shared" = yes && enable_static=no
  2056.   if test -n "$RANLIB"; then
  2057.     archive_cmds="$archive_cmds~$RANLIB $lib"
  2058.     postinstall_cmds='$RANLIB $lib'
  2059.   fi
  2060.   ;;
  2061. aix4* | aix5*)
  2062.   if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
  2063.     test "$enable_shared" = yes && enable_static=no
  2064.   fi
  2065.     ;;
  2066. esac
  2067. echo "$as_me:$LINENO: result: $enable_shared" >&5
  2068. echo "${ECHO_T}$enable_shared" >&6
  2069. echo "$as_me:$LINENO: checking whether to build static libraries" >&5
  2070. echo $ECHO_N "checking whether to build static libraries... $ECHO_C" >&6
  2071. # Make sure either enable_shared or enable_static is yes.
  2072. test "$enable_shared" = yes || enable_static=yes
  2073. echo "$as_me:$LINENO: result: $enable_static" >&5
  2074. echo "${ECHO_T}$enable_static" >&6
  2075. # The else clause should only fire when bootstrapping the
  2076. # libtool distribution, otherwise you forgot to ship ltmain.sh
  2077. # with your package, and you will get complaints that there are
  2078. # no rules to generate ltmain.sh.
  2079. if test -f "$ltmain"; then
  2080.   # See if we are running on zsh, and set the options which allow our commands through
  2081.   # without removal of  escapes.
  2082.   if test -n "${ZSH_VERSION+set}" ; then
  2083.     setopt NO_GLOB_SUBST
  2084.   fi
  2085.   # Now quote all the things that may contain metacharacters while being
  2086.   # careful not to overquote the AC_SUBSTed values.  We take copies of the
  2087.   # variables and quote the copies for generation of the libtool script.
  2088.   for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC NM 
  2089.     SED SHELL STRIP 
  2090.     libname_spec library_names_spec soname_spec extract_expsyms_cmds 
  2091.     old_striplib striplib file_magic_cmd finish_cmds finish_eval 
  2092.     deplibs_check_method reload_flag reload_cmds need_locks 
  2093.     lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl 
  2094.     lt_cv_sys_global_symbol_to_c_name_address 
  2095.     sys_lib_search_path_spec sys_lib_dlsearch_path_spec 
  2096.     old_postinstall_cmds old_postuninstall_cmds 
  2097.     compiler 
  2098.     CC 
  2099.     LD 
  2100.     lt_prog_compiler_wl 
  2101.     lt_prog_compiler_pic 
  2102.     lt_prog_compiler_static 
  2103.     lt_prog_compiler_no_builtin_flag 
  2104.     export_dynamic_flag_spec 
  2105.     thread_safe_flag_spec 
  2106.     whole_archive_flag_spec 
  2107.     enable_shared_with_static_runtimes 
  2108.     old_archive_cmds 
  2109.     old_archive_from_new_cmds 
  2110.     predep_objects 
  2111.     postdep_objects 
  2112.     predeps 
  2113.     postdeps 
  2114.     compiler_lib_search_path 
  2115.     archive_cmds 
  2116.     archive_expsym_cmds 
  2117.     postinstall_cmds 
  2118.     postuninstall_cmds 
  2119.     old_archive_from_expsyms_cmds 
  2120.     allow_undefined_flag 
  2121.     no_undefined_flag 
  2122.     export_symbols_cmds 
  2123.     hardcode_libdir_flag_spec 
  2124.     hardcode_libdir_flag_spec_ld 
  2125.     hardcode_libdir_separator 
  2126.     hardcode_automatic 
  2127.     module_cmds 
  2128.     module_expsym_cmds 
  2129.     lt_cv_prog_compiler_c_o 
  2130.     exclude_expsyms 
  2131.     include_expsyms; do
  2132.     case $var in
  2133.     old_archive_cmds | 
  2134.     old_archive_from_new_cmds | 
  2135.     archive_cmds | 
  2136.     archive_expsym_cmds | 
  2137.     module_cmds | 
  2138.     module_expsym_cmds | 
  2139.     old_archive_from_expsyms_cmds | 
  2140.     export_symbols_cmds | 
  2141.     extract_expsyms_cmds | reload_cmds | finish_cmds | 
  2142.     postinstall_cmds | postuninstall_cmds | 
  2143.     old_postinstall_cmds | old_postuninstall_cmds | 
  2144.     sys_lib_search_path_spec | sys_lib_dlsearch_path_spec)
  2145.       # Double-quote double-evaled strings.
  2146.       eval "lt_$var=\"`$echo "X$$var" | $Xsed -e "$double_quote_subst" -e "$sed_quote_subst" -e "$delay_variable_subst"`\""
  2147.       ;;
  2148.     *)
  2149.       eval "lt_$var=\"`$echo "X$$var" | $Xsed -e "$sed_quote_subst"`\""
  2150.       ;;
  2151.     esac
  2152.   done
  2153.   case $lt_echo in
  2154.   *'$0 --fallback-echo"')
  2155.     lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\$0 --fallback-echo"$/$0 --fallback-echo"/'`
  2156.     ;;
  2157.   esac
  2158. cfgfile="${ofile}T"
  2159.   trap "$rm "$cfgfile"; exit 1" 1 2 15
  2160.   $rm -f "$cfgfile"
  2161.   { echo "$as_me:$LINENO: creating $ofile" >&5
  2162. echo "$as_me: creating $ofile" >&6;}
  2163.   cat <<__EOF__ >> "$cfgfile"
  2164. #! $SHELL
  2165. # `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
  2166. # Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP)
  2167. # NOTE: Changes made to this file will be lost: look at ltmain.sh.
  2168. #
  2169. # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001
  2170. # Free Software Foundation, Inc.
  2171. #
  2172. # This file is part of GNU Libtool:
  2173. # Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
  2174. #
  2175. # This program is free software; you can redistribute it and/or modify
  2176. # it under the terms of the GNU General Public License as published by
  2177. # the Free Software Foundation; either version 2 of the License, or
  2178. # (at your option) any later version.
  2179. #
  2180. # This program is distributed in the hope that it will be useful, but
  2181. # WITHOUT ANY WARRANTY; without even the implied warranty of
  2182. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  2183. # General Public License for more details.
  2184. #
  2185. # You should have received a copy of the GNU General Public License
  2186. # along with this program; if not, write to the Free Software
  2187. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  2188. #
  2189. # As a special exception to the GNU General Public License, if you
  2190. # distribute this file as part of a program that contains a
  2191. # configuration script generated by Autoconf, you may include it under
  2192. # the same distribution terms that you use for the rest of that program.
  2193. # A sed program that does not truncate output.
  2194. SED=$lt_SED
  2195. # Sed that helps us avoid accidentally triggering echo(1) options like -n.
  2196. Xsed="$SED -e 1s/^X//"
  2197. # The HP-UX ksh and POSIX shell print the target directory to stdout
  2198. # if CDPATH is set.
  2199. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
  2200. # The names of the tagged configurations supported by this script.
  2201. available_tags=
  2202. # ### BEGIN LIBTOOL CONFIG
  2203. # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  2204. # Shell to use when invoking shell scripts.
  2205. SHELL=$lt_SHELL
  2206. # Whether or not to build shared libraries.
  2207. build_libtool_libs=$enable_shared
  2208. # Whether or not to build static libraries.
  2209. build_old_libs=$enable_static
  2210. # Whether or not to add -lc for building shared libraries.
  2211. build_libtool_need_lc=$archive_cmds_need_lc
  2212. # Whether or not to disallow shared libs when runtime libs are static
  2213. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes
  2214. # Whether or not to optimize for fast installation.
  2215. fast_install=$enable_fast_install
  2216. # The host system.
  2217. host_alias=$host_alias
  2218. host=$host
  2219. host_os=$host_os
  2220. # The build system.
  2221. build_alias=$build_alias
  2222. build=$build
  2223. build_os=$build_os
  2224. # An echo program that does not interpret backslashes.
  2225. echo=$lt_echo
  2226. # The archiver.
  2227. AR=$lt_AR
  2228. AR_FLAGS=$lt_AR_FLAGS
  2229. # A C compiler.
  2230. LTCC=$lt_LTCC
  2231. # A language-specific compiler.
  2232. CC=$lt_compiler
  2233. # Is the compiler the GNU C compiler?
  2234. with_gcc=$GCC
  2235. # An ERE matcher.
  2236. EGREP=$lt_EGREP
  2237. # The linker used to build libraries.
  2238. LD=$lt_LD
  2239. # Whether we need hard or soft links.
  2240. LN_S=$lt_LN_S
  2241. # A BSD-compatible nm program.
  2242. NM=$lt_NM
  2243. # A symbol stripping program
  2244. STRIP=$lt_STRIP
  2245. # Used to examine libraries when file_magic_cmd begins "file"
  2246. MAGIC_CMD=$MAGIC_CMD
  2247. # Used on cygwin: DLL creation program.
  2248. DLLTOOL="$DLLTOOL"
  2249. # Used on cygwin: object dumper.
  2250. OBJDUMP="$OBJDUMP"
  2251. # Used on cygwin: assembler.
  2252. AS="$AS"
  2253. # The name of the directory that contains temporary libtool files.
  2254. objdir=$objdir
  2255. # How to create reloadable object files.
  2256. reload_flag=$lt_reload_flag
  2257. reload_cmds=$lt_reload_cmds
  2258. # How to pass a linker flag through the compiler.
  2259. wl=$lt_lt_prog_compiler_wl
  2260. # Object file suffix (normally "o").
  2261. objext="$ac_objext"
  2262. # Old archive suffix (normally "a").
  2263. libext="$libext"
  2264. # Shared library suffix (normally ".so").
  2265. shrext_cmds='$shrext_cmds'
  2266. # Executable file suffix (normally "").
  2267. exeext="$exeext"
  2268. # Additional compiler flags for building library objects.
  2269. pic_flag=$lt_lt_prog_compiler_pic
  2270. pic_mode=$pic_mode
  2271. # What is the maximum length of a command?
  2272. max_cmd_len=$lt_cv_sys_max_cmd_len
  2273. # Does compiler simultaneously support -c and -o options?
  2274. compiler_c_o=$lt_lt_cv_prog_compiler_c_o
  2275. # Must we lock files when doing compilation?
  2276. need_locks=$lt_need_locks
  2277. # Do we need the lib prefix for modules?
  2278. need_lib_prefix=$need_lib_prefix
  2279. # Do we need a version for libraries?
  2280. need_version=$need_version
  2281. # Whether dlopen is supported.
  2282. dlopen_support=$enable_dlopen
  2283. # Whether dlopen of programs is supported.
  2284. dlopen_self=$enable_dlopen_self
  2285. # Whether dlopen of statically linked programs is supported.
  2286. dlopen_self_static=$enable_dlopen_self_static
  2287. # Compiler flag to prevent dynamic linking.
  2288. link_static_flag=$lt_lt_prog_compiler_static
  2289. # Compiler flag to turn off builtin functions.
  2290. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag
  2291. # Compiler flag to allow reflexive dlopens.
  2292. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec
  2293. # Compiler flag to generate shared objects directly from archives.
  2294. whole_archive_flag_spec=$lt_whole_archive_flag_spec
  2295. # Compiler flag to generate thread-safe objects.
  2296. thread_safe_flag_spec=$lt_thread_safe_flag_spec
  2297. # Library versioning type.
  2298. version_type=$version_type
  2299. # Format of library name prefix.
  2300. libname_spec=$lt_libname_spec
  2301. # List of archive names.  First name is the real one, the rest are links.
  2302. # The last name is the one that the linker finds with -lNAME.
  2303. library_names_spec=$lt_library_names_spec
  2304. # The coded name of the library, if different from the real name.
  2305. soname_spec=$lt_soname_spec
  2306. # Commands used to build and install an old-style archive.
  2307. RANLIB=$lt_RANLIB
  2308. old_archive_cmds=$lt_old_archive_cmds
  2309. old_postinstall_cmds=$lt_old_postinstall_cmds
  2310. old_postuninstall_cmds=$lt_old_postuninstall_cmds
  2311. # Create an old-style archive from a shared archive.
  2312. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds
  2313. # Create a temporary old-style archive to link instead of a shared archive.
  2314. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds
  2315. # Commands used to build and install a shared archive.
  2316. archive_cmds=$lt_archive_cmds
  2317. archive_expsym_cmds=$lt_archive_expsym_cmds
  2318. postinstall_cmds=$lt_postinstall_cmds
  2319. postuninstall_cmds=$lt_postuninstall_cmds
  2320. # Commands used to build a loadable module (assumed same as above if empty)
  2321. module_cmds=$lt_module_cmds
  2322. module_expsym_cmds=$lt_module_expsym_cmds
  2323. # Commands to strip libraries.
  2324. old_striplib=$lt_old_striplib
  2325. striplib=$lt_striplib
  2326. # Dependencies to place before the objects being linked to create a
  2327. # shared library.
  2328. predep_objects=$lt_predep_objects
  2329. # Dependencies to place after the objects being linked to create a
  2330. # shared library.
  2331. postdep_objects=$lt_postdep_objects
  2332. # Dependencies to place before the objects being linked to create a
  2333. # shared library.
  2334. predeps=$lt_predeps
  2335. # Dependencies to place after the objects being linked to create a
  2336. # shared library.
  2337. postdeps=$lt_postdeps
  2338. # The library search path used internally by the compiler when linking
  2339. # a shared library.
  2340. compiler_lib_search_path=$lt_compiler_lib_search_path
  2341. # Method to check whether dependent libraries are shared objects.
  2342. deplibs_check_method=$lt_deplibs_check_method
  2343. # Command to use when deplibs_check_method == file_magic.
  2344. file_magic_cmd=$lt_file_magic_cmd
  2345. # Flag that allows shared libraries with undefined symbols to be built.
  2346. allow_undefined_flag=$lt_allow_undefined_flag
  2347. # Flag that forces no undefined symbols.
  2348. no_undefined_flag=$lt_no_undefined_flag
  2349. # Commands used to finish a libtool library installation in a directory.
  2350. finish_cmds=$lt_finish_cmds
  2351. # Same as above, but a single script fragment to be evaled but not shown.
  2352. finish_eval=$lt_finish_eval
  2353. # Take the output of nm and produce a listing of raw symbols and C names.
  2354. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
  2355. # Transform the output of nm in a proper C declaration
  2356. global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
  2357. # Transform the output of nm in a C name address pair
  2358. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
  2359. # This is the shared library runtime path variable.
  2360. runpath_var=$runpath_var
  2361. # This is the shared library path variable.
  2362. shlibpath_var=$shlibpath_var
  2363. # Is shlibpath searched before the hard-coded library search path?
  2364. shlibpath_overrides_runpath=$shlibpath_overrides_runpath
  2365. # How to hardcode a shared library path into an executable.
  2366. hardcode_action=$hardcode_action
  2367. # Whether we should hardcode library paths into libraries.
  2368. hardcode_into_libs=$hardcode_into_libs
  2369. # Flag to hardcode $libdir into a binary during linking.
  2370. # This must work even if $libdir does not exist.
  2371. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec
  2372. # If ld is used when linking, flag to hardcode $libdir into
  2373. # a binary during linking. This must work even if $libdir does
  2374. # not exist.
  2375. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld
  2376. # Whether we need a single -rpath flag with a separated argument.
  2377. hardcode_libdir_separator=$lt_hardcode_libdir_separator
  2378. # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the
  2379. # resulting binary.
  2380. hardcode_direct=$hardcode_direct
  2381. # Set to yes if using the -LDIR flag during linking hardcodes DIR into the
  2382. # resulting binary.
  2383. hardcode_minus_L=$hardcode_minus_L
  2384. # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into
  2385. # the resulting binary.
  2386. hardcode_shlibpath_var=$hardcode_shlibpath_var
  2387. # Set to yes if building a shared library automatically hardcodes DIR into the library
  2388. # and all subsequent libraries and executables linked against it.
  2389. hardcode_automatic=$hardcode_automatic
  2390. # Variables whose values should be saved in libtool wrapper scripts and
  2391. # restored at relink time.
  2392. variables_saved_for_relink="$variables_saved_for_relink"
  2393. # Whether libtool must link a program against all its dependency libraries.
  2394. link_all_deplibs=$link_all_deplibs
  2395. # Compile-time system search path for libraries
  2396. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
  2397. # Run-time system search path for libraries
  2398. sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
  2399. # Fix the shell variable $srcfile for the compiler.
  2400. fix_srcfile_path="$fix_srcfile_path"
  2401. # Set to yes if exported symbols are required.
  2402. always_export_symbols=$always_export_symbols
  2403. # The commands to list exported symbols.
  2404. export_symbols_cmds=$lt_export_symbols_cmds
  2405. # The commands to extract the exported symbol list from a shared archive.
  2406. extract_expsyms_cmds=$lt_extract_expsyms_cmds
  2407. # Symbols that should not be listed in the preloaded symbols.
  2408. exclude_expsyms=$lt_exclude_expsyms
  2409. # Symbols that must always be exported.
  2410. include_expsyms=$lt_include_expsyms
  2411. # ### END LIBTOOL CONFIG
  2412. __EOF__
  2413.   case $host_os in
  2414.   aix3*)
  2415.     cat <<EOF >> "$cfgfile"
  2416. # AIX sometimes has problems with the GCC collect2 program.  For some
  2417. # reason, if we set the COLLECT_NAMES environment variable, the problems
  2418. # vanish in a puff of smoke.
  2419. if test "X${COLLECT_NAMES+set}" != Xset; then
  2420.   COLLECT_NAMES=
  2421.   export COLLECT_NAMES
  2422. fi
  2423. EOF
  2424.     ;;
  2425.   esac
  2426.   # We use sed instead of cat because bash on DJGPP gets confused if
  2427.   # if finds mixed CR/LF and LF-only lines.  Since sed operates in
  2428.   # text mode, it properly converts lines to CR/LF.  This bash problem
  2429.   # is reportedly fixed, but why not run on old versions too?
  2430.   sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1)
  2431.   mv -f "$cfgfile" "$ofile" || 
  2432.     (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
  2433.   chmod +x "$ofile"
  2434. else
  2435.   # If there is no Makefile yet, we rely on a make rule to execute
  2436.   # `config.status --recheck' to rerun these tests and create the
  2437.   # libtool script then.
  2438.   ltmain_in=`echo $ltmain | sed -e 's/.sh$/.in/'`
  2439.   if test -f "$ltmain_in"; then
  2440.     test -f Makefile && make "$ltmain"
  2441.   fi
  2442. fi
  2443. ac_ext=c
  2444. ac_cpp='$CPP $CPPFLAGS'
  2445. ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
  2446. ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  2447. ac_compiler_gnu=$ac_cv_c_compiler_gnu
  2448. CC="$lt_save_CC"
  2449. # Check whether --with-tags or --without-tags was given.
  2450. if test "${with_tags+set}" = set; then
  2451.   withval="$with_tags"
  2452.   tagnames="$withval"
  2453. fi;
  2454. if test -f "$ltmain" && test -n "$tagnames"; then
  2455.   if test ! -f "${ofile}"; then
  2456.     { echo "$as_me:$LINENO: WARNING: output file `$ofile' does not exist" >&5
  2457. echo "$as_me: WARNING: output file `$ofile' does not exist" >&2;}
  2458.   fi
  2459.   if test -z "$LTCC"; then
  2460.     eval "`$SHELL ${ofile} --config | grep '^LTCC='`"
  2461.     if test -z "$LTCC"; then
  2462.       { echo "$as_me:$LINENO: WARNING: output file `$ofile' does not look like a libtool script" >&5
  2463. echo "$as_me: WARNING: output file `$ofile' does not look like a libtool script" >&2;}
  2464.     else
  2465.       { echo "$as_me:$LINENO: WARNING: using `LTCC=$LTCC', extracted from `$ofile'" >&5
  2466. echo "$as_me: WARNING: using `LTCC=$LTCC', extracted from `$ofile'" >&2;}
  2467.     fi
  2468.   fi
  2469.   # Extract list of available tagged configurations in $ofile.
  2470.   # Note that this assumes the entire list is on one line.
  2471.   available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=(.*$)/1/' -e 's/"//g'`
  2472.   lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
  2473.   for tagname in $tagnames; do
  2474.     IFS="$lt_save_ifs"
  2475.     # Check whether tagname contains only valid characters
  2476.     case `$echo "X$tagname" | $Xsed -e 's:[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]::g'` in
  2477.     "") ;;
  2478.     *)  { { echo "$as_me:$LINENO: error: invalid tag name: $tagname" >&5
  2479. echo "$as_me: error: invalid tag name: $tagname" >&2;}
  2480.    { (exit 1); exit 1; }; }
  2481. ;;
  2482.     esac
  2483.     if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null
  2484.     then
  2485.       { { echo "$as_me:$LINENO: error: tag name "$tagname" already exists" >&5
  2486. echo "$as_me: error: tag name "$tagname" already exists" >&2;}
  2487.    { (exit 1); exit 1; }; }
  2488.     fi
  2489.     # Update the list of available tags.
  2490.     if test -n "$tagname"; then
  2491.       echo appending configuration tag "$tagname" to $ofile
  2492.       case $tagname in
  2493.       CXX)
  2494. if test -n "$CXX" && ( test "X$CXX" != "Xno" &&
  2495.     ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
  2496.     (test "X$CXX" != "Xg++"))) ; then
  2497.   ac_ext=cc
  2498. ac_cpp='$CXXCPP $CPPFLAGS'
  2499. ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
  2500. ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  2501. ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
  2502. archive_cmds_need_lc_CXX=no
  2503. allow_undefined_flag_CXX=
  2504. always_export_symbols_CXX=no
  2505. archive_expsym_cmds_CXX=
  2506. export_dynamic_flag_spec_CXX=
  2507. hardcode_direct_CXX=no
  2508. hardcode_libdir_flag_spec_CXX=
  2509. hardcode_libdir_flag_spec_ld_CXX=
  2510. hardcode_libdir_separator_CXX=
  2511. hardcode_minus_L_CXX=no
  2512. hardcode_automatic_CXX=no
  2513. module_cmds_CXX=
  2514. module_expsym_cmds_CXX=
  2515. link_all_deplibs_CXX=unknown
  2516. old_archive_cmds_CXX=$old_archive_cmds
  2517. no_undefined_flag_CXX=
  2518. whole_archive_flag_spec_CXX=
  2519. enable_shared_with_static_runtimes_CXX=no
  2520. # Dependencies to place before and after the object being linked:
  2521. predep_objects_CXX=
  2522. postdep_objects_CXX=
  2523. predeps_CXX=
  2524. postdeps_CXX=
  2525. compiler_lib_search_path_CXX=
  2526. # Source file extension for C++ test sources.
  2527. ac_ext=cpp
  2528. # Object file extension for compiled C++ test sources.
  2529. objext=o
  2530. objext_CXX=$objext
  2531. # Code to be used in simple compile tests
  2532. lt_simple_compile_test_code="int some_variable = 0;n"
  2533. # Code to be used in simple link tests
  2534. lt_simple_link_test_code='int main(int, char *) { return(0); }n'
  2535. # ltmain only uses $CC for tagged configurations so make sure $CC is set.
  2536. # If no C compiler was specified, use CC.
  2537. LTCC=${LTCC-"$CC"}
  2538. # Allow CC to be a program name with arguments.
  2539. compiler=$CC
  2540. # save warnings/boilerplate of simple test code
  2541. ac_outfile=conftest.$ac_objext
  2542. printf "$lt_simple_compile_test_code" >conftest.$ac_ext
  2543. eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d' >conftest.err
  2544. _lt_compiler_boilerplate=`cat conftest.err`
  2545. $rm conftest*
  2546. ac_outfile=conftest.$ac_objext
  2547. printf "$lt_simple_link_test_code" >conftest.$ac_ext
  2548. eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d' >conftest.err
  2549. _lt_linker_boilerplate=`cat conftest.err`
  2550. $rm conftest*
  2551. # Allow CC to be a program name with arguments.
  2552. lt_save_CC=$CC
  2553. lt_save_LD=$LD
  2554. lt_save_GCC=$GCC
  2555. GCC=$GXX
  2556. lt_save_with_gnu_ld=$with_gnu_ld
  2557. lt_save_path_LD=$lt_cv_path_LD
  2558. if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then
  2559.   lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx
  2560. else
  2561.   unset lt_cv_prog_gnu_ld
  2562. fi
  2563. if test -n "${lt_cv_path_LDCXX+set}"; then
  2564.   lt_cv_path_LD=$lt_cv_path_LDCXX
  2565. else
  2566.   unset lt_cv_path_LD
  2567. fi
  2568. test -z "${LDCXX+set}" || LD=$LDCXX
  2569. CC=${CXX-"c++"}
  2570. compiler=$CC
  2571. compiler_CXX=$CC
  2572. for cc_temp in $compiler""; do
  2573.   case $cc_temp in
  2574.     compile | *[\/]compile | ccache | *[\/]ccache ) ;;
  2575.     distcc | *[\/]distcc | purify | *[\/]purify ) ;;
  2576.     -*) ;;
  2577.     *) break;;
  2578.   esac
  2579. done
  2580. cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
  2581. # We don't want -fno-exception wen compiling C++ code, so set the
  2582. # no_builtin_flag separately
  2583. if test "$GXX" = yes; then
  2584.   lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin'
  2585. else
  2586.   lt_prog_compiler_no_builtin_flag_CXX=
  2587. fi
  2588. if test "$GXX" = yes; then
  2589.   # Set up default GNU C++ configuration
  2590. # Check whether --with-gnu-ld or --without-gnu-ld was given.
  2591. if test "${with_gnu_ld+set}" = set; then
  2592.   withval="$with_gnu_ld"
  2593.   test "$withval" = no || with_gnu_ld=yes
  2594. else
  2595.   with_gnu_ld=no
  2596. fi;
  2597. ac_prog=ld
  2598. if test "$GCC" = yes; then
  2599.   # Check if gcc -print-prog-name=ld gives a path.
  2600.   echo "$as_me:$LINENO: checking for ld used by $CC" >&5
  2601. echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6
  2602.   case $host in
  2603.   *-*-mingw*)
  2604.     # gcc leaves a trailing carriage return which upsets mingw
  2605.     ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '15'` ;;
  2606.   *)
  2607.     ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
  2608.   esac
  2609.   case $ac_prog in
  2610.     # Accept absolute paths.
  2611.     [\/]* | ?:[\/]*)
  2612.       re_direlt='/[^/][^/]*/../'
  2613.       # Canonicalize the pathname of ld
  2614.       ac_prog=`echo $ac_prog| $SED 's%\\%/%g'`
  2615.       while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
  2616. ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"`
  2617.       done
  2618.       test -z "$LD" && LD="$ac_prog"
  2619.       ;;
  2620.   "")
  2621.     # If it fails, then pretend we aren't using GCC.
  2622.     ac_prog=ld
  2623.     ;;
  2624.   *)
  2625.     # If it is relative, then search for the first ld in PATH.
  2626.     with_gnu_ld=unknown
  2627.     ;;
  2628.   esac
  2629. elif test "$with_gnu_ld" = yes; then
  2630.   echo "$as_me:$LINENO: checking for GNU ld" >&5
  2631. echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6
  2632. else
  2633.   echo "$as_me:$LINENO: checking for non-GNU ld" >&5
  2634. echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6
  2635. fi
  2636. if test "${lt_cv_path_LD+set}" = set; then
  2637.   echo $ECHO_N "(cached) $ECHO_C" >&6
  2638. else
  2639.   if test -z "$LD"; then
  2640.   lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
  2641.   for ac_dir in $PATH; do
  2642.     IFS="$lt_save_ifs"
  2643.     test -z "$ac_dir" && ac_dir=.
  2644.     if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
  2645.       lt_cv_path_LD="$ac_dir/$ac_prog"
  2646.       # Check to see if the program is GNU ld.  I'd rather use --version,
  2647.       # but apparently some variants of GNU ld only accept -v.
  2648.       # Break only if it was the GNU/non-GNU ld that we prefer.
  2649.       case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
  2650.       *GNU* | *'with BFD'*)
  2651. test "$with_gnu_ld" != no && break
  2652. ;;
  2653.       *)
  2654. test "$with_gnu_ld" != yes && break
  2655. ;;
  2656.       esac
  2657.     fi
  2658.   done
  2659.   IFS="$lt_save_ifs"
  2660. else
  2661.   lt_cv_path_LD="$LD" # Let the user override the test with a path.
  2662. fi
  2663. fi
  2664. LD="$lt_cv_path_LD"
  2665. if test -n "$LD"; then
  2666.   echo "$as_me:$LINENO: result: $LD" >&5
  2667. echo "${ECHO_T}$LD" >&6
  2668. else
  2669.   echo "$as_me:$LINENO: result: no" >&5
  2670. echo "${ECHO_T}no" >&6
  2671. fi
  2672. test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in $PATH" >&5
  2673. echo "$as_me: error: no acceptable ld found in $PATH" >&2;}
  2674.    { (exit 1); exit 1; }; }
  2675. echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5
  2676. echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6
  2677. if test "${lt_cv_prog_gnu_ld+set}" = set; then
  2678.   echo $ECHO_N "(cached) $ECHO_C" >&6
  2679. else
  2680.   # I'd rather use --version here, but apparently some GNU lds only accept -v.
  2681. case `$LD -v 2>&1 </dev/null` in
  2682. *GNU* | *'with BFD'*)
  2683.   lt_cv_prog_gnu_ld=yes
  2684.   ;;
  2685. *)
  2686.   lt_cv_prog_gnu_ld=no
  2687.   ;;
  2688. esac
  2689. fi
  2690. echo "$as_me:$LINENO: result: $lt_cv_prog_gnu_ld" >&5
  2691. echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6
  2692. with_gnu_ld=$lt_cv_prog_gnu_ld
  2693.   # Check if GNU C++ uses GNU ld as the underlying linker, since the
  2694.   # archiving commands below assume that GNU ld is being used.
  2695.   if test "$with_gnu_ld" = yes; then
  2696.     archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
  2697.     archive_expsym_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
  2698.     hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir'
  2699.     export_dynamic_flag_spec_CXX='${wl}--export-dynamic'
  2700.     # If archive_cmds runs LD, not CC, wlarc should be empty
  2701.     # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to
  2702.     #     investigate it a little bit more. (MM)
  2703.     wlarc='${wl}'
  2704.     # ancient GNU ld didn't support --whole-archive et. al.
  2705.     if eval "`$CC -print-prog-name=ld` --help 2>&1" | 
  2706. grep 'no-whole-archive' > /dev/null; then
  2707.       whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
  2708.     else
  2709.       whole_archive_flag_spec_CXX=
  2710.     fi
  2711.   else
  2712.     with_gnu_ld=no
  2713.     wlarc=
  2714.     # A generic and very simple default shared library creation
  2715.     # command for GNU C++ for the case where it uses the native
  2716.     # linker, instead of GNU ld.  If possible, this setting should
  2717.     # overridden to take advantage of the native linker features on
  2718.     # the platform it is being used on.
  2719.     archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
  2720.   fi
  2721.   # Commands to make compiler produce verbose output that lists
  2722.   # what "hidden" libraries, object files and flags are used when
  2723.   # linking a shared library.
  2724.   output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "-L"'
  2725. else
  2726.   GXX=no
  2727.   with_gnu_ld=no
  2728.   wlarc=
  2729. fi
  2730. # PORTME: fill in a description of your system's C++ link characteristics
  2731. echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5
  2732. echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6
  2733. ld_shlibs_CXX=yes
  2734. case $host_os in
  2735.   aix3*)
  2736.     # FIXME: insert proper C++ library support
  2737.     ld_shlibs_CXX=no
  2738.     ;;
  2739.   aix4* | aix5*)
  2740.     if test "$host_cpu" = ia64; then
  2741.       # On IA64, the linker does run time linking by default, so we don't
  2742.       # have to do anything special.
  2743.       aix_use_runtimelinking=no
  2744.       exp_sym_flag='-Bexport'
  2745.       no_entry_flag=""
  2746.     else
  2747.       aix_use_runtimelinking=no
  2748.       # Test if we are trying to use run time linking or normal
  2749.       # AIX style linking. If -brtl is somewhere in LDFLAGS, we
  2750.       # need to do runtime linking.
  2751.       case $host_os in aix4.[23]|aix4.[23].*|aix5*)
  2752. for ld_flag in $LDFLAGS; do
  2753.   case $ld_flag in
  2754.   *-brtl*)
  2755.     aix_use_runtimelinking=yes
  2756.     break
  2757.     ;;
  2758.   esac
  2759. done
  2760.       esac
  2761.       exp_sym_flag='-bexport'
  2762.       no_entry_flag='-bnoentry'
  2763.     fi
  2764.     # When large executables or shared objects are built, AIX ld can
  2765.     # have problems creating the table of contents.  If linking a library
  2766.     # or program results in "error TOC overflow" add -mminimal-toc to
  2767.     # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
  2768.     # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
  2769.     archive_cmds_CXX=''
  2770.     hardcode_direct_CXX=yes
  2771.     hardcode_libdir_separator_CXX=':'
  2772.     link_all_deplibs_CXX=yes
  2773.     if test "$GXX" = yes; then
  2774.       case $host_os in aix4.[012]|aix4.[012].*)
  2775.       # We only want to do this on AIX 4.2 and lower, the check
  2776.       # below for broken collect2 doesn't work under 4.3+
  2777. collect2name=`${CC} -print-prog-name=collect2`
  2778. if test -f "$collect2name" && 
  2779.    strings "$collect2name" | grep resolve_lib_name >/dev/null
  2780. then
  2781.   # We have reworked collect2
  2782.   hardcode_direct_CXX=yes
  2783. else
  2784.   # We have old collect2
  2785.   hardcode_direct_CXX=unsupported
  2786.   # It fails to find uninstalled libraries when the uninstalled
  2787.   # path is not listed in the libpath.  Setting hardcode_minus_L
  2788.   # to unsupported forces relinking
  2789.   hardcode_minus_L_CXX=yes
  2790.   hardcode_libdir_flag_spec_CXX='-L$libdir'
  2791.   hardcode_libdir_separator_CXX=
  2792. fi
  2793.       esac
  2794.       shared_flag='-shared'
  2795.       if test "$aix_use_runtimelinking" = yes; then
  2796. shared_flag="$shared_flag "'${wl}-G'
  2797.       fi
  2798.     else
  2799.       # not using gcc
  2800.       if test "$host_cpu" = ia64; then
  2801. # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
  2802. # chokes on -Wl,-G. The following line is correct:
  2803. shared_flag='-G'
  2804.       else
  2805. if test "$aix_use_runtimelinking" = yes; then
  2806.   shared_flag='${wl}-G'
  2807. else
  2808.   shared_flag='${wl}-bM:SRE'
  2809. fi
  2810.       fi
  2811.     fi
  2812.     # It seems that -bexpall does not export symbols beginning with
  2813.     # underscore (_), so it is better to generate a list of symbols to export.
  2814.     always_export_symbols_CXX=yes
  2815.     if test "$aix_use_runtimelinking" = yes; then
  2816.       # Warning - without using the other runtime loading flags (-brtl),
  2817.       # -berok will link without error, but may produce a broken library.
  2818.       allow_undefined_flag_CXX='-berok'
  2819.       # Determine the default libpath from the value encoded in an empty executable.
  2820.       cat >conftest.$ac_ext <<_ACEOF
  2821. /* confdefs.h.  */
  2822. _ACEOF
  2823. cat confdefs.h >>conftest.$ac_ext
  2824. cat >>conftest.$ac_ext <<_ACEOF
  2825. /* end confdefs.h.  */
  2826. int
  2827. main ()
  2828. {
  2829.   ;
  2830.   return 0;
  2831. }
  2832. _ACEOF
  2833. rm -f conftest.$ac_objext conftest$ac_exeext
  2834. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  2835.   (eval $ac_link) 2>conftest.er1
  2836.   ac_status=$?
  2837.   grep -v '^ *+' conftest.er1 >conftest.err
  2838.   rm -f conftest.er1
  2839.   cat conftest.err >&5
  2840.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2841.   (exit $ac_status); } &&
  2842.  { ac_try='test -z "$ac_cxx_werror_flag"
  2843.  || test ! -s conftest.err'
  2844.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2845.   (eval $ac_try) 2>&5
  2846.   ac_status=$?
  2847.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2848.   (exit $ac_status); }; } &&
  2849.  { ac_try='test -s conftest$ac_exeext'
  2850.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2851.   (eval $ac_try) 2>&5
  2852.   ac_status=$?
  2853.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2854.   (exit $ac_status); }; }; then
  2855. aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *(.*)$/1/; p; }
  2856. }'`
  2857. # Check for a 64-bit object if we didn't find anything.
  2858. if 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; }
  2859. }'`; fi
  2860. else
  2861.   echo "$as_me: failed program was:" >&5
  2862. sed 's/^/| /' conftest.$ac_ext >&5
  2863. fi
  2864. rm -f conftest.err conftest.$ac_objext 
  2865.       conftest$ac_exeext conftest.$ac_ext
  2866. if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
  2867.       hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath"
  2868.       archive_expsym_cmds_CXX="$CC"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"${wl}$no_entry_flag ${wl}$exp_sym_flag:$export_symbols $shared_flag"
  2869.      else
  2870.       if test "$host_cpu" = ia64; then
  2871. hardcode_libdir_flag_spec_CXX='${wl}-R $libdir:/usr/lib:/lib'
  2872. allow_undefined_flag_CXX="-z nodefs"
  2873. archive_expsym_cmds_CXX="$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}${allow_undefined_flag} '"${wl}$no_entry_flag ${wl}$exp_sym_flag:$export_symbols"
  2874.       else
  2875. # Determine the default libpath from the value encoded in an empty executable.
  2876. cat >conftest.$ac_ext <<_ACEOF
  2877. /* confdefs.h.  */
  2878. _ACEOF
  2879. cat confdefs.h >>conftest.$ac_ext
  2880. cat >>conftest.$ac_ext <<_ACEOF
  2881. /* end confdefs.h.  */
  2882. int
  2883. main ()
  2884. {
  2885.   ;
  2886.   return 0;
  2887. }
  2888. _ACEOF
  2889. rm -f conftest.$ac_objext conftest$ac_exeext
  2890. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  2891.   (eval $ac_link) 2>conftest.er1
  2892.   ac_status=$?
  2893.   grep -v '^ *+' conftest.er1 >conftest.err
  2894.   rm -f conftest.er1
  2895.   cat conftest.err >&5
  2896.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2897.   (exit $ac_status); } &&
  2898.  { ac_try='test -z "$ac_cxx_werror_flag"
  2899.  || test ! -s conftest.err'
  2900.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2901.   (eval $ac_try) 2>&5
  2902.   ac_status=$?
  2903.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2904.   (exit $ac_status); }; } &&
  2905.  { ac_try='test -s conftest$ac_exeext'
  2906.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2907.   (eval $ac_try) 2>&5
  2908.   ac_status=$?
  2909.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2910.   (exit $ac_status); }; }; then
  2911. aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *(.*)$/1/; p; }
  2912. }'`
  2913. # Check for a 64-bit object if we didn't find anything.
  2914. if 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; }
  2915. }'`; fi
  2916. else
  2917.   echo "$as_me: failed program was:" >&5
  2918. sed 's/^/| /' conftest.$ac_ext >&5
  2919. fi
  2920. rm -f conftest.err conftest.$ac_objext 
  2921.       conftest$ac_exeext conftest.$ac_ext
  2922. if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
  2923. hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath"
  2924. # Warning - without using the other run time loading flags,
  2925. # -berok will link without error, but may produce a broken library.
  2926. no_undefined_flag_CXX=' ${wl}-bernotok'
  2927. allow_undefined_flag_CXX=' ${wl}-berok'
  2928. # -bexpall does not export symbols beginning with underscore (_)
  2929. always_export_symbols_CXX=yes
  2930. # Exported symbols can be pulled into shared objects from archives
  2931. whole_archive_flag_spec_CXX=' '
  2932. archive_cmds_need_lc_CXX=yes
  2933. # This is similar to how AIX traditionally builds its shared libraries.
  2934. archive_expsym_cmds_CXX="$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}-bE:$export_symbols ${wl}-bnoentry${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
  2935.       fi
  2936.     fi
  2937.     ;;
  2938.   chorus*)
  2939.     case $cc_basename in
  2940.       *)
  2941. # FIXME: insert proper C++ library support
  2942. ld_shlibs_CXX=no
  2943. ;;
  2944.     esac
  2945.     ;;
  2946.   cygwin* | mingw* | pw32*)
  2947.     # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless,
  2948.     # as there is no search path for DLLs.
  2949.     hardcode_libdir_flag_spec_CXX='-L$libdir'
  2950.     allow_undefined_flag_CXX=unsupported
  2951.     always_export_symbols_CXX=no
  2952.     enable_shared_with_static_runtimes_CXX=yes
  2953.     if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
  2954.       archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib'
  2955.       # If the export-symbols file already is a .def file (1st line
  2956.       # is EXPORTS), use it as is; otherwise, prepend...
  2957.       archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
  2958. cp $export_symbols $output_objdir/$soname.def;
  2959.       else
  2960. echo EXPORTS > $output_objdir/$soname.def;
  2961. cat $export_symbols >> $output_objdir/$soname.def;
  2962.       fi~
  2963.       $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib'
  2964.     else
  2965.       ld_shlibs_CXX=no
  2966.     fi
  2967.   ;;
  2968.       darwin* | rhapsody*)
  2969.         case $host_os in
  2970.         rhapsody* | darwin1.[012])
  2971.          allow_undefined_flag_CXX='${wl}-undefined ${wl}suppress'
  2972.          ;;
  2973.        *) # Darwin 1.3 on
  2974.          if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
  2975.            allow_undefined_flag_CXX='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
  2976.          else
  2977.            case ${MACOSX_DEPLOYMENT_TARGET} in
  2978.              10.[012])
  2979.                allow_undefined_flag_CXX='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
  2980.                ;;
  2981.              10.*)
  2982.                allow_undefined_flag_CXX='${wl}-undefined ${wl}dynamic_lookup'
  2983.                ;;
  2984.            esac
  2985.          fi
  2986.          ;;
  2987.         esac
  2988.       archive_cmds_need_lc_CXX=no
  2989.       hardcode_direct_CXX=no
  2990.       hardcode_automatic_CXX=yes
  2991.       hardcode_shlibpath_var_CXX=unsupported
  2992.       whole_archive_flag_spec_CXX=''
  2993.       link_all_deplibs_CXX=yes
  2994.     if test "$GXX" = yes ; then
  2995.       lt_int_apple_cc_single_mod=no
  2996.       output_verbose_link_cmd='echo'
  2997.       if $CC -dumpspecs 2>&1 | $EGREP 'single_module' >/dev/null ; then
  2998.        lt_int_apple_cc_single_mod=yes
  2999.       fi
  3000.       if test "X$lt_int_apple_cc_single_mod" = Xyes ; then
  3001.        archive_cmds_CXX='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring'
  3002.       else
  3003.           archive_cmds_CXX='$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'
  3004.         fi
  3005.         module_cmds_CXX='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
  3006.         # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
  3007.           if test "X$lt_int_apple_cc_single_mod" = Xyes ; then
  3008.             archive_expsym_cmds_CXX='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}'
  3009.           else
  3010.             archive_expsym_cmds_CXX='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}'
  3011.           fi
  3012.             module_expsym_cmds_CXX='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}'
  3013.       else
  3014.       case $cc_basename in
  3015.         xlc*)
  3016.          output_verbose_link_cmd='echo'
  3017.           archive_cmds_CXX='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring'
  3018.           module_cmds_CXX='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
  3019.           # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
  3020.           archive_expsym_cmds_CXX='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}'
  3021.           module_expsym_cmds_CXX='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}'
  3022.           ;;
  3023.        *)
  3024.          ld_shlibs_CXX=no
  3025.           ;;
  3026.       esac
  3027.       fi
  3028.         ;;
  3029.   dgux*)
  3030.     case $cc_basename in
  3031.       ec++*)
  3032. # FIXME: insert proper C++ library support
  3033. ld_shlibs_CXX=no
  3034. ;;
  3035.       ghcx*)
  3036. # Green Hills C++ Compiler
  3037. # FIXME: insert proper C++ library support
  3038. ld_shlibs_CXX=no
  3039. ;;
  3040.       *)
  3041. # FIXME: insert proper C++ library support
  3042. ld_shlibs_CXX=no
  3043. ;;
  3044.     esac
  3045.     ;;
  3046.   freebsd[12]*)
  3047.     # C++ shared libraries reported to be fairly broken before switch to ELF
  3048.     ld_shlibs_CXX=no
  3049.     ;;
  3050.   freebsd-elf*)
  3051.     archive_cmds_need_lc_CXX=no
  3052.     ;;
  3053.   freebsd* | kfreebsd*-gnu | dragonfly*)
  3054.     # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF
  3055.     # conventions
  3056.     ld_shlibs_CXX=yes
  3057.     ;;
  3058.   gnu*)
  3059.     ;;
  3060.   hpux9*)
  3061.     hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir'
  3062.     hardcode_libdir_separator_CXX=:
  3063.     export_dynamic_flag_spec_CXX='${wl}-E'
  3064.     hardcode_direct_CXX=yes
  3065.     hardcode_minus_L_CXX=yes # Not in the search PATH,
  3066. # but as the default
  3067. # location of the library.
  3068.     case $cc_basename in
  3069.     CC*)
  3070.       # FIXME: insert proper C++ library support
  3071.       ld_shlibs_CXX=no
  3072.       ;;
  3073.     aCC*)
  3074.       archive_cmds_CXX='$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'
  3075.       # Commands to make compiler produce verbose output that lists
  3076.       # what "hidden" libraries, object files and flags are used when
  3077.       # linking a shared library.
  3078.       #
  3079.       # There doesn't appear to be a way to prevent this compiler from
  3080.       # explicitly linking system object files so we need to strip them
  3081.       # from the output so that they don't get included in the library
  3082.       # dependencies.
  3083.       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'
  3084.       ;;
  3085.     *)
  3086.       if test "$GXX" = yes; then
  3087.         archive_cmds_CXX='$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'
  3088.       else
  3089.         # FIXME: insert proper C++ library support
  3090.         ld_shlibs_CXX=no
  3091.       fi
  3092.       ;;
  3093.     esac
  3094.     ;;
  3095.   hpux10*|hpux11*)
  3096.     if test $with_gnu_ld = no; then
  3097.       case $host_cpu in
  3098.       hppa*64*)
  3099. hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir'
  3100. hardcode_libdir_flag_spec_ld_CXX='+b $libdir'
  3101. hardcode_libdir_separator_CXX=:
  3102.         ;;
  3103.       ia64*)
  3104. hardcode_libdir_flag_spec_CXX='-L$libdir'
  3105.         ;;
  3106.       *)
  3107. hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir'
  3108. hardcode_libdir_separator_CXX=:
  3109. export_dynamic_flag_spec_CXX='${wl}-E'
  3110.         ;;
  3111.       esac
  3112.     fi
  3113.     case $host_cpu in
  3114.     hppa*64*)
  3115.       hardcode_direct_CXX=no
  3116.       hardcode_shlibpath_var_CXX=no
  3117.       ;;
  3118.     ia64*)
  3119.       hardcode_direct_CXX=no
  3120.       hardcode_shlibpath_var_CXX=no
  3121.       hardcode_minus_L_CXX=yes # Not in the search PATH,
  3122.       # but as the default
  3123.       # location of the library.
  3124.       ;;
  3125.     *)
  3126.       hardcode_direct_CXX=yes
  3127.       hardcode_minus_L_CXX=yes # Not in the search PATH,
  3128.       # but as the default
  3129.       # location of the library.
  3130.       ;;
  3131.     esac
  3132.     case $cc_basename in
  3133.       CC*)
  3134. # FIXME: insert proper C++ library support
  3135. ld_shlibs_CXX=no
  3136. ;;
  3137.       aCC*)
  3138. case $host_cpu in
  3139. hppa*64*|ia64*)
  3140.   archive_cmds_CXX='$LD -b +h $soname -o $lib $linker_flags $libobjs $deplibs'
  3141.   ;;
  3142. *)
  3143.   archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
  3144.   ;;
  3145. esac
  3146. # Commands to make compiler produce verbose output that lists
  3147. # what "hidden" libraries, object files and flags are used when
  3148. # linking a shared library.
  3149. #
  3150. # There doesn't appear to be a way to prevent this compiler from
  3151. # explicitly linking system object files so we need to strip them
  3152. # from the output so that they don't get included in the library
  3153. # dependencies.
  3154. 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'
  3155. ;;
  3156.       *)
  3157. if test "$GXX" = yes; then
  3158.   if test $with_gnu_ld = no; then
  3159.     case $host_cpu in
  3160.     ia64*|hppa*64*)
  3161.       archive_cmds_CXX='$LD -b +h $soname -o $lib $linker_flags $libobjs $deplibs'
  3162.       ;;
  3163.     *)
  3164.       archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
  3165.       ;;
  3166.     esac
  3167.   fi
  3168. else
  3169.   # FIXME: insert proper C++ library support
  3170.   ld_shlibs_CXX=no
  3171. fi
  3172. ;;
  3173.     esac
  3174.     ;;
  3175.   irix5* | irix6*)
  3176.     case $cc_basename in
  3177.       CC*)
  3178. # SGI C++
  3179. archive_cmds_CXX='$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'
  3180. # Archives containing C++ object files must be created using
  3181. # "CC -ar", where "CC" is the IRIX C++ compiler.  This is
  3182. # necessary to make sure instantiated templates are included
  3183. # in the archive.
  3184. old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs'
  3185. ;;
  3186.       *)
  3187. if test "$GXX" = yes; then
  3188.   if test "$with_gnu_ld" = no; then
  3189.     archive_cmds_CXX='$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'
  3190.   else
  3191.     archive_cmds_CXX='$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'
  3192.   fi
  3193. fi
  3194. link_all_deplibs_CXX=yes
  3195. ;;
  3196.     esac
  3197.     hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir'
  3198.     hardcode_libdir_separator_CXX=:
  3199.     ;;
  3200.   linux*)
  3201.     case $cc_basename in
  3202.       KCC*)
  3203. # Kuck and Associates, Inc. (KAI) C++ Compiler
  3204. # KCC will only create a shared library if the output file
  3205. # ends with ".so" (or ".sl" for HP-UX), so rename the library
  3206. # to its proper name (with version) after linking.
  3207. archive_cmds_CXX='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'
  3208. archive_expsym_cmds_CXX='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'
  3209. # Commands to make compiler produce verbose output that lists
  3210. # what "hidden" libraries, object files and flags are used when
  3211. # linking a shared library.
  3212. #
  3213. # There doesn't appear to be a way to prevent this compiler from
  3214. # explicitly linking system object files so we need to strip them
  3215. # from the output so that they don't get included in the library
  3216. # dependencies.
  3217. 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'
  3218. hardcode_libdir_flag_spec_CXX='${wl}--rpath,$libdir'
  3219. export_dynamic_flag_spec_CXX='${wl}--export-dynamic'
  3220. # Archives containing C++ object files must be created using
  3221. # "CC -Bstatic", where "CC" is the KAI C++ compiler.
  3222. old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs'
  3223. ;;
  3224.       icpc*)
  3225. # Intel C++
  3226. with_gnu_ld=yes
  3227. # version 8.0 and above of icpc choke on multiply defined symbols
  3228. # if we add $predep_objects and $postdep_objects, however 7.1 and
  3229. # earlier do not add the objects themselves.
  3230. case `$CC -V 2>&1` in
  3231. *"Version 7."*)
  3232.      archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
  3233.      archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
  3234.   ;;
  3235. *)  # Version 8.0 or newer
  3236.   tmp_idyn=
  3237.   case $host_cpu in
  3238.     ia64*) tmp_idyn=' -i_dynamic';;
  3239.   esac
  3240.      archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  3241.   archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
  3242.   ;;
  3243. esac
  3244. archive_cmds_need_lc_CXX=no
  3245. hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir'
  3246. export_dynamic_flag_spec_CXX='${wl}--export-dynamic'
  3247. whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
  3248. ;;
  3249.       pgCC*)
  3250.         # Portland Group C++ compiler
  3251. archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
  3252.    archive_expsym_cmds_CXX='$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'
  3253. hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir'
  3254. export_dynamic_flag_spec_CXX='${wl}--export-dynamic'
  3255. whole_archive_flag_spec_CXX='${wl}--whole-archive`for conv in $convenience""; do test  -n "$conv" && new_convenience="$new_convenience,$conv"; done; $echo "$new_convenience"` ${wl}--no-whole-archive'
  3256.         ;;
  3257.       cxx*)
  3258. # Compaq C++
  3259. archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
  3260. archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname  -o $lib ${wl}-retain-symbols-file $wl$export_symbols'
  3261. runpath_var=LD_RUN_PATH
  3262. hardcode_libdir_flag_spec_CXX='-rpath $libdir'
  3263. hardcode_libdir_separator_CXX=:
  3264. # Commands to make compiler produce verbose output that lists
  3265. # what "hidden" libraries, object files and flags are used when
  3266. # linking a shared library.
  3267. #
  3268. # There doesn't appear to be a way to prevent this compiler from
  3269. # explicitly linking system object files so we need to strip them
  3270. # from the output so that they don't get included in the library
  3271. # dependencies.
  3272. 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'
  3273. ;;
  3274.     esac
  3275.     ;;
  3276.   lynxos*)
  3277.     # FIXME: insert proper C++ library support
  3278.     ld_shlibs_CXX=no
  3279.     ;;
  3280.   m88k*)
  3281.     # FIXME: insert proper C++ library support
  3282.     ld_shlibs_CXX=no
  3283.     ;;
  3284.   mvs*)
  3285.     case $cc_basename in
  3286.       cxx*)
  3287. # FIXME: insert proper C++ library support
  3288. ld_shlibs_CXX=no
  3289. ;;
  3290.       *)
  3291. # FIXME: insert proper C++ library support
  3292. ld_shlibs_CXX=no
  3293. ;;
  3294.     esac
  3295.     ;;
  3296.   netbsd*)
  3297.     if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
  3298.       archive_cmds_CXX='$LD -Bshareable  -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags'
  3299.       wlarc=
  3300.       hardcode_libdir_flag_spec_CXX='-R$libdir'
  3301.       hardcode_direct_CXX=yes
  3302.       hardcode_shlibpath_var_CXX=no
  3303.     fi
  3304.     # Workaround some broken pre-1.5 toolchains
  3305.     output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"'
  3306.     ;;
  3307.   openbsd2*)
  3308.     # C++ shared libraries are fairly broken
  3309.     ld_shlibs_CXX=no
  3310.     ;;
  3311.   openbsd*)
  3312.     hardcode_direct_CXX=yes
  3313.     hardcode_shlibpath_var_CXX=no
  3314.     archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
  3315.     hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir'
  3316.     if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
  3317.       archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib'
  3318.       export_dynamic_flag_spec_CXX='${wl}-E'
  3319.       whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
  3320.     fi
  3321.     output_verbose_link_cmd='echo'
  3322.     ;;
  3323.   osf3*)
  3324.     case $cc_basename in
  3325.       KCC*)
  3326. # Kuck and Associates, Inc. (KAI) C++ Compiler
  3327. # KCC will only create a shared library if the output file
  3328. # ends with ".so" (or ".sl" for HP-UX), so rename the library
  3329. # to its proper name (with version) after linking.
  3330. archive_cmds_CXX='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'
  3331. hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir'
  3332. hardcode_libdir_separator_CXX=:
  3333. # Archives containing C++ object files must be created using
  3334. # "CC -Bstatic", where "CC" is the KAI C++ compiler.
  3335. old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs'
  3336. ;;
  3337.       RCC*)
  3338. # Rational C++ 2.4.1
  3339. # FIXME: insert proper C++ library support
  3340. ld_shlibs_CXX=no
  3341. ;;
  3342.       cxx*)
  3343. allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}*'
  3344. archive_cmds_CXX='$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'
  3345. hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir'
  3346. hardcode_libdir_separator_CXX=:
  3347. # Commands to make compiler produce verbose output that lists
  3348. # what "hidden" libraries, object files and flags are used when
  3349. # linking a shared library.
  3350. #
  3351. # There doesn't appear to be a way to prevent this compiler from
  3352. # explicitly linking system object files so we need to strip them
  3353. # from the output so that they don't get included in the library
  3354. # dependencies.
  3355. 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'
  3356. ;;
  3357.       *)
  3358. if test "$GXX" = yes && test "$with_gnu_ld" = no; then
  3359.   allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}*'
  3360.   archive_cmds_CXX='$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'
  3361.   hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir'
  3362.   hardcode_libdir_separator_CXX=:
  3363.   # Commands to make compiler produce verbose output that lists
  3364.   # what "hidden" libraries, object files and flags are used when
  3365.   # linking a shared library.
  3366.   output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "-L"'
  3367. else
  3368.   # FIXME: insert proper C++ library support
  3369.   ld_shlibs_CXX=no
  3370. fi
  3371. ;;
  3372.     esac
  3373.     ;;
  3374.   osf4* | osf5*)
  3375.     case $cc_basename in
  3376.       KCC*)
  3377. # Kuck and Associates, Inc. (KAI) C++ Compiler
  3378. # KCC will only create a shared library if the output file
  3379. # ends with ".so" (or ".sl" for HP-UX), so rename the library
  3380. # to its proper name (with version) after linking.
  3381. archive_cmds_CXX='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'
  3382. hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir'
  3383. hardcode_libdir_separator_CXX=:
  3384. # Archives containing C++ object files must be created using
  3385. # the KAI C++ compiler.
  3386. old_archive_cmds_CXX='$CC -o $oldlib $oldobjs'
  3387. ;;
  3388.       RCC*)
  3389. # Rational C++ 2.4.1
  3390. # FIXME: insert proper C++ library support
  3391. ld_shlibs_CXX=no
  3392. ;;
  3393.       cxx*)
  3394. allow_undefined_flag_CXX=' -expect_unresolved *'
  3395. archive_cmds_CXX='$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'
  3396. archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\n" -exported_symbol "$i" >> $lib.exp; done~
  3397.   echo "-hidden">> $lib.exp~
  3398.   $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~
  3399.   $rm $lib.exp'
  3400. hardcode_libdir_flag_spec_CXX='-rpath $libdir'
  3401. hardcode_libdir_separator_CXX=:
  3402. # Commands to make compiler produce verbose output that lists
  3403. # what "hidden" libraries, object files and flags are used when
  3404. # linking a shared library.
  3405. #
  3406. # There doesn't appear to be a way to prevent this compiler from
  3407. # explicitly linking system object files so we need to strip them
  3408. # from the output so that they don't get included in the library
  3409. # dependencies.
  3410. 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'
  3411. ;;
  3412.       *)
  3413. if test "$GXX" = yes && test "$with_gnu_ld" = no; then
  3414.   allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}*'
  3415.  archive_cmds_CXX='$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'
  3416.   hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir'
  3417.   hardcode_libdir_separator_CXX=:
  3418.   # Commands to make compiler produce verbose output that lists
  3419.   # what "hidden" libraries, object files and flags are used when
  3420.   # linking a shared library.
  3421.   output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "-L"'
  3422. else
  3423.   # FIXME: insert proper C++ library support
  3424.   ld_shlibs_CXX=no
  3425. fi
  3426. ;;
  3427.     esac