ltmain.sh
上传用户:shw771010
上传日期:2022-01-05
资源大小:991k
文件大小:238k
源码类别:

Audio

开发平台:

Unix_Linux

  1.   export_symbols="$arg"
  2.   test -f "$arg" 
  3.     || func_fatal_error "symbol file `$arg' does not exist"
  4.   prev=
  5.   continue
  6.   ;;
  7. expsyms_regex)
  8.   export_symbols_regex="$arg"
  9.   prev=
  10.   continue
  11.   ;;
  12. framework)
  13.   case $host in
  14.     *-*-darwin*)
  15.       case "$deplibs " in
  16. *" $qarg.ltframework "*) ;;
  17. *) deplibs="$deplibs $qarg.ltframework" # this is fixed later
  18.    ;;
  19.       esac
  20.       ;;
  21.   esac
  22.   prev=
  23.   continue
  24.   ;;
  25. inst_prefix)
  26.   inst_prefix_dir="$arg"
  27.   prev=
  28.   continue
  29.   ;;
  30. objectlist)
  31.   if test -f "$arg"; then
  32.     save_arg=$arg
  33.     moreargs=
  34.     for fil in `cat "$save_arg"`
  35.     do
  36. #       moreargs="$moreargs $fil"
  37.       arg=$fil
  38.       # A libtool-controlled object.
  39.       # Check to see that this really is a libtool object.
  40.       if func_lalib_unsafe_p "$arg"; then
  41. pic_object=
  42. non_pic_object=
  43. # Read the .lo file
  44. func_source "$arg"
  45. if test -z "$pic_object" ||
  46.    test -z "$non_pic_object" ||
  47.    test "$pic_object" = none &&
  48.    test "$non_pic_object" = none; then
  49.   func_fatal_error "cannot find name of object for `$arg'"
  50. fi
  51. # Extract subdirectory from the argument.
  52. func_dirname "$arg" "/" ""
  53. xdir="$func_dirname_result"
  54. if test "$pic_object" != none; then
  55.   # Prepend the subdirectory the object is found in.
  56.   pic_object="$xdir$pic_object"
  57.   if test "$prev" = dlfiles; then
  58.     if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
  59.       dlfiles="$dlfiles $pic_object"
  60.       prev=
  61.       continue
  62.     else
  63.       # If libtool objects are unsupported, then we need to preload.
  64.       prev=dlprefiles
  65.     fi
  66.   fi
  67.   # CHECK ME:  I think I busted this.  -Ossama
  68.   if test "$prev" = dlprefiles; then
  69.     # Preload the old-style object.
  70.     dlprefiles="$dlprefiles $pic_object"
  71.     prev=
  72.   fi
  73.   # A PIC object.
  74.   func_append libobjs " $pic_object"
  75.   arg="$pic_object"
  76. fi
  77. # Non-PIC object.
  78. if test "$non_pic_object" != none; then
  79.   # Prepend the subdirectory the object is found in.
  80.   non_pic_object="$xdir$non_pic_object"
  81.   # A standard non-PIC object
  82.   func_append non_pic_objects " $non_pic_object"
  83.   if test -z "$pic_object" || test "$pic_object" = none ; then
  84.     arg="$non_pic_object"
  85.   fi
  86. else
  87.   # If the PIC object exists, use it instead.
  88.   # $xdir was prepended to $pic_object above.
  89.   non_pic_object="$pic_object"
  90.   func_append non_pic_objects " $non_pic_object"
  91. fi
  92.       else
  93. # Only an error if not doing a dry-run.
  94. if $opt_dry_run; then
  95.   # Extract subdirectory from the argument.
  96.   func_dirname "$arg" "/" ""
  97.   xdir="$func_dirname_result"
  98.   func_lo2o "$arg"
  99.   pic_object=$xdir$objdir/$func_lo2o_result
  100.   non_pic_object=$xdir$func_lo2o_result
  101.   func_append libobjs " $pic_object"
  102.   func_append non_pic_objects " $non_pic_object"
  103.         else
  104.   func_fatal_error "`$arg' is not a valid libtool object"
  105. fi
  106.       fi
  107.     done
  108.   else
  109.     func_fatal_error "link input file `$arg' does not exist"
  110.   fi
  111.   arg=$save_arg
  112.   prev=
  113.   continue
  114.   ;;
  115. precious_regex)
  116.   precious_files_regex="$arg"
  117.   prev=
  118.   continue
  119.   ;;
  120. release)
  121.   release="-$arg"
  122.   prev=
  123.   continue
  124.   ;;
  125. rpath | xrpath)
  126.   # We need an absolute path.
  127.   case $arg in
  128.   [\/]* | [A-Za-z]:[\/]*) ;;
  129.   *)
  130.     func_fatal_error "only absolute run-paths are allowed"
  131.     ;;
  132.   esac
  133.   if test "$prev" = rpath; then
  134.     case "$rpath " in
  135.     *" $arg "*) ;;
  136.     *) rpath="$rpath $arg" ;;
  137.     esac
  138.   else
  139.     case "$xrpath " in
  140.     *" $arg "*) ;;
  141.     *) xrpath="$xrpath $arg" ;;
  142.     esac
  143.   fi
  144.   prev=
  145.   continue
  146.   ;;
  147. shrext)
  148.   shrext_cmds="$arg"
  149.   prev=
  150.   continue
  151.   ;;
  152. weak)
  153.   weak_libs="$weak_libs $arg"
  154.   prev=
  155.   continue
  156.   ;;
  157. xcclinker)
  158.   linker_flags="$linker_flags $qarg"
  159.   compiler_flags="$compiler_flags $qarg"
  160.   prev=
  161.   func_append compile_command " $qarg"
  162.   func_append finalize_command " $qarg"
  163.   continue
  164.   ;;
  165. xcompiler)
  166.   compiler_flags="$compiler_flags $qarg"
  167.   prev=
  168.   func_append compile_command " $qarg"
  169.   func_append finalize_command " $qarg"
  170.   continue
  171.   ;;
  172. xlinker)
  173.   linker_flags="$linker_flags $qarg"
  174.   compiler_flags="$compiler_flags $wl$qarg"
  175.   prev=
  176.   func_append compile_command " $wl$qarg"
  177.   func_append finalize_command " $wl$qarg"
  178.   continue
  179.   ;;
  180. *)
  181.   eval "$prev="$arg""
  182.   prev=
  183.   continue
  184.   ;;
  185. esac
  186.       fi # test -n "$prev"
  187.       prevarg="$arg"
  188.       case $arg in
  189.       -all-static)
  190. if test -n "$link_static_flag"; then
  191.   # See comment for -static flag below, for more details.
  192.   func_append compile_command " $link_static_flag"
  193.   func_append finalize_command " $link_static_flag"
  194. fi
  195. continue
  196. ;;
  197.       -allow-undefined)
  198. # FIXME: remove this flag sometime in the future.
  199. func_fatal_error "`-allow-undefined' must not be used because it is the default"
  200. ;;
  201.       -avoid-version)
  202. avoid_version=yes
  203. continue
  204. ;;
  205.       -dlopen)
  206. prev=dlfiles
  207. continue
  208. ;;
  209.       -dlpreopen)
  210. prev=dlprefiles
  211. continue
  212. ;;
  213.       -export-dynamic)
  214. export_dynamic=yes
  215. continue
  216. ;;
  217.       -export-symbols | -export-symbols-regex)
  218. if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
  219.   func_fatal_error "more than one -exported-symbols argument is not allowed"
  220. fi
  221. if test "X$arg" = "X-export-symbols"; then
  222.   prev=expsyms
  223. else
  224.   prev=expsyms_regex
  225. fi
  226. continue
  227. ;;
  228.       -framework)
  229. prev=framework
  230. continue
  231. ;;
  232.       -inst-prefix-dir)
  233. prev=inst_prefix
  234. continue
  235. ;;
  236.       # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:*
  237.       # so, if we see these flags be careful not to treat them like -L
  238.       -L[A-Z][A-Z]*:*)
  239. case $with_gcc/$host in
  240. no/*-*-irix* | /*-*-irix*)
  241.   func_append compile_command " $arg"
  242.   func_append finalize_command " $arg"
  243.   ;;
  244. esac
  245. continue
  246. ;;
  247.       -L*)
  248. func_stripname '-L' '' "$arg"
  249. dir=$func_stripname_result
  250. if test -z "$dir"; then
  251.   if test "$#" -gt 0; then
  252.     func_fatal_error "require no space between `-L' and `$1'"
  253.   else
  254.     func_fatal_error "need path for `-L' option"
  255.   fi
  256. fi
  257. # We need an absolute path.
  258. case $dir in
  259. [\/]* | [A-Za-z]:[\/]*) ;;
  260. *)
  261.   absdir=`cd "$dir" && pwd`
  262.   test -z "$absdir" && 
  263.     func_fatal_error "cannot determine absolute directory name of `$dir'"
  264.   dir="$absdir"
  265.   ;;
  266. esac
  267. case "$deplibs " in
  268. *" -L$dir "*) ;;
  269. *)
  270.   deplibs="$deplibs -L$dir"
  271.   lib_search_path="$lib_search_path $dir"
  272.   ;;
  273. esac
  274. case $host in
  275. *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
  276.   testbindir=`$ECHO "X$dir" | $Xsed -e 's*/lib$*/bin*'`
  277.   case :$dllsearchpath: in
  278.   *":$dir:"*) ;;
  279.   ::) dllsearchpath=$dir;;
  280.   *) dllsearchpath="$dllsearchpath:$dir";;
  281.   esac
  282.   case :$dllsearchpath: in
  283.   *":$testbindir:"*) ;;
  284.   ::) dllsearchpath=$testbindir;;
  285.   *) dllsearchpath="$dllsearchpath:$testbindir";;
  286.   esac
  287.   ;;
  288. esac
  289. continue
  290. ;;
  291.       -l*)
  292. if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then
  293.   case $host in
  294.   *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc*)
  295.     # These systems don't actually have a C or math library (as such)
  296.     continue
  297.     ;;
  298.   *-*-os2*)
  299.     # These systems don't actually have a C library (as such)
  300.     test "X$arg" = "X-lc" && continue
  301.     ;;
  302.   *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
  303.     # Do not include libc due to us having libc/libc_r.
  304.     test "X$arg" = "X-lc" && continue
  305.     ;;
  306.   *-*-rhapsody* | *-*-darwin1.[012])
  307.     # Rhapsody C and math libraries are in the System framework
  308.     deplibs="$deplibs System.ltframework"
  309.     continue
  310.     ;;
  311.   *-*-sco3.2v5* | *-*-sco5v6*)
  312.     # Causes problems with __ctype
  313.     test "X$arg" = "X-lc" && continue
  314.     ;;
  315.   *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)
  316.     # Compiler inserts libc in the correct place for threads to work
  317.     test "X$arg" = "X-lc" && continue
  318.     ;;
  319.   esac
  320. elif test "X$arg" = "X-lc_r"; then
  321.  case $host in
  322.  *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
  323.    # Do not include libc_r directly, use -pthread flag.
  324.    continue
  325.    ;;
  326.  esac
  327. fi
  328. deplibs="$deplibs $arg"
  329. continue
  330. ;;
  331.       -module)
  332. module=yes
  333. continue
  334. ;;
  335.       # Tru64 UNIX uses -model [arg] to determine the layout of C++
  336.       # classes, name mangling, and exception handling.
  337.       # Darwin uses the -arch flag to determine output architecture.
  338.       -model|-arch|-isysroot)
  339. compiler_flags="$compiler_flags $arg"
  340. func_append compile_command " $arg"
  341. func_append finalize_command " $arg"
  342. prev=xcompiler
  343. continue
  344. ;;
  345.       -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads)
  346. compiler_flags="$compiler_flags $arg"
  347. func_append compile_command " $arg"
  348. func_append finalize_command " $arg"
  349. case "$new_inherited_linker_flags " in
  350.     *" $arg "*) ;;
  351.     * ) new_inherited_linker_flags="$new_inherited_linker_flags $arg" ;;
  352. esac
  353. continue
  354. ;;
  355.       -multi_module)
  356. single_module="${wl}-multi_module"
  357. continue
  358. ;;
  359.       -no-fast-install)
  360. fast_install=no
  361. continue
  362. ;;
  363.       -no-install)
  364. case $host in
  365. *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*)
  366.   # The PATH hackery in wrapper scripts is required on Windows
  367.   # and Darwin in order for the loader to find any dlls it needs.
  368.   func_warning "`-no-install' is ignored for $host"
  369.   func_warning "assuming `-no-fast-install' instead"
  370.   fast_install=no
  371.   ;;
  372. *) no_install=yes ;;
  373. esac
  374. continue
  375. ;;
  376.       -no-undefined)
  377. allow_undefined=no
  378. continue
  379. ;;
  380.       -objectlist)
  381. prev=objectlist
  382. continue
  383. ;;
  384.       -o) prev=output ;;
  385.       -precious-files-regex)
  386. prev=precious_regex
  387. continue
  388. ;;
  389.       -release)
  390. prev=release
  391. continue
  392. ;;
  393.       -rpath)
  394. prev=rpath
  395. continue
  396. ;;
  397.       -R)
  398. prev=xrpath
  399. continue
  400. ;;
  401.       -R*)
  402. func_stripname '-R' '' "$arg"
  403. dir=$func_stripname_result
  404. # We need an absolute path.
  405. case $dir in
  406. [\/]* | [A-Za-z]:[\/]*) ;;
  407. *)
  408.   func_fatal_error "only absolute run-paths are allowed"
  409.   ;;
  410. esac
  411. case "$xrpath " in
  412. *" $dir "*) ;;
  413. *) xrpath="$xrpath $dir" ;;
  414. esac
  415. continue
  416. ;;
  417.       -shared)
  418. # The effects of -shared are defined in a previous loop.
  419. continue
  420. ;;
  421.       -shrext)
  422. prev=shrext
  423. continue
  424. ;;
  425.       -static | -static-libtool-libs)
  426. # The effects of -static are defined in a previous loop.
  427. # We used to do the same as -all-static on platforms that
  428. # didn't have a PIC flag, but the assumption that the effects
  429. # would be equivalent was wrong.  It would break on at least
  430. # Digital Unix and AIX.
  431. continue
  432. ;;
  433.       -thread-safe)
  434. thread_safe=yes
  435. continue
  436. ;;
  437.       -version-info)
  438. prev=vinfo
  439. continue
  440. ;;
  441.       -version-number)
  442. prev=vinfo
  443. vinfo_number=yes
  444. continue
  445. ;;
  446.       -weak)
  447.         prev=weak
  448. continue
  449. ;;
  450.       -Wc,*)
  451. func_stripname '-Wc,' '' "$arg"
  452. args=$func_stripname_result
  453. arg=
  454. save_ifs="$IFS"; IFS=','
  455. for flag in $args; do
  456.   IFS="$save_ifs"
  457.           func_quote_for_eval "$flag"
  458.   arg="$arg $wl$func_quote_for_eval_result"
  459.   compiler_flags="$compiler_flags $func_quote_for_eval_result"
  460. done
  461. IFS="$save_ifs"
  462. func_stripname ' ' '' "$arg"
  463. arg=$func_stripname_result
  464. ;;
  465.       -Wl,*)
  466. func_stripname '-Wl,' '' "$arg"
  467. args=$func_stripname_result
  468. arg=
  469. save_ifs="$IFS"; IFS=','
  470. for flag in $args; do
  471.   IFS="$save_ifs"
  472.           func_quote_for_eval "$flag"
  473.   arg="$arg $wl$func_quote_for_eval_result"
  474.   compiler_flags="$compiler_flags $wl$func_quote_for_eval_result"
  475.   linker_flags="$linker_flags $func_quote_for_eval_result"
  476. done
  477. IFS="$save_ifs"
  478. func_stripname ' ' '' "$arg"
  479. arg=$func_stripname_result
  480. ;;
  481.       -Xcompiler)
  482. prev=xcompiler
  483. continue
  484. ;;
  485.       -Xlinker)
  486. prev=xlinker
  487. continue
  488. ;;
  489.       -XCClinker)
  490. prev=xcclinker
  491. continue
  492. ;;
  493.       # -msg_* for osf cc
  494.       -msg_*)
  495. func_quote_for_eval "$arg"
  496. arg="$func_quote_for_eval_result"
  497. ;;
  498.       # -64, -mips[0-9] enable 64-bit mode on the SGI compiler
  499.       # -r[0-9][0-9]* specifies the processor on the SGI compiler
  500.       # -xarch=*, -xtarget=* enable 64-bit mode on the Sun compiler
  501.       # +DA*, +DD* enable 64-bit mode on the HP compiler
  502.       # -q* pass through compiler args for the IBM compiler
  503.       # -m*, -t[45]*, -txscale* pass through architecture-specific
  504.       # compiler args for GCC
  505.       # -F/path gives path to uninstalled frameworks, gcc on darwin
  506.       # -p, -pg, --coverage, -fprofile-* pass through profiling flag for GCC
  507.       # @file GCC response files
  508.       -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| 
  509.       -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*)
  510.         func_quote_for_eval "$arg"
  511. arg="$func_quote_for_eval_result"
  512.         func_append compile_command " $arg"
  513.         func_append finalize_command " $arg"
  514.         compiler_flags="$compiler_flags $arg"
  515.         continue
  516.         ;;
  517.       # Some other compiler flag.
  518.       -* | +*)
  519.         func_quote_for_eval "$arg"
  520. arg="$func_quote_for_eval_result"
  521. ;;
  522.       *.$objext)
  523. # A standard object.
  524. objs="$objs $arg"
  525. ;;
  526.       *.lo)
  527. # A libtool-controlled object.
  528. # Check to see that this really is a libtool object.
  529. if func_lalib_unsafe_p "$arg"; then
  530.   pic_object=
  531.   non_pic_object=
  532.   # Read the .lo file
  533.   func_source "$arg"
  534.   if test -z "$pic_object" ||
  535.      test -z "$non_pic_object" ||
  536.      test "$pic_object" = none &&
  537.      test "$non_pic_object" = none; then
  538.     func_fatal_error "cannot find name of object for `$arg'"
  539.   fi
  540.   # Extract subdirectory from the argument.
  541.   func_dirname "$arg" "/" ""
  542.   xdir="$func_dirname_result"
  543.   if test "$pic_object" != none; then
  544.     # Prepend the subdirectory the object is found in.
  545.     pic_object="$xdir$pic_object"
  546.     if test "$prev" = dlfiles; then
  547.       if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
  548. dlfiles="$dlfiles $pic_object"
  549. prev=
  550. continue
  551.       else
  552. # If libtool objects are unsupported, then we need to preload.
  553. prev=dlprefiles
  554.       fi
  555.     fi
  556.     # CHECK ME:  I think I busted this.  -Ossama
  557.     if test "$prev" = dlprefiles; then
  558.       # Preload the old-style object.
  559.       dlprefiles="$dlprefiles $pic_object"
  560.       prev=
  561.     fi
  562.     # A PIC object.
  563.     func_append libobjs " $pic_object"
  564.     arg="$pic_object"
  565.   fi
  566.   # Non-PIC object.
  567.   if test "$non_pic_object" != none; then
  568.     # Prepend the subdirectory the object is found in.
  569.     non_pic_object="$xdir$non_pic_object"
  570.     # A standard non-PIC object
  571.     func_append non_pic_objects " $non_pic_object"
  572.     if test -z "$pic_object" || test "$pic_object" = none ; then
  573.       arg="$non_pic_object"
  574.     fi
  575.   else
  576.     # If the PIC object exists, use it instead.
  577.     # $xdir was prepended to $pic_object above.
  578.     non_pic_object="$pic_object"
  579.     func_append non_pic_objects " $non_pic_object"
  580.   fi
  581. else
  582.   # Only an error if not doing a dry-run.
  583.   if $opt_dry_run; then
  584.     # Extract subdirectory from the argument.
  585.     func_dirname "$arg" "/" ""
  586.     xdir="$func_dirname_result"
  587.     func_lo2o "$arg"
  588.     pic_object=$xdir$objdir/$func_lo2o_result
  589.     non_pic_object=$xdir$func_lo2o_result
  590.     func_append libobjs " $pic_object"
  591.     func_append non_pic_objects " $non_pic_object"
  592.   else
  593.     func_fatal_error "`$arg' is not a valid libtool object"
  594.   fi
  595. fi
  596. ;;
  597.       *.$libext)
  598. # An archive.
  599. deplibs="$deplibs $arg"
  600. old_deplibs="$old_deplibs $arg"
  601. continue
  602. ;;
  603.       *.la)
  604. # A libtool-controlled library.
  605. if test "$prev" = dlfiles; then
  606.   # This library was specified with -dlopen.
  607.   dlfiles="$dlfiles $arg"
  608.   prev=
  609. elif test "$prev" = dlprefiles; then
  610.   # The library was specified with -dlpreopen.
  611.   dlprefiles="$dlprefiles $arg"
  612.   prev=
  613. else
  614.   deplibs="$deplibs $arg"
  615. fi
  616. continue
  617. ;;
  618.       # Some other compiler argument.
  619.       *)
  620. # Unknown arguments in both finalize_command and compile_command need
  621. # to be aesthetically quoted because they are evaled later.
  622. func_quote_for_eval "$arg"
  623. arg="$func_quote_for_eval_result"
  624. ;;
  625.       esac # arg
  626.       # Now actually substitute the argument into the commands.
  627.       if test -n "$arg"; then
  628. func_append compile_command " $arg"
  629. func_append finalize_command " $arg"
  630.       fi
  631.     done # argument parsing loop
  632.     test -n "$prev" && 
  633.       func_fatal_help "the `$prevarg' option requires an argument"
  634.     if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then
  635.       eval arg="$export_dynamic_flag_spec"
  636.       func_append compile_command " $arg"
  637.       func_append finalize_command " $arg"
  638.     fi
  639.     oldlibs=
  640.     # calculate the name of the file, without its directory
  641.     func_basename "$output"
  642.     outputname="$func_basename_result"
  643.     libobjs_save="$libobjs"
  644.     if test -n "$shlibpath_var"; then
  645.       # get the directories listed in $shlibpath_var
  646.       eval shlib_search_path=`$ECHO "X${$shlibpath_var}" | $Xsed -e 's/:/ /g'`
  647.     else
  648.       shlib_search_path=
  649.     fi
  650.     eval sys_lib_search_path="$sys_lib_search_path_spec"
  651.     eval sys_lib_dlsearch_path="$sys_lib_dlsearch_path_spec"
  652.     func_dirname "$output" "/" ""
  653.     output_objdir="$func_dirname_result$objdir"
  654.     # Create the object directory.
  655.     func_mkdir_p "$output_objdir"
  656.     # Determine the type of output
  657.     case $output in
  658.     "")
  659.       func_fatal_help "you must specify an output file"
  660.       ;;
  661.     *.$libext) linkmode=oldlib ;;
  662.     *.lo | *.$objext) linkmode=obj ;;
  663.     *.la) linkmode=lib ;;
  664.     *) linkmode=prog ;; # Anything else should be a program.
  665.     esac
  666.     specialdeplibs=
  667.     libs=
  668.     # Find all interdependent deplibs by searching for libraries
  669.     # that are linked more than once (e.g. -la -lb -la)
  670.     for deplib in $deplibs; do
  671.       if $opt_duplicate_deps ; then
  672. case "$libs " in
  673. *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
  674. esac
  675.       fi
  676.       libs="$libs $deplib"
  677.     done
  678.     if test "$linkmode" = lib; then
  679.       libs="$predeps $libs $compiler_lib_search_path $postdeps"
  680.       # Compute libraries that are listed more than once in $predeps
  681.       # $postdeps and mark them as special (i.e., whose duplicates are
  682.       # not to be eliminated).
  683.       pre_post_deps=
  684.       if $opt_duplicate_compiler_generated_deps; then
  685. for pre_post_dep in $predeps $postdeps; do
  686.   case "$pre_post_deps " in
  687.   *" $pre_post_dep "*) specialdeplibs="$specialdeplibs $pre_post_deps" ;;
  688.   esac
  689.   pre_post_deps="$pre_post_deps $pre_post_dep"
  690. done
  691.       fi
  692.       pre_post_deps=
  693.     fi
  694.     deplibs=
  695.     newdependency_libs=
  696.     newlib_search_path=
  697.     need_relink=no # whether we're linking any uninstalled libtool libraries
  698.     notinst_deplibs= # not-installed libtool libraries
  699.     notinst_path= # paths that contain not-installed libtool libraries
  700.     case $linkmode in
  701.     lib)
  702. passes="conv dlpreopen link"
  703. for file in $dlfiles $dlprefiles; do
  704.   case $file in
  705.   *.la) ;;
  706.   *)
  707.     func_fatal_help "libraries can `-dlopen' only libtool libraries: $file"
  708.     ;;
  709.   esac
  710. done
  711. ;;
  712.     prog)
  713. compile_deplibs=
  714. finalize_deplibs=
  715. alldeplibs=no
  716. newdlfiles=
  717. newdlprefiles=
  718. passes="conv scan dlopen dlpreopen link"
  719. ;;
  720.     *)  passes="conv"
  721. ;;
  722.     esac
  723.     for pass in $passes; do
  724.       # The preopen pass in lib mode reverses $deplibs; put it back here
  725.       # so that -L comes before libs that need it for instance...
  726.       if test "$linkmode,$pass" = "lib,link"; then
  727. ## FIXME: Find the place where the list is rebuilt in the wrong
  728. ##        order, and fix it there properly
  729.         tmp_deplibs=
  730. for deplib in $deplibs; do
  731.   tmp_deplibs="$deplib $tmp_deplibs"
  732. done
  733. deplibs="$tmp_deplibs"
  734.       fi
  735.       if test "$linkmode,$pass" = "lib,link" ||
  736.  test "$linkmode,$pass" = "prog,scan"; then
  737. libs="$deplibs"
  738. deplibs=
  739.       fi
  740.       if test "$linkmode" = prog; then
  741. case $pass in
  742. dlopen) libs="$dlfiles" ;;
  743. dlpreopen) libs="$dlprefiles" ;;
  744. link)
  745.   libs="$deplibs %DEPLIBS%"
  746.   test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs"
  747.   ;;
  748. esac
  749.       fi
  750.       if test "$linkmode,$pass" = "lib,dlpreopen"; then
  751. # Collect and forward deplibs of preopened libtool libs
  752. for lib in $dlprefiles; do
  753.   # Ignore non-libtool-libs
  754.   dependency_libs=
  755.   case $lib in
  756.   *.la) func_source "$lib" ;;
  757.   esac
  758.   # Collect preopened libtool deplibs, except any this library
  759.   # has declared as weak libs
  760.   for deplib in $dependency_libs; do
  761.             deplib_base=`$ECHO "X$deplib" | $Xsed -e "$basename"`
  762.     case " $weak_libs " in
  763.     *" $deplib_base "*) ;;
  764.     *) deplibs="$deplibs $deplib" ;;
  765.     esac
  766.   done
  767. done
  768. libs="$dlprefiles"
  769.       fi
  770.       if test "$pass" = dlopen; then
  771. # Collect dlpreopened libraries
  772. save_deplibs="$deplibs"
  773. deplibs=
  774.       fi
  775.       for deplib in $libs; do
  776. lib=
  777. found=no
  778. case $deplib in
  779. -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads)
  780.   if test "$linkmode,$pass" = "prog,link"; then
  781.     compile_deplibs="$deplib $compile_deplibs"
  782.     finalize_deplibs="$deplib $finalize_deplibs"
  783.   else
  784.     compiler_flags="$compiler_flags $deplib"
  785.     if test "$linkmode" = lib ; then
  786. case "$new_inherited_linker_flags " in
  787.     *" $deplib "*) ;;
  788.     * ) new_inherited_linker_flags="$new_inherited_linker_flags $deplib" ;;
  789. esac
  790.     fi
  791.   fi
  792.   continue
  793.   ;;
  794. -l*)
  795.   if test "$linkmode" != lib && test "$linkmode" != prog; then
  796.     func_warning "`-l' is ignored for archives/objects"
  797.     continue
  798.   fi
  799.   func_stripname '-l' '' "$deplib"
  800.   name=$func_stripname_result
  801.   if test "$linkmode" = lib; then
  802.     searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path"
  803.   else
  804.     searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path"
  805.   fi
  806.   for searchdir in $searchdirs; do
  807.     for search_ext in .la $std_shrext .so .a; do
  808.       # Search the libtool library
  809.       lib="$searchdir/lib${name}${search_ext}"
  810.       if test -f "$lib"; then
  811. if test "$search_ext" = ".la"; then
  812.   found=yes
  813. else
  814.   found=no
  815. fi
  816. break 2
  817.       fi
  818.     done
  819.   done
  820.   if test "$found" != yes; then
  821.     # deplib doesn't seem to be a libtool library
  822.     if test "$linkmode,$pass" = "prog,link"; then
  823.       compile_deplibs="$deplib $compile_deplibs"
  824.       finalize_deplibs="$deplib $finalize_deplibs"
  825.     else
  826.       deplibs="$deplib $deplibs"
  827.       test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
  828.     fi
  829.     continue
  830.   else # deplib is a libtool library
  831.     # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib,
  832.     # We need to do some special things here, and not later.
  833.     if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
  834.       case " $predeps $postdeps " in
  835.       *" $deplib "*)
  836. if func_lalib_p "$lib"; then
  837.   library_names=
  838.   old_library=
  839.   func_source "$lib"
  840.   for l in $old_library $library_names; do
  841.     ll="$l"
  842.   done
  843.   if test "X$ll" = "X$old_library" ; then # only static version available
  844.     found=no
  845.     func_dirname "$lib" "" "."
  846.     ladir="$func_dirname_result"
  847.     lib=$ladir/$old_library
  848.     if test "$linkmode,$pass" = "prog,link"; then
  849.       compile_deplibs="$deplib $compile_deplibs"
  850.       finalize_deplibs="$deplib $finalize_deplibs"
  851.     else
  852.       deplibs="$deplib $deplibs"
  853.       test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
  854.     fi
  855.     continue
  856.   fi
  857. fi
  858. ;;
  859.       *) ;;
  860.       esac
  861.     fi
  862.   fi
  863.   ;; # -l
  864. *.ltframework)
  865.   if test "$linkmode,$pass" = "prog,link"; then
  866.     compile_deplibs="$deplib $compile_deplibs"
  867.     finalize_deplibs="$deplib $finalize_deplibs"
  868.   else
  869.     deplibs="$deplib $deplibs"
  870.     if test "$linkmode" = lib ; then
  871. case "$new_inherited_linker_flags " in
  872.     *" $deplib "*) ;;
  873.     * ) new_inherited_linker_flags="$new_inherited_linker_flags $deplib" ;;
  874. esac
  875.     fi
  876.   fi
  877.   continue
  878.   ;;
  879. -L*)
  880.   case $linkmode in
  881.   lib)
  882.     deplibs="$deplib $deplibs"
  883.     test "$pass" = conv && continue
  884.     newdependency_libs="$deplib $newdependency_libs"
  885.     func_stripname '-L' '' "$deplib"
  886.     newlib_search_path="$newlib_search_path $func_stripname_result"
  887.     ;;
  888.   prog)
  889.     if test "$pass" = conv; then
  890.       deplibs="$deplib $deplibs"
  891.       continue
  892.     fi
  893.     if test "$pass" = scan; then
  894.       deplibs="$deplib $deplibs"
  895.     else
  896.       compile_deplibs="$deplib $compile_deplibs"
  897.       finalize_deplibs="$deplib $finalize_deplibs"
  898.     fi
  899.     func_stripname '-L' '' "$deplib"
  900.     newlib_search_path="$newlib_search_path $func_stripname_result"
  901.     ;;
  902.   *)
  903.     func_warning "`-L' is ignored for archives/objects"
  904.     ;;
  905.   esac # linkmode
  906.   continue
  907.   ;; # -L
  908. -R*)
  909.   if test "$pass" = link; then
  910.     func_stripname '-R' '' "$deplib"
  911.     dir=$func_stripname_result
  912.     # Make sure the xrpath contains only unique directories.
  913.     case "$xrpath " in
  914.     *" $dir "*) ;;
  915.     *) xrpath="$xrpath $dir" ;;
  916.     esac
  917.   fi
  918.   deplibs="$deplib $deplibs"
  919.   continue
  920.   ;;
  921. *.la) lib="$deplib" ;;
  922. *.$libext)
  923.   if test "$pass" = conv; then
  924.     deplibs="$deplib $deplibs"
  925.     continue
  926.   fi
  927.   case $linkmode in
  928.   lib)
  929.     # Linking convenience modules into shared libraries is allowed,
  930.     # but linking other static libraries is non-portable.
  931.     case " $dlpreconveniencelibs " in
  932.     *" $deplib "*) ;;
  933.     *)
  934.       valid_a_lib=no
  935.       case $deplibs_check_method in
  936. match_pattern*)
  937.   set dummy $deplibs_check_method; shift
  938.   match_pattern_regex=`expr "$deplibs_check_method" : "$1 (.*)"`
  939.   if eval "$ECHO "X$deplib"" 2>/dev/null | $Xsed -e 10q 
  940.     | $EGREP "$match_pattern_regex" > /dev/null; then
  941.     valid_a_lib=yes
  942.   fi
  943. ;;
  944. pass_all)
  945.   valid_a_lib=yes
  946. ;;
  947.       esac
  948.       if test "$valid_a_lib" != yes; then
  949. $ECHO
  950. $ECHO "*** Warning: Trying to link with static lib archive $deplib."
  951. $ECHO "*** I have the capability to make that library automatically link in when"
  952. $ECHO "*** you link to this library.  But I can only do this if you have a"
  953. $ECHO "*** shared version of the library, which you do not appear to have"
  954. $ECHO "*** because the file extensions .$libext of this argument makes me believe"
  955. $ECHO "*** that it is just a static archive that I should not use here."
  956.       else
  957. $ECHO
  958. $ECHO "*** Warning: Linking the shared library $output against the"
  959. $ECHO "*** static library $deplib is not portable!"
  960. deplibs="$deplib $deplibs"
  961.       fi
  962.       ;;
  963.     esac
  964.     continue
  965.     ;;
  966.   prog)
  967.     if test "$pass" != link; then
  968.       deplibs="$deplib $deplibs"
  969.     else
  970.       compile_deplibs="$deplib $compile_deplibs"
  971.       finalize_deplibs="$deplib $finalize_deplibs"
  972.     fi
  973.     continue
  974.     ;;
  975.   esac # linkmode
  976.   ;; # *.$libext
  977. *.lo | *.$objext)
  978.   if test "$pass" = conv; then
  979.     deplibs="$deplib $deplibs"
  980.   elif test "$linkmode" = prog; then
  981.     if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then
  982.       # If there is no dlopen support or we're linking statically,
  983.       # we need to preload.
  984.       newdlprefiles="$newdlprefiles $deplib"
  985.       compile_deplibs="$deplib $compile_deplibs"
  986.       finalize_deplibs="$deplib $finalize_deplibs"
  987.     else
  988.       newdlfiles="$newdlfiles $deplib"
  989.     fi
  990.   fi
  991.   continue
  992.   ;;
  993. %DEPLIBS%)
  994.   alldeplibs=yes
  995.   continue
  996.   ;;
  997. esac # case $deplib
  998. if test "$found" = yes || test -f "$lib"; then :
  999. else
  1000.   func_fatal_error "cannot find the library `$lib' or unhandled argument `$deplib'"
  1001. fi
  1002. # Check to see that this really is a libtool archive.
  1003. func_lalib_unsafe_p "$lib" 
  1004.   || func_fatal_error "`$lib' is not a valid libtool archive"
  1005. func_dirname "$lib" "" "."
  1006. ladir="$func_dirname_result"
  1007. dlname=
  1008. dlopen=
  1009. dlpreopen=
  1010. libdir=
  1011. library_names=
  1012. old_library=
  1013. inherited_linker_flags=
  1014. # If the library was installed with an old release of libtool,
  1015. # it will not redefine variables installed, or shouldnotlink
  1016. installed=yes
  1017. shouldnotlink=no
  1018. avoidtemprpath=
  1019. # Read the .la file
  1020. func_source "$lib"
  1021. # Convert "-framework foo" to "foo.ltframework"
  1022. if test -n "$inherited_linker_flags"; then
  1023.   tmp_inherited_linker_flags=`$ECHO "X$inherited_linker_flags" | $Xsed -e 's/-framework ([^ $]*)/1.ltframework/g'`
  1024.   for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do
  1025.     case " $new_inherited_linker_flags " in
  1026.       *" $tmp_inherited_linker_flag "*) ;;
  1027.       *) new_inherited_linker_flags="$new_inherited_linker_flags $tmp_inherited_linker_flag";;
  1028.     esac
  1029.   done
  1030. fi
  1031. dependency_libs=`$ECHO "X $dependency_libs" | $Xsed -e 's% ([^ $]*).ltframework% -framework 1%g'`
  1032. if test "$linkmode,$pass" = "lib,link" ||
  1033.    test "$linkmode,$pass" = "prog,scan" ||
  1034.    { test "$linkmode" != prog && test "$linkmode" != lib; }; then
  1035.   test -n "$dlopen" && dlfiles="$dlfiles $dlopen"
  1036.   test -n "$dlpreopen" && dlprefiles="$dlprefiles $dlpreopen"
  1037. fi
  1038. if test "$pass" = conv; then
  1039.   # Only check for convenience libraries
  1040.   deplibs="$lib $deplibs"
  1041.   if test -z "$libdir"; then
  1042.     if test -z "$old_library"; then
  1043.       func_fatal_error "cannot find name of link library for `$lib'"
  1044.     fi
  1045.     # It is a libtool convenience library, so add in its objects.
  1046.     convenience="$convenience $ladir/$objdir/$old_library"
  1047.     old_convenience="$old_convenience $ladir/$objdir/$old_library"
  1048.     tmp_libs=
  1049.     for deplib in $dependency_libs; do
  1050.       deplibs="$deplib $deplibs"
  1051.       if $opt_duplicate_deps ; then
  1052. case "$tmp_libs " in
  1053. *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
  1054. esac
  1055.       fi
  1056.       tmp_libs="$tmp_libs $deplib"
  1057.     done
  1058.   elif test "$linkmode" != prog && test "$linkmode" != lib; then
  1059.     func_fatal_error "`$lib' is not a convenience library"
  1060.   fi
  1061.   continue
  1062. fi # $pass = conv
  1063. # Get the name of the library we link against.
  1064. linklib=
  1065. for l in $old_library $library_names; do
  1066.   linklib="$l"
  1067. done
  1068. if test -z "$linklib"; then
  1069.   func_fatal_error "cannot find name of link library for `$lib'"
  1070. fi
  1071. # This library was specified with -dlopen.
  1072. if test "$pass" = dlopen; then
  1073.   if test -z "$libdir"; then
  1074.     func_fatal_error "cannot -dlopen a convenience library: `$lib'"
  1075.   fi
  1076.   if test -z "$dlname" ||
  1077.      test "$dlopen_support" != yes ||
  1078.      test "$build_libtool_libs" = no; then
  1079.     # If there is no dlname, no dlopen support or we're linking
  1080.     # statically, we need to preload.  We also need to preload any
  1081.     # dependent libraries so libltdl's deplib preloader doesn't
  1082.     # bomb out in the load deplibs phase.
  1083.     dlprefiles="$dlprefiles $lib $dependency_libs"
  1084.   else
  1085.     newdlfiles="$newdlfiles $lib"
  1086.   fi
  1087.   continue
  1088. fi # $pass = dlopen
  1089. # We need an absolute path.
  1090. case $ladir in
  1091. [\/]* | [A-Za-z]:[\/]*) abs_ladir="$ladir" ;;
  1092. *)
  1093.   abs_ladir=`cd "$ladir" && pwd`
  1094.   if test -z "$abs_ladir"; then
  1095.     func_warning "cannot determine absolute directory name of `$ladir'"
  1096.     func_warning "passing it literally to the linker, although it might fail"
  1097.     abs_ladir="$ladir"
  1098.   fi
  1099.   ;;
  1100. esac
  1101. func_basename "$lib"
  1102. laname="$func_basename_result"
  1103. # Find the relevant object directory and library name.
  1104. if test "X$installed" = Xyes; then
  1105.   if test ! -f "$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then
  1106.     func_warning "library `$lib' was moved."
  1107.     dir="$ladir"
  1108.     absdir="$abs_ladir"
  1109.     libdir="$abs_ladir"
  1110.   else
  1111.     dir="$libdir"
  1112.     absdir="$libdir"
  1113.   fi
  1114.   test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes
  1115. else
  1116.   if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then
  1117.     dir="$ladir"
  1118.     absdir="$abs_ladir"
  1119.     # Remove this search path later
  1120.     notinst_path="$notinst_path $abs_ladir"
  1121.   else
  1122.     dir="$ladir/$objdir"
  1123.     absdir="$abs_ladir/$objdir"
  1124.     # Remove this search path later
  1125.     notinst_path="$notinst_path $abs_ladir"
  1126.   fi
  1127. fi # $installed = yes
  1128. func_stripname 'lib' '.la' "$laname"
  1129. name=$func_stripname_result
  1130. # This library was specified with -dlpreopen.
  1131. if test "$pass" = dlpreopen; then
  1132.   if test -z "$libdir" && test "$linkmode" = prog; then
  1133.     func_fatal_error "only libraries may -dlpreopen a convenience library: `$lib'"
  1134.   fi
  1135.   # Prefer using a static library (so that no silly _DYNAMIC symbols
  1136.   # are required to link).
  1137.   if test -n "$old_library"; then
  1138.     newdlprefiles="$newdlprefiles $dir/$old_library"
  1139.     # Keep a list of preopened convenience libraries to check
  1140.     # that they are being used correctly in the link pass.
  1141.     test -z "$libdir" && 
  1142. dlpreconveniencelibs="$dlpreconveniencelibs $dir/$old_library"
  1143.   # Otherwise, use the dlname, so that lt_dlopen finds it.
  1144.   elif test -n "$dlname"; then
  1145.     newdlprefiles="$newdlprefiles $dir/$dlname"
  1146.   else
  1147.     newdlprefiles="$newdlprefiles $dir/$linklib"
  1148.   fi
  1149. fi # $pass = dlpreopen
  1150. if test -z "$libdir"; then
  1151.   # Link the convenience library
  1152.   if test "$linkmode" = lib; then
  1153.     deplibs="$dir/$old_library $deplibs"
  1154.   elif test "$linkmode,$pass" = "prog,link"; then
  1155.     compile_deplibs="$dir/$old_library $compile_deplibs"
  1156.     finalize_deplibs="$dir/$old_library $finalize_deplibs"
  1157.   else
  1158.     deplibs="$lib $deplibs" # used for prog,scan pass
  1159.   fi
  1160.   continue
  1161. fi
  1162. if test "$linkmode" = prog && test "$pass" != link; then
  1163.   newlib_search_path="$newlib_search_path $ladir"
  1164.   deplibs="$lib $deplibs"
  1165.   linkalldeplibs=no
  1166.   if test "$link_all_deplibs" != no || test -z "$library_names" ||
  1167.      test "$build_libtool_libs" = no; then
  1168.     linkalldeplibs=yes
  1169.   fi
  1170.   tmp_libs=
  1171.   for deplib in $dependency_libs; do
  1172.     case $deplib in
  1173.     -L*) func_stripname '-L' '' "$deplib"
  1174.          newlib_search_path="$newlib_search_path $func_stripname_result"
  1175.  ;;
  1176.     esac
  1177.     # Need to link against all dependency_libs?
  1178.     if test "$linkalldeplibs" = yes; then
  1179.       deplibs="$deplib $deplibs"
  1180.     else
  1181.       # Need to hardcode shared library paths
  1182.       # or/and link against static libraries
  1183.       newdependency_libs="$deplib $newdependency_libs"
  1184.     fi
  1185.     if $opt_duplicate_deps ; then
  1186.       case "$tmp_libs " in
  1187.       *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
  1188.       esac
  1189.     fi
  1190.     tmp_libs="$tmp_libs $deplib"
  1191.   done # for deplib
  1192.   continue
  1193. fi # $linkmode = prog...
  1194. if test "$linkmode,$pass" = "prog,link"; then
  1195.   if test -n "$library_names" &&
  1196.      { { test "$prefer_static_libs" = no ||
  1197.          test "$prefer_static_libs,$installed" = "built,yes"; } ||
  1198.        test -z "$old_library"; }; then
  1199.     # We need to hardcode the library path
  1200.     if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then
  1201.       # Make sure the rpath contains only unique directories.
  1202.       case "$temp_rpath:" in
  1203.       *"$absdir:"*) ;;
  1204.       *) temp_rpath="$temp_rpath$absdir:" ;;
  1205.       esac
  1206.     fi
  1207.     # Hardcode the library path.
  1208.     # Skip directories that are in the system default run-time
  1209.     # search path.
  1210.     case " $sys_lib_dlsearch_path " in
  1211.     *" $absdir "*) ;;
  1212.     *)
  1213.       case "$compile_rpath " in
  1214.       *" $absdir "*) ;;
  1215.       *) compile_rpath="$compile_rpath $absdir"
  1216.       esac
  1217.       ;;
  1218.     esac
  1219.     case " $sys_lib_dlsearch_path " in
  1220.     *" $libdir "*) ;;
  1221.     *)
  1222.       case "$finalize_rpath " in
  1223.       *" $libdir "*) ;;
  1224.       *) finalize_rpath="$finalize_rpath $libdir"
  1225.       esac
  1226.       ;;
  1227.     esac
  1228.   fi # $linkmode,$pass = prog,link...
  1229.   if test "$alldeplibs" = yes &&
  1230.      { test "$deplibs_check_method" = pass_all ||
  1231.        { test "$build_libtool_libs" = yes &&
  1232.  test -n "$library_names"; }; }; then
  1233.     # We only need to search for static libraries
  1234.     continue
  1235.   fi
  1236. fi
  1237. link_static=no # Whether the deplib will be linked statically
  1238. use_static_libs=$prefer_static_libs
  1239. if test "$use_static_libs" = built && test "$installed" = yes; then
  1240.   use_static_libs=no
  1241. fi
  1242. if test -n "$library_names" &&
  1243.    { test "$use_static_libs" = no || test -z "$old_library"; }; then
  1244.   case $host in
  1245.   *cygwin* | *mingw* | *cegcc*)
  1246.       # No point in relinking DLLs because paths are not encoded
  1247.       notinst_deplibs="$notinst_deplibs $lib"
  1248.       need_relink=no
  1249.     ;;
  1250.   *)
  1251.     if test "$installed" = no; then
  1252.       notinst_deplibs="$notinst_deplibs $lib"
  1253.       need_relink=yes
  1254.     fi
  1255.     ;;
  1256.   esac
  1257.   # This is a shared library
  1258.   # Warn about portability, can't link against -module's on some
  1259.   # systems (darwin).  Don't bleat about dlopened modules though!
  1260.   dlopenmodule=""
  1261.   for dlpremoduletest in $dlprefiles; do
  1262.     if test "X$dlpremoduletest" = "X$lib"; then
  1263.       dlopenmodule="$dlpremoduletest"
  1264.       break
  1265.     fi
  1266.   done
  1267.   if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then
  1268.     $ECHO
  1269.     if test "$linkmode" = prog; then
  1270.       $ECHO "*** Warning: Linking the executable $output against the loadable module"
  1271.     else
  1272.       $ECHO "*** Warning: Linking the shared library $output against the loadable module"
  1273.     fi
  1274.     $ECHO "*** $linklib is not portable!"
  1275.   fi
  1276.   if test "$linkmode" = lib &&
  1277.      test "$hardcode_into_libs" = yes; then
  1278.     # Hardcode the library path.
  1279.     # Skip directories that are in the system default run-time
  1280.     # search path.
  1281.     case " $sys_lib_dlsearch_path " in
  1282.     *" $absdir "*) ;;
  1283.     *)
  1284.       case "$compile_rpath " in
  1285.       *" $absdir "*) ;;
  1286.       *) compile_rpath="$compile_rpath $absdir"
  1287.       esac
  1288.       ;;
  1289.     esac
  1290.     case " $sys_lib_dlsearch_path " in
  1291.     *" $libdir "*) ;;
  1292.     *)
  1293.       case "$finalize_rpath " in
  1294.       *" $libdir "*) ;;
  1295.       *) finalize_rpath="$finalize_rpath $libdir"
  1296.       esac
  1297.       ;;
  1298.     esac
  1299.   fi
  1300.   if test -n "$old_archive_from_expsyms_cmds"; then
  1301.     # figure out the soname
  1302.     set dummy $library_names
  1303.     shift
  1304.     realname="$1"
  1305.     shift
  1306.     libname=`eval "\$ECHO "$libname_spec""`
  1307.     # use dlname if we got it. it's perfectly good, no?
  1308.     if test -n "$dlname"; then
  1309.       soname="$dlname"
  1310.     elif test -n "$soname_spec"; then
  1311.       # bleh windows
  1312.       case $host in
  1313.       *cygwin* | mingw* | *cegcc*)
  1314.         func_arith $current - $age
  1315. major=$func_arith_result
  1316. versuffix="-$major"
  1317. ;;
  1318.       esac
  1319.       eval soname="$soname_spec"
  1320.     else
  1321.       soname="$realname"
  1322.     fi
  1323.     # Make a new name for the extract_expsyms_cmds to use
  1324.     soroot="$soname"
  1325.     func_basename "$soroot"
  1326.     soname="$func_basename_result"
  1327.     func_stripname 'lib' '.dll' "$soname"
  1328.     newlib=libimp-$func_stripname_result.a
  1329.     # If the library has no export list, then create one now
  1330.     if test -f "$output_objdir/$soname-def"; then :
  1331.     else
  1332.       func_verbose "extracting exported symbol list from `$soname'"
  1333.       func_execute_cmds "$extract_expsyms_cmds" 'exit $?'
  1334.     fi
  1335.     # Create $newlib
  1336.     if test -f "$output_objdir/$newlib"; then :; else
  1337.       func_verbose "generating import library for `$soname'"
  1338.       func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?'
  1339.     fi
  1340.     # make sure the library variables are pointing to the new library
  1341.     dir=$output_objdir
  1342.     linklib=$newlib
  1343.   fi # test -n "$old_archive_from_expsyms_cmds"
  1344.   if test "$linkmode" = prog || test "$mode" != relink; then
  1345.     add_shlibpath=
  1346.     add_dir=
  1347.     add=
  1348.     lib_linked=yes
  1349.     case $hardcode_action in
  1350.     immediate | unsupported)
  1351.       if test "$hardcode_direct" = no; then
  1352. add="$dir/$linklib"
  1353. case $host in
  1354.   *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;;
  1355.   *-*-sysv4*uw2*) add_dir="-L$dir" ;;
  1356.   *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | 
  1357.     *-*-unixware7*) add_dir="-L$dir" ;;
  1358.   *-*-darwin* )
  1359.     # if the lib is a (non-dlopened) module then we can not
  1360.     # link against it, someone is ignoring the earlier warnings
  1361.     if /usr/bin/file -L $add 2> /dev/null |
  1362.  $GREP ": [^:]* bundle" >/dev/null ; then
  1363.       if test "X$dlopenmodule" != "X$lib"; then
  1364. $ECHO "*** Warning: lib $linklib is a module, not a shared library"
  1365. if test -z "$old_library" ; then
  1366.   $ECHO
  1367.   $ECHO "*** And there doesn't seem to be a static archive available"
  1368.   $ECHO "*** The link will probably fail, sorry"
  1369. else
  1370.   add="$dir/$old_library"
  1371. fi
  1372.       elif test -n "$old_library"; then
  1373. add="$dir/$old_library"
  1374.       fi
  1375.     fi
  1376. esac
  1377.       elif test "$hardcode_minus_L" = no; then
  1378. case $host in
  1379. *-*-sunos*) add_shlibpath="$dir" ;;
  1380. esac
  1381. add_dir="-L$dir"
  1382. add="-l$name"
  1383.       elif test "$hardcode_shlibpath_var" = no; then
  1384. add_shlibpath="$dir"
  1385. add="-l$name"
  1386.       else
  1387. lib_linked=no
  1388.       fi
  1389.       ;;
  1390.     relink)
  1391.       if test "$hardcode_direct" = yes &&
  1392.          test "$hardcode_direct_absolute" = no; then
  1393. add="$dir/$linklib"
  1394.       elif test "$hardcode_minus_L" = yes; then
  1395. add_dir="-L$dir"
  1396. # Try looking first in the location we're being installed to.
  1397. if test -n "$inst_prefix_dir"; then
  1398.   case $libdir in
  1399.     [\/]*)
  1400.       add_dir="$add_dir -L$inst_prefix_dir$libdir"
  1401.       ;;
  1402.   esac
  1403. fi
  1404. add="-l$name"
  1405.       elif test "$hardcode_shlibpath_var" = yes; then
  1406. add_shlibpath="$dir"
  1407. add="-l$name"
  1408.       else
  1409. lib_linked=no
  1410.       fi
  1411.       ;;
  1412.     *) lib_linked=no ;;
  1413.     esac
  1414.     if test "$lib_linked" != yes; then
  1415.       func_fatal_configuration "unsupported hardcode properties"
  1416.     fi
  1417.     if test -n "$add_shlibpath"; then
  1418.       case :$compile_shlibpath: in
  1419.       *":$add_shlibpath:"*) ;;
  1420.       *) compile_shlibpath="$compile_shlibpath$add_shlibpath:" ;;
  1421.       esac
  1422.     fi
  1423.     if test "$linkmode" = prog; then
  1424.       test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs"
  1425.       test -n "$add" && compile_deplibs="$add $compile_deplibs"
  1426.     else
  1427.       test -n "$add_dir" && deplibs="$add_dir $deplibs"
  1428.       test -n "$add" && deplibs="$add $deplibs"
  1429.       if test "$hardcode_direct" != yes &&
  1430.  test "$hardcode_minus_L" != yes &&
  1431.  test "$hardcode_shlibpath_var" = yes; then
  1432. case :$finalize_shlibpath: in
  1433. *":$libdir:"*) ;;
  1434. *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;
  1435. esac
  1436.       fi
  1437.     fi
  1438.   fi
  1439.   if test "$linkmode" = prog || test "$mode" = relink; then
  1440.     add_shlibpath=
  1441.     add_dir=
  1442.     add=
  1443.     # Finalize command for both is simple: just hardcode it.
  1444.     if test "$hardcode_direct" = yes &&
  1445.        test "$hardcode_direct_absolute" = no; then
  1446.       add="$libdir/$linklib"
  1447.     elif test "$hardcode_minus_L" = yes; then
  1448.       add_dir="-L$libdir"
  1449.       add="-l$name"
  1450.     elif test "$hardcode_shlibpath_var" = yes; then
  1451.       case :$finalize_shlibpath: in
  1452.       *":$libdir:"*) ;;
  1453.       *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;
  1454.       esac
  1455.       add="-l$name"
  1456.     elif test "$hardcode_automatic" = yes; then
  1457.       if test -n "$inst_prefix_dir" &&
  1458.  test -f "$inst_prefix_dir$libdir/$linklib" ; then
  1459. add="$inst_prefix_dir$libdir/$linklib"
  1460.       else
  1461. add="$libdir/$linklib"
  1462.       fi
  1463.     else
  1464.       # We cannot seem to hardcode it, guess we'll fake it.
  1465.       add_dir="-L$libdir"
  1466.       # Try looking first in the location we're being installed to.
  1467.       if test -n "$inst_prefix_dir"; then
  1468. case $libdir in
  1469.   [\/]*)
  1470.     add_dir="$add_dir -L$inst_prefix_dir$libdir"
  1471.     ;;
  1472. esac
  1473.       fi
  1474.       add="-l$name"
  1475.     fi
  1476.     if test "$linkmode" = prog; then
  1477.       test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs"
  1478.       test -n "$add" && finalize_deplibs="$add $finalize_deplibs"
  1479.     else
  1480.       test -n "$add_dir" && deplibs="$add_dir $deplibs"
  1481.       test -n "$add" && deplibs="$add $deplibs"
  1482.     fi
  1483.   fi
  1484. elif test "$linkmode" = prog; then
  1485.   # Here we assume that one of hardcode_direct or hardcode_minus_L
  1486.   # is not unsupported.  This is valid on all known static and
  1487.   # shared platforms.
  1488.   if test "$hardcode_direct" != unsupported; then
  1489.     test -n "$old_library" && linklib="$old_library"
  1490.     compile_deplibs="$dir/$linklib $compile_deplibs"
  1491.     finalize_deplibs="$dir/$linklib $finalize_deplibs"
  1492.   else
  1493.     compile_deplibs="-l$name -L$dir $compile_deplibs"
  1494.     finalize_deplibs="-l$name -L$dir $finalize_deplibs"
  1495.   fi
  1496. elif test "$build_libtool_libs" = yes; then
  1497.   # Not a shared library
  1498.   if test "$deplibs_check_method" != pass_all; then
  1499.     # We're trying link a shared library against a static one
  1500.     # but the system doesn't support it.
  1501.     # Just print a warning and add the library to dependency_libs so
  1502.     # that the program can be linked against the static library.
  1503.     $ECHO
  1504.     $ECHO "*** Warning: This system can not link to static lib archive $lib."
  1505.     $ECHO "*** I have the capability to make that library automatically link in when"
  1506.     $ECHO "*** you link to this library.  But I can only do this if you have a"
  1507.     $ECHO "*** shared version of the library, which you do not appear to have."
  1508.     if test "$module" = yes; then
  1509.       $ECHO "*** But as you try to build a module library, libtool will still create "
  1510.       $ECHO "*** a static module, that should work as long as the dlopening application"
  1511.       $ECHO "*** is linked with the -dlopen flag to resolve symbols at runtime."
  1512.       if test -z "$global_symbol_pipe"; then
  1513. $ECHO
  1514. $ECHO "*** However, this would only work if libtool was able to extract symbol"
  1515. $ECHO "*** lists from a program, using `nm' or equivalent, but libtool could"
  1516. $ECHO "*** not find such a program.  So, this module is probably useless."
  1517. $ECHO "*** `nm' from GNU binutils and a full rebuild may help."
  1518.       fi
  1519.       if test "$build_old_libs" = no; then
  1520. build_libtool_libs=module
  1521. build_old_libs=yes
  1522.       else
  1523. build_libtool_libs=no
  1524.       fi
  1525.     fi
  1526.   else
  1527.     deplibs="$dir/$old_library $deplibs"
  1528.     link_static=yes
  1529.   fi
  1530. fi # link shared/static library?
  1531. if test "$linkmode" = lib; then
  1532.   if test -n "$dependency_libs" &&
  1533.      { test "$hardcode_into_libs" != yes ||
  1534.        test "$build_old_libs" = yes ||
  1535.        test "$link_static" = yes; }; then
  1536.     # Extract -R from dependency_libs
  1537.     temp_deplibs=
  1538.     for libdir in $dependency_libs; do
  1539.       case $libdir in
  1540.       -R*) func_stripname '-R' '' "$libdir"
  1541.            temp_xrpath=$func_stripname_result
  1542.    case " $xrpath " in
  1543.    *" $temp_xrpath "*) ;;
  1544.    *) xrpath="$xrpath $temp_xrpath";;
  1545.    esac;;
  1546.       *) temp_deplibs="$temp_deplibs $libdir";;
  1547.       esac
  1548.     done
  1549.     dependency_libs="$temp_deplibs"
  1550.   fi
  1551.   newlib_search_path="$newlib_search_path $absdir"
  1552.   # Link against this library
  1553.   test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs"
  1554.   # ... and its dependency_libs
  1555.   tmp_libs=
  1556.   for deplib in $dependency_libs; do
  1557.     newdependency_libs="$deplib $newdependency_libs"
  1558.     if $opt_duplicate_deps ; then
  1559.       case "$tmp_libs " in
  1560.       *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
  1561.       esac
  1562.     fi
  1563.     tmp_libs="$tmp_libs $deplib"
  1564.   done
  1565.   if test "$link_all_deplibs" != no; then
  1566.     # Add the search paths of all dependency libraries
  1567.     for deplib in $dependency_libs; do
  1568.       path=
  1569.       case $deplib in
  1570.       -L*) path="$deplib" ;;
  1571.       *.la)
  1572.         func_dirname "$deplib" "" "."
  1573. dir="$func_dirname_result"
  1574. # We need an absolute path.
  1575. case $dir in
  1576. [\/]* | [A-Za-z]:[\/]*) absdir="$dir" ;;
  1577. *)
  1578.   absdir=`cd "$dir" && pwd`
  1579.   if test -z "$absdir"; then
  1580.     func_warning "cannot determine absolute directory name of `$dir'"
  1581.     absdir="$dir"
  1582.   fi
  1583.   ;;
  1584. esac
  1585. if $GREP "^installed=no" $deplib > /dev/null; then
  1586. case $host in
  1587. *-*-darwin*)
  1588.   depdepl=
  1589.   eval deplibrary_names=`${SED} -n -e 's/^library_names=(.*)$/1/p' $deplib`
  1590.   if test -n "$deplibrary_names" ; then
  1591.     for tmp in $deplibrary_names ; do
  1592.       depdepl=$tmp
  1593.     done
  1594.     if test -f "$absdir/$objdir/$depdepl" ; then
  1595.       depdepl="$absdir/$objdir/$depdepl"
  1596.       darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'`
  1597.                       if test -z "$darwin_install_name"; then
  1598.                           darwin_install_name=`${OTOOL64} -L $depdepl  | awk '{if (NR == 2) {print $1;exit}}'`
  1599.                       fi
  1600.       compiler_flags="$compiler_flags ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}"
  1601.       linker_flags="$linker_flags -dylib_file ${darwin_install_name}:${depdepl}"
  1602.       path=
  1603.     fi
  1604.   fi
  1605.   ;;
  1606. *)
  1607.   path="-L$absdir/$objdir"
  1608.   ;;
  1609. esac
  1610. else
  1611.   eval libdir=`${SED} -n -e 's/^libdir=(.*)$/1/p' $deplib`
  1612.   test -z "$libdir" && 
  1613.     func_fatal_error "`$deplib' is not a valid libtool archive"
  1614.   test "$absdir" != "$libdir" && 
  1615.     func_warning "`$deplib' seems to be moved"
  1616.   path="-L$absdir"
  1617. fi
  1618. ;;
  1619.       esac
  1620.       case " $deplibs " in
  1621.       *" $path "*) ;;
  1622.       *) deplibs="$path $deplibs" ;;
  1623.       esac
  1624.     done
  1625.   fi # link_all_deplibs != no
  1626. fi # linkmode = lib
  1627.       done # for deplib in $libs
  1628.       if test "$pass" = link; then
  1629. if test "$linkmode" = "prog"; then
  1630.   compile_deplibs="$new_inherited_linker_flags $compile_deplibs"
  1631.   finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs"
  1632. else
  1633.   compiler_flags="$compiler_flags "`$ECHO "X $new_inherited_linker_flags" | $Xsed -e 's% ([^ $]*).ltframework% -framework 1%g'`
  1634. fi
  1635.       fi
  1636.       dependency_libs="$newdependency_libs"
  1637.       if test "$pass" = dlpreopen; then
  1638. # Link the dlpreopened libraries before other libraries
  1639. for deplib in $save_deplibs; do
  1640.   deplibs="$deplib $deplibs"
  1641. done
  1642.       fi
  1643.       if test "$pass" != dlopen; then
  1644. if test "$pass" != conv; then
  1645.   # Make sure lib_search_path contains only unique directories.
  1646.   lib_search_path=
  1647.   for dir in $newlib_search_path; do
  1648.     case "$lib_search_path " in
  1649.     *" $dir "*) ;;
  1650.     *) lib_search_path="$lib_search_path $dir" ;;
  1651.     esac
  1652.   done
  1653.   newlib_search_path=
  1654. fi
  1655. if test "$linkmode,$pass" != "prog,link"; then
  1656.   vars="deplibs"
  1657. else
  1658.   vars="compile_deplibs finalize_deplibs"
  1659. fi
  1660. for var in $vars dependency_libs; do
  1661.   # Add libraries to $var in reverse order
  1662.   eval tmp_libs="$$var"
  1663.   new_libs=
  1664.   for deplib in $tmp_libs; do
  1665.     # FIXME: Pedantically, this is the right thing to do, so
  1666.     #        that some nasty dependency loop isn't accidentally
  1667.     #        broken:
  1668.     #new_libs="$deplib $new_libs"
  1669.     # Pragmatically, this seems to cause very few problems in
  1670.     # practice:
  1671.     case $deplib in
  1672.     -L*) new_libs="$deplib $new_libs" ;;
  1673.     -R*) ;;
  1674.     *)
  1675.       # And here is the reason: when a library appears more
  1676.       # than once as an explicit dependence of a library, or
  1677.       # is implicitly linked in more than once by the
  1678.       # compiler, it is considered special, and multiple
  1679.       # occurrences thereof are not removed.  Compare this
  1680.       # with having the same library being listed as a
  1681.       # dependency of multiple other libraries: in this case,
  1682.       # we know (pedantically, we assume) the library does not
  1683.       # need to be listed more than once, so we keep only the
  1684.       # last copy.  This is not always right, but it is rare
  1685.       # enough that we require users that really mean to play
  1686.       # such unportable linking tricks to link the library
  1687.       # using -Wl,-lname, so that libtool does not consider it
  1688.       # for duplicate removal.
  1689.       case " $specialdeplibs " in
  1690.       *" $deplib "*) new_libs="$deplib $new_libs" ;;
  1691.       *)
  1692. case " $new_libs " in
  1693. *" $deplib "*) ;;
  1694. *) new_libs="$deplib $new_libs" ;;
  1695. esac
  1696. ;;
  1697.       esac
  1698.       ;;
  1699.     esac
  1700.   done
  1701.   tmp_libs=
  1702.   for deplib in $new_libs; do
  1703.     case $deplib in
  1704.     -L*)
  1705.       case " $tmp_libs " in
  1706.       *" $deplib "*) ;;
  1707.       *) tmp_libs="$tmp_libs $deplib" ;;
  1708.       esac
  1709.       ;;
  1710.     *) tmp_libs="$tmp_libs $deplib" ;;
  1711.     esac
  1712.   done
  1713.   eval $var="$tmp_libs"
  1714. done # for var
  1715.       fi
  1716.       # Last step: remove runtime libs from dependency_libs
  1717.       # (they stay in deplibs)
  1718.       tmp_libs=
  1719.       for i in $dependency_libs ; do
  1720. case " $predeps $postdeps $compiler_lib_search_path " in
  1721. *" $i "*)
  1722.   i=""
  1723.   ;;
  1724. esac
  1725. if test -n "$i" ; then
  1726.   tmp_libs="$tmp_libs $i"
  1727. fi
  1728.       done
  1729.       dependency_libs=$tmp_libs
  1730.     done # for pass
  1731.     if test "$linkmode" = prog; then
  1732.       dlfiles="$newdlfiles"
  1733.     fi
  1734.     if test "$linkmode" = prog || test "$linkmode" = lib; then
  1735.       dlprefiles="$newdlprefiles"
  1736.     fi
  1737.     case $linkmode in
  1738.     oldlib)
  1739.       if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
  1740. func_warning "`-dlopen' is ignored for archives"
  1741.       fi
  1742.       case " $deplibs" in
  1743.       * -l* | * -L*)
  1744. func_warning "`-l' and `-L' are ignored for archives" ;;
  1745.       esac
  1746.       test -n "$rpath" && 
  1747. func_warning "`-rpath' is ignored for archives"
  1748.       test -n "$xrpath" && 
  1749. func_warning "`-R' is ignored for archives"
  1750.       test -n "$vinfo" && 
  1751. func_warning "`-version-info/-version-number' is ignored for archives"
  1752.       test -n "$release" && 
  1753. func_warning "`-release' is ignored for archives"
  1754.       test -n "$export_symbols$export_symbols_regex" && 
  1755. func_warning "`-export-symbols' is ignored for archives"
  1756.       # Now set the variables for building old libraries.
  1757.       build_libtool_libs=no
  1758.       oldlibs="$output"
  1759.       objs="$objs$old_deplibs"
  1760.       ;;
  1761.     lib)
  1762.       # Make sure we only generate libraries of the form `libNAME.la'.
  1763.       case $outputname in
  1764.       lib*)
  1765. func_stripname 'lib' '.la' "$outputname"
  1766. name=$func_stripname_result
  1767. eval shared_ext="$shrext_cmds"
  1768. eval libname="$libname_spec"
  1769. ;;
  1770.       *)
  1771. test "$module" = no && 
  1772.   func_fatal_help "libtool library `$output' must begin with `lib'"
  1773. if test "$need_lib_prefix" != no; then
  1774.   # Add the "lib" prefix for modules if required
  1775.   func_stripname '' '.la' "$outputname"
  1776.   name=$func_stripname_result
  1777.   eval shared_ext="$shrext_cmds"
  1778.   eval libname="$libname_spec"
  1779. else
  1780.   func_stripname '' '.la' "$outputname"
  1781.   libname=$func_stripname_result
  1782. fi
  1783. ;;
  1784.       esac
  1785.       if test -n "$objs"; then
  1786. if test "$deplibs_check_method" != pass_all; then
  1787.   func_fatal_error "cannot build libtool library `$output' from non-libtool objects on this host:$objs"
  1788. else
  1789.   $ECHO
  1790.   $ECHO "*** Warning: Linking the shared library $output against the non-libtool"
  1791.   $ECHO "*** objects $objs is not portable!"
  1792.   libobjs="$libobjs $objs"
  1793. fi
  1794.       fi
  1795.       test "$dlself" != no && 
  1796. func_warning "`-dlopen self' is ignored for libtool libraries"
  1797.       set dummy $rpath
  1798.       shift
  1799.       test "$#" -gt 1 && 
  1800. func_warning "ignoring multiple `-rpath's for a libtool library"
  1801.       install_libdir="$1"
  1802.       oldlibs=
  1803.       if test -z "$rpath"; then
  1804. if test "$build_libtool_libs" = yes; then
  1805.   # Building a libtool convenience library.
  1806.   # Some compilers have problems with a `.al' extension so
  1807.   # convenience libraries should have the same extension an
  1808.   # archive normally would.
  1809.   oldlibs="$output_objdir/$libname.$libext $oldlibs"
  1810.   build_libtool_libs=convenience
  1811.   build_old_libs=yes
  1812. fi
  1813. test -n "$vinfo" && 
  1814.   func_warning "`-version-info/-version-number' is ignored for convenience libraries"
  1815. test -n "$release" && 
  1816.   func_warning "`-release' is ignored for convenience libraries"
  1817.       else
  1818. # Parse the version information argument.
  1819. save_ifs="$IFS"; IFS=':'
  1820. set dummy $vinfo 0 0 0
  1821. shift
  1822. IFS="$save_ifs"
  1823. test -n "$7" && 
  1824.   func_fatal_help "too many parameters to `-version-info'"
  1825. # convert absolute version numbers to libtool ages
  1826. # this retains compatibility with .la files and attempts
  1827. # to make the code below a bit more comprehensible
  1828. case $vinfo_number in
  1829. yes)
  1830.   number_major="$1"
  1831.   number_minor="$2"
  1832.   number_revision="$3"
  1833.   #
  1834.   # There are really only two kinds -- those that
  1835.   # use the current revision as the major version
  1836.   # and those that subtract age and use age as
  1837.   # a minor version.  But, then there is irix
  1838.   # which has an extra 1 added just for fun
  1839.   #
  1840.   case $version_type in
  1841.   darwin|linux|osf|windows|none)
  1842.     func_arith $number_major + $number_minor
  1843.     current=$func_arith_result
  1844.     age="$number_minor"
  1845.     revision="$number_revision"
  1846.     ;;
  1847.   freebsd-aout|freebsd-elf|sunos)
  1848.     current="$number_major"
  1849.     revision="$number_minor"
  1850.     age="0"
  1851.     ;;
  1852.   irix|nonstopux)
  1853.     func_arith $number_major + $number_minor
  1854.     current=$func_arith_result
  1855.     age="$number_minor"
  1856.     revision="$number_minor"
  1857.     lt_irix_increment=no
  1858.     ;;
  1859.   *)
  1860.     func_fatal_configuration "$modename: unknown library version type `$version_type'"
  1861.     ;;
  1862.   esac
  1863.   ;;
  1864. no)
  1865.   current="$1"
  1866.   revision="$2"
  1867.   age="$3"
  1868.   ;;
  1869. esac
  1870. # Check that each of the things are valid numbers.
  1871. case $current in
  1872. 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;
  1873. *)
  1874.   func_error "CURRENT `$current' must be a nonnegative integer"
  1875.   func_fatal_error "`$vinfo' is not valid version information"
  1876.   ;;
  1877. esac
  1878. case $revision in
  1879. 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;
  1880. *)
  1881.   func_error "REVISION `$revision' must be a nonnegative integer"
  1882.   func_fatal_error "`$vinfo' is not valid version information"
  1883.   ;;
  1884. esac
  1885. case $age in
  1886. 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;
  1887. *)
  1888.   func_error "AGE `$age' must be a nonnegative integer"
  1889.   func_fatal_error "`$vinfo' is not valid version information"
  1890.   ;;
  1891. esac
  1892. if test "$age" -gt "$current"; then
  1893.   func_error "AGE `$age' is greater than the current interface number `$current'"
  1894.   func_fatal_error "`$vinfo' is not valid version information"
  1895. fi
  1896. # Calculate the version variables.
  1897. major=
  1898. versuffix=
  1899. verstring=
  1900. case $version_type in
  1901. none) ;;
  1902. darwin)
  1903.   # Like Linux, but with the current version available in
  1904.   # verstring for coding it into the library header
  1905.   func_arith $current - $age
  1906.   major=.$func_arith_result
  1907.   versuffix="$major.$age.$revision"
  1908.   # Darwin ld doesn't like 0 for these options...
  1909.   func_arith $current + 1
  1910.   minor_current=$func_arith_result
  1911.   xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision"
  1912.   verstring="-compatibility_version $minor_current -current_version $minor_current.$revision"
  1913.   ;;
  1914. freebsd-aout)
  1915.   major=".$current"
  1916.   versuffix=".$current.$revision";
  1917.   ;;
  1918. freebsd-elf)
  1919.   major=".$current"
  1920.   versuffix=".$current"
  1921.   ;;
  1922. irix | nonstopux)
  1923.   if test "X$lt_irix_increment" = "Xno"; then
  1924.     func_arith $current - $age
  1925.   else
  1926.     func_arith $current - $age + 1
  1927.   fi
  1928.   major=$func_arith_result
  1929.   case $version_type in
  1930.     nonstopux) verstring_prefix=nonstopux ;;
  1931.     *)         verstring_prefix=sgi ;;
  1932.   esac
  1933.   verstring="$verstring_prefix$major.$revision"
  1934.   # Add in all the interfaces that we are compatible with.
  1935.   loop=$revision
  1936.   while test "$loop" -ne 0; do
  1937.     func_arith $revision - $loop
  1938.     iface=$func_arith_result
  1939.     func_arith $loop - 1
  1940.     loop=$func_arith_result
  1941.     verstring="$verstring_prefix$major.$iface:$verstring"
  1942.   done
  1943.   # Before this point, $major must not contain `.'.
  1944.   major=.$major
  1945.   versuffix="$major.$revision"
  1946.   ;;
  1947. linux)
  1948.   func_arith $current - $age
  1949.   major=.$func_arith_result
  1950.   versuffix="$major.$age.$revision"
  1951.   ;;
  1952. osf)
  1953.   func_arith $current - $age
  1954.   major=.$func_arith_result
  1955.   versuffix=".$current.$age.$revision"
  1956.   verstring="$current.$age.$revision"
  1957.   # Add in all the interfaces that we are compatible with.
  1958.   loop=$age
  1959.   while test "$loop" -ne 0; do
  1960.     func_arith $current - $loop
  1961.     iface=$func_arith_result
  1962.     func_arith $loop - 1
  1963.     loop=$func_arith_result
  1964.     verstring="$verstring:${iface}.0"
  1965.   done
  1966.   # Make executables depend on our current version.
  1967.   verstring="$verstring:${current}.0"
  1968.   ;;
  1969. qnx)
  1970.   major=".$current"
  1971.   versuffix=".$current"
  1972.   ;;
  1973. sunos)
  1974.   major=".$current"
  1975.   versuffix=".$current.$revision"
  1976.   ;;
  1977. windows)
  1978.   # Use '-' rather than '.', since we only want one
  1979.   # extension on DOS 8.3 filesystems.
  1980.   func_arith $current - $age
  1981.   major=$func_arith_result
  1982.   versuffix="-$major"
  1983.   ;;
  1984. *)
  1985.   func_fatal_configuration "unknown library version type `$version_type'"
  1986.   ;;
  1987. esac
  1988. # Clear the version info if we defaulted, and they specified a release.
  1989. if test -z "$vinfo" && test -n "$release"; then
  1990.   major=
  1991.   case $version_type in
  1992.   darwin)
  1993.     # we can't check for "0.0" in archive_cmds due to quoting
  1994.     # problems, so we reset it completely
  1995.     verstring=
  1996.     ;;
  1997.   *)
  1998.     verstring="0.0"
  1999.     ;;
  2000.   esac
  2001.   if test "$need_version" = no; then
  2002.     versuffix=
  2003.   else
  2004.     versuffix=".0.0"
  2005.   fi
  2006. fi
  2007. # Remove version info from name if versioning should be avoided
  2008. if test "$avoid_version" = yes && test "$need_version" = no; then
  2009.   major=
  2010.   versuffix=
  2011.   verstring=""
  2012. fi
  2013. # Check to see if the archive will have undefined symbols.
  2014. if test "$allow_undefined" = yes; then
  2015.   if test "$allow_undefined_flag" = unsupported; then
  2016.     func_warning "undefined symbols not allowed in $host shared libraries"
  2017.     build_libtool_libs=no
  2018.     build_old_libs=yes
  2019.   fi
  2020. else
  2021.   # Don't allow undefined symbols.
  2022.   allow_undefined_flag="$no_undefined_flag"
  2023. fi
  2024.       fi
  2025.       func_generate_dlsyms "$libname" "$libname" "yes"
  2026.       libobjs="$libobjs $symfileobj"
  2027.       test "X$libobjs" = "X " && libobjs=
  2028.       if test "$mode" != relink; then
  2029. # Remove our outputs, but don't remove object files since they
  2030. # may have been created when compiling PIC objects.
  2031. removelist=
  2032. tempremovelist=`$ECHO "$output_objdir/*"`
  2033. for p in $tempremovelist; do
  2034.   case $p in
  2035.     *.$objext | *.gcno)
  2036.        ;;
  2037.     $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*)
  2038.        if test "X$precious_files_regex" != "X"; then
  2039.  if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1
  2040.  then
  2041.    continue
  2042.  fi
  2043.        fi
  2044.        removelist="$removelist $p"
  2045.        ;;
  2046.     *) ;;
  2047.   esac
  2048. done
  2049. test -n "$removelist" && 
  2050.   func_show_eval "${RM}r $removelist"
  2051.       fi
  2052.       # Now set the variables for building old libraries.
  2053.       if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then
  2054. oldlibs="$oldlibs $output_objdir/$libname.$libext"
  2055. # Transform .lo files to .o files.
  2056. oldobjs="$objs "`$ECHO "X$libobjs" | $SP2NL | $Xsed -e '/.'${libext}'$/d' -e "$lo2o" | $NL2SP`
  2057.       fi
  2058.       # Eliminate all temporary directories.
  2059.       #for path in $notinst_path; do
  2060.       # lib_search_path=`$ECHO "X$lib_search_path " | $Xsed -e "s% $path % %g"`
  2061.       # deplibs=`$ECHO "X$deplibs " | $Xsed -e "s% -L$path % %g"`
  2062.       # dependency_libs=`$ECHO "X$dependency_libs " | $Xsed -e "s% -L$path % %g"`
  2063.       #done
  2064.       if test -n "$xrpath"; then
  2065. # If the user specified any rpath flags, then add them.
  2066. temp_xrpath=
  2067. for libdir in $xrpath; do
  2068.   temp_xrpath="$temp_xrpath -R$libdir"
  2069.   case "$finalize_rpath " in
  2070.   *" $libdir "*) ;;
  2071.   *) finalize_rpath="$finalize_rpath $libdir" ;;
  2072.   esac
  2073. done
  2074. if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then
  2075.   dependency_libs="$temp_xrpath $dependency_libs"
  2076. fi
  2077.       fi
  2078.       # Make sure dlfiles contains only unique files that won't be dlpreopened
  2079.       old_dlfiles="$dlfiles"
  2080.       dlfiles=
  2081.       for lib in $old_dlfiles; do
  2082. case " $dlprefiles $dlfiles " in
  2083. *" $lib "*) ;;
  2084. *) dlfiles="$dlfiles $lib" ;;
  2085. esac
  2086.       done
  2087.       # Make sure dlprefiles contains only unique files
  2088.       old_dlprefiles="$dlprefiles"
  2089.       dlprefiles=
  2090.       for lib in $old_dlprefiles; do
  2091. case "$dlprefiles " in
  2092. *" $lib "*) ;;
  2093. *) dlprefiles="$dlprefiles $lib" ;;
  2094. esac
  2095.       done
  2096.       if test "$build_libtool_libs" = yes; then
  2097. if test -n "$rpath"; then
  2098.   case $host in
  2099.   *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc*)
  2100.     # these systems don't actually have a c library (as such)!
  2101.     ;;
  2102.   *-*-rhapsody* | *-*-darwin1.[012])
  2103.     # Rhapsody C library is in the System framework
  2104.     deplibs="$deplibs System.ltframework"
  2105.     ;;
  2106.   *-*-netbsd*)
  2107.     # Don't link with libc until the a.out ld.so is fixed.
  2108.     ;;
  2109.   *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
  2110.     # Do not include libc due to us having libc/libc_r.
  2111.     ;;
  2112.   *-*-sco3.2v5* | *-*-sco5v6*)
  2113.     # Causes problems with __ctype
  2114.     ;;
  2115.   *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)
  2116.     # Compiler inserts libc in the correct place for threads to work
  2117.     ;;
  2118.   *)
  2119.     # Add libc to deplibs on all other systems if necessary.
  2120.     if test "$build_libtool_need_lc" = "yes"; then
  2121.       deplibs="$deplibs -lc"
  2122.     fi
  2123.     ;;
  2124.   esac
  2125. fi
  2126. # Transform deplibs into only deplibs that can be linked in shared.
  2127. name_save=$name
  2128. libname_save=$libname
  2129. release_save=$release
  2130. versuffix_save=$versuffix
  2131. major_save=$major
  2132. # I'm not sure if I'm treating the release correctly.  I think
  2133. # release should show up in the -l (ie -lgmp5) so we don't want to
  2134. # add it in twice.  Is that correct?
  2135. release=""
  2136. versuffix=""
  2137. major=""
  2138. newdeplibs=
  2139. droppeddeps=no
  2140. case $deplibs_check_method in
  2141. pass_all)
  2142.   # Don't check for shared/static.  Everything works.
  2143.   # This might be a little naive.  We might want to check
  2144.   # whether the library exists or not.  But this is on
  2145.   # osf3 & osf4 and I'm not really sure... Just
  2146.   # implementing what was already the behavior.
  2147.   newdeplibs=$deplibs
  2148.   ;;
  2149. test_compile)
  2150.   # This code stresses the "libraries are programs" paradigm to its
  2151.   # limits. Maybe even breaks it.  We compile a program, linking it
  2152.   # against the deplibs as a proxy for the library.  Then we can check
  2153.   # whether they linked in statically or dynamically with ldd.
  2154.   $opt_dry_run || $RM conftest.c
  2155.   cat > conftest.c <<EOF
  2156.   int main() { return 0; }
  2157. EOF
  2158.   $opt_dry_run || $RM conftest
  2159.   if $LTCC $LTCFLAGS -o conftest conftest.c $deplibs; then
  2160.     ldd_output=`ldd conftest`
  2161.     for i in $deplibs; do
  2162.       case $i in
  2163.       -l*)
  2164. func_stripname -l '' "$i"
  2165. name=$func_stripname_result
  2166. if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
  2167.   case " $predeps $postdeps " in
  2168.   *" $i "*)
  2169.     newdeplibs="$newdeplibs $i"
  2170.     i=""
  2171.     ;;
  2172.   esac
  2173. fi
  2174. if test -n "$i" ; then
  2175.   libname=`eval "\$ECHO "$libname_spec""`
  2176.   deplib_matches=`eval "\$ECHO "$library_names_spec""`
  2177.   set dummy $deplib_matches; shift
  2178.   deplib_match=$1
  2179.   if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
  2180.     newdeplibs="$newdeplibs $i"
  2181.   else
  2182.     droppeddeps=yes
  2183.     $ECHO
  2184.     $ECHO "*** Warning: dynamic linker does not accept needed library $i."
  2185.     $ECHO "*** I have the capability to make that library automatically link in when"
  2186.     $ECHO "*** you link to this library.  But I can only do this if you have a"
  2187.     $ECHO "*** shared version of the library, which I believe you do not have"
  2188.     $ECHO "*** because a test_compile did reveal that the linker did not use it for"
  2189.     $ECHO "*** its dynamic dependency list that programs get resolved with at runtime."
  2190.   fi
  2191. fi
  2192. ;;
  2193.       *)
  2194. newdeplibs="$newdeplibs $i"
  2195. ;;
  2196.       esac
  2197.     done
  2198.   else
  2199.     # Error occurred in the first compile.  Let's try to salvage
  2200.     # the situation: Compile a separate program for each library.
  2201.     for i in $deplibs; do
  2202.       case $i in
  2203.       -l*)
  2204. func_stripname -l '' "$i"
  2205. name=$func_stripname_result
  2206. $opt_dry_run || $RM conftest
  2207. if $LTCC $LTCFLAGS -o conftest conftest.c $i; then
  2208.   ldd_output=`ldd conftest`
  2209.   if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
  2210.     case " $predeps $postdeps " in
  2211.     *" $i "*)
  2212.       newdeplibs="$newdeplibs $i"
  2213.       i=""
  2214.       ;;
  2215.     esac
  2216.   fi
  2217.   if test -n "$i" ; then
  2218.     libname=`eval "\$ECHO "$libname_spec""`
  2219.     deplib_matches=`eval "\$ECHO "$library_names_spec""`
  2220.     set dummy $deplib_matches; shift
  2221.     deplib_match=$1
  2222.     if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
  2223.       newdeplibs="$newdeplibs $i"
  2224.     else
  2225.       droppeddeps=yes
  2226.       $ECHO
  2227.       $ECHO "*** Warning: dynamic linker does not accept needed library $i."
  2228.       $ECHO "*** I have the capability to make that library automatically link in when"
  2229.       $ECHO "*** you link to this library.  But I can only do this if you have a"
  2230.       $ECHO "*** shared version of the library, which you do not appear to have"
  2231.       $ECHO "*** because a test_compile did reveal that the linker did not use this one"
  2232.       $ECHO "*** as a dynamic dependency that programs can get resolved with at runtime."
  2233.     fi
  2234.   fi
  2235. else
  2236.   droppeddeps=yes
  2237.   $ECHO
  2238.   $ECHO "*** Warning!  Library $i is needed by this library but I was not able to"
  2239.   $ECHO "*** make it link in!  You will probably need to install it or some"
  2240.   $ECHO "*** library that it depends on before this library will be fully"
  2241.   $ECHO "*** functional.  Installing it before continuing would be even better."
  2242. fi
  2243. ;;
  2244.       *)
  2245. newdeplibs="$newdeplibs $i"
  2246. ;;
  2247.       esac
  2248.     done
  2249.   fi
  2250.   ;;
  2251. file_magic*)
  2252.   set dummy $deplibs_check_method; shift
  2253.   file_magic_regex=`expr "$deplibs_check_method" : "$1 (.*)"`
  2254.   for a_deplib in $deplibs; do
  2255.     case $a_deplib in
  2256.     -l*)
  2257.       func_stripname -l '' "$a_deplib"
  2258.       name=$func_stripname_result
  2259.       if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
  2260. case " $predeps $postdeps " in
  2261. *" $a_deplib "*)
  2262.   newdeplibs="$newdeplibs $a_deplib"
  2263.   a_deplib=""
  2264.   ;;
  2265. esac
  2266.       fi
  2267.       if test -n "$a_deplib" ; then
  2268. libname=`eval "\$ECHO "$libname_spec""`
  2269. for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
  2270.   potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
  2271.   for potent_lib in $potential_libs; do
  2272.       # Follow soft links.
  2273.       if ls -lLd "$potent_lib" 2>/dev/null |
  2274.  $GREP " -> " >/dev/null; then
  2275. continue
  2276.       fi
  2277.       # The statement above tries to avoid entering an
  2278.       # endless loop below, in case of cyclic links.
  2279.       # We might still enter an endless loop, since a link
  2280.       # loop can be closed while we follow links,
  2281.       # but so what?
  2282.       potlib="$potent_lib"
  2283.       while test -h "$potlib" 2>/dev/null; do
  2284. potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'`
  2285. case $potliblink in
  2286. [\/]* | [A-Za-z]:[\/]*) potlib="$potliblink";;
  2287. *) potlib=`$ECHO "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";;
  2288. esac
  2289.       done
  2290.       if eval $file_magic_cmd "$potlib" 2>/dev/null |
  2291.  $SED -e 10q |
  2292.  $EGREP "$file_magic_regex" > /dev/null; then
  2293. newdeplibs="$newdeplibs $a_deplib"
  2294. a_deplib=""
  2295. break 2
  2296.       fi
  2297.   done
  2298. done
  2299.       fi
  2300.       if test -n "$a_deplib" ; then
  2301. droppeddeps=yes
  2302. $ECHO
  2303. $ECHO "*** Warning: linker path does not have real file for library $a_deplib."
  2304. $ECHO "*** I have the capability to make that library automatically link in when"
  2305. $ECHO "*** you link to this library.  But I can only do this if you have a"
  2306. $ECHO "*** shared version of the library, which you do not appear to have"
  2307. $ECHO "*** because I did check the linker path looking for a file starting"
  2308. if test -z "$potlib" ; then
  2309.   $ECHO "*** with $libname but no candidates were found. (...for file magic test)"
  2310. else
  2311.   $ECHO "*** with $libname and none of the candidates passed a file format test"
  2312.   $ECHO "*** using a file magic. Last file checked: $potlib"
  2313. fi
  2314.       fi
  2315.       ;;
  2316.     *)
  2317.       # Add a -L argument.
  2318.       newdeplibs="$newdeplibs $a_deplib"
  2319.       ;;
  2320.     esac
  2321.   done # Gone through all deplibs.
  2322.   ;;
  2323. match_pattern*)
  2324.   set dummy $deplibs_check_method; shift
  2325.   match_pattern_regex=`expr "$deplibs_check_method" : "$1 (.*)"`
  2326.   for a_deplib in $deplibs; do
  2327.     case $a_deplib in
  2328.     -l*)
  2329.       func_stripname -l '' "$a_deplib"
  2330.       name=$func_stripname_result
  2331.       if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
  2332. case " $predeps $postdeps " in
  2333. *" $a_deplib "*)
  2334.   newdeplibs="$newdeplibs $a_deplib"
  2335.   a_deplib=""
  2336.   ;;
  2337. esac
  2338.       fi
  2339.       if test -n "$a_deplib" ; then
  2340. libname=`eval "\$ECHO "$libname_spec""`
  2341. for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
  2342.   potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
  2343.   for potent_lib in $potential_libs; do
  2344.     potlib="$potent_lib" # see symlink-check above in file_magic test
  2345.     if eval "$ECHO "X$potent_lib"" 2>/dev/null | $Xsed -e 10q | 
  2346.        $EGREP "$match_pattern_regex" > /dev/null; then
  2347.       newdeplibs="$newdeplibs $a_deplib"
  2348.       a_deplib=""
  2349.       break 2
  2350.     fi
  2351.   done
  2352. done
  2353.       fi
  2354.       if test -n "$a_deplib" ; then
  2355. droppeddeps=yes
  2356. $ECHO
  2357. $ECHO "*** Warning: linker path does not have real file for library $a_deplib."
  2358. $ECHO "*** I have the capability to make that library automatically link in when"
  2359. $ECHO "*** you link to this library.  But I can only do this if you have a"
  2360. $ECHO "*** shared version of the library, which you do not appear to have"
  2361. $ECHO "*** because I did check the linker path looking for a file starting"
  2362. if test -z "$potlib" ; then
  2363.   $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)"
  2364. else
  2365.   $ECHO "*** with $libname and none of the candidates passed a file format test"
  2366.   $ECHO "*** using a regex pattern. Last file checked: $potlib"
  2367. fi
  2368.       fi
  2369.       ;;
  2370.     *)
  2371.       # Add a -L argument.
  2372.       newdeplibs="$newdeplibs $a_deplib"
  2373.       ;;
  2374.     esac
  2375.   done # Gone through all deplibs.
  2376.   ;;
  2377. none | unknown | *)
  2378.   newdeplibs=""
  2379.   tmp_deplibs=`$ECHO "X $deplibs" | $Xsed 
  2380.       -e 's/ -lc$//' -e 's/ -[LR][^ ]*//g'`
  2381.   if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
  2382.     for i in $predeps $postdeps ; do
  2383.       # can't use Xsed below, because $i might contain '/'
  2384.       tmp_deplibs=`$ECHO "X $tmp_deplibs" | $Xsed -e "s,$i,,"`
  2385.     done
  2386.   fi
  2387.   if $ECHO "X $tmp_deplibs" | $Xsed -e 's/[  ]//g' |
  2388.      $GREP . >/dev/null; then
  2389.     $ECHO
  2390.     if test "X$deplibs_check_method" = "Xnone"; then
  2391.       $ECHO "*** Warning: inter-library dependencies are not supported in this platform."
  2392.     else
  2393.       $ECHO "*** Warning: inter-library dependencies are not known to be supported."
  2394.     fi
  2395.     $ECHO "*** All declared inter-library dependencies are being dropped."
  2396.     droppeddeps=yes
  2397.   fi
  2398.   ;;
  2399. esac
  2400. versuffix=$versuffix_save
  2401. major=$major_save
  2402. release=$release_save
  2403. libname=$libname_save
  2404. name=$name_save
  2405. case $host in
  2406. *-*-rhapsody* | *-*-darwin1.[012])
  2407.   # On Rhapsody replace the C library with the System framework
  2408.   newdeplibs=`$ECHO "X $newdeplibs" | $Xsed -e 's/ -lc / System.ltframework /'`
  2409.   ;;
  2410. esac
  2411. if test "$droppeddeps" = yes; then
  2412.   if test "$module" = yes; then
  2413.     $ECHO
  2414.     $ECHO "*** Warning: libtool could not satisfy all declared inter-library"
  2415.     $ECHO "*** dependencies of module $libname.  Therefore, libtool will create"
  2416.     $ECHO "*** a static module, that should work as long as the dlopening"
  2417.     $ECHO "*** application is linked with the -dlopen flag."
  2418.     if test -z "$global_symbol_pipe"; then
  2419.       $ECHO
  2420.       $ECHO "*** However, this would only work if libtool was able to extract symbol"
  2421.       $ECHO "*** lists from a program, using `nm' or equivalent, but libtool could"
  2422.       $ECHO "*** not find such a program.  So, this module is probably useless."
  2423.       $ECHO "*** `nm' from GNU binutils and a full rebuild may help."
  2424.     fi
  2425.     if test "$build_old_libs" = no; then
  2426.       oldlibs="$output_objdir/$libname.$libext"
  2427.       build_libtool_libs=module
  2428.       build_old_libs=yes
  2429.     else
  2430.       build_libtool_libs=no
  2431.     fi
  2432.   else
  2433.     $ECHO "*** The inter-library dependencies that have been dropped here will be"
  2434.     $ECHO "*** automatically added whenever a program is linked with this library"
  2435.     $ECHO "*** or is declared to -dlopen it."
  2436.     if test "$allow_undefined" = no; then
  2437.       $ECHO
  2438.       $ECHO "*** Since this library must not contain undefined symbols,"
  2439.       $ECHO "*** because either the platform does not support them or"
  2440.       $ECHO "*** it was explicitly requested with -no-undefined,"
  2441.       $ECHO "*** libtool will only create a static version of it."
  2442.       if test "$build_old_libs" = no; then
  2443. oldlibs="$output_objdir/$libname.$libext"
  2444. build_libtool_libs=module
  2445. build_old_libs=yes
  2446.       else
  2447. build_libtool_libs=no
  2448.       fi
  2449.     fi
  2450.   fi
  2451. fi
  2452. # Done checking deplibs!
  2453. deplibs=$newdeplibs
  2454.       fi
  2455.       # Time to change all our "foo.ltframework" stuff back to "-framework foo"
  2456.       case $host in
  2457. *-*-darwin*)
  2458.   newdeplibs=`$ECHO "X $newdeplibs" | $Xsed -e 's% ([^ $]*).ltframework% -framework 1%g'`
  2459.   new_inherited_linker_flags=`$ECHO "X $new_inherited_linker_flags" | $Xsed -e 's% ([^ $]*).ltframework% -framework 1%g'`
  2460.   deplibs=`$ECHO "X $deplibs" | $Xsed -e 's% ([^ $]*).ltframework% -framework 1%g'`
  2461.   ;;
  2462.       esac
  2463.       # move library search paths that coincide with paths to not yet
  2464.       # installed libraries to the beginning of the library search list
  2465.       new_libs=
  2466.       for path in $notinst_path; do
  2467. case " $new_libs " in
  2468. *" -L$path/$objdir "*) ;;
  2469. *)
  2470.   case " $deplibs " in
  2471.   *" -L$path/$objdir "*)
  2472.     new_libs="$new_libs -L$path/$objdir" ;;
  2473.   esac
  2474.   ;;
  2475. esac
  2476.       done
  2477.       for deplib in $deplibs; do
  2478. case $deplib in
  2479. -L*)
  2480.   case " $new_libs " in
  2481.   *" $deplib "*) ;;
  2482.   *) new_libs="$new_libs $deplib" ;;
  2483.   esac
  2484.   ;;
  2485. *) new_libs="$new_libs $deplib" ;;
  2486. esac
  2487.       done
  2488.       deplibs="$new_libs"
  2489.       # All the library-specific variables (install_libdir is set above).
  2490.       library_names=
  2491.       old_library=
  2492.       dlname=
  2493.       # Test again, we may have decided not to build it any more
  2494.       if test "$build_libtool_libs" = yes; then
  2495. if test "$hardcode_into_libs" = yes; then
  2496.   # Hardcode the library paths
  2497.   hardcode_libdirs=
  2498.   dep_rpath=
  2499.   rpath="$finalize_rpath"
  2500.   test "$mode" != relink && rpath="$compile_rpath$rpath"
  2501.   for libdir in $rpath; do
  2502.     if test -n "$hardcode_libdir_flag_spec"; then
  2503.       if test -n "$hardcode_libdir_separator"; then
  2504. if test -z "$hardcode_libdirs"; then
  2505.   hardcode_libdirs="$libdir"
  2506. else
  2507.   # Just accumulate the unique libdirs.
  2508.   case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
  2509.   *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
  2510.     ;;
  2511.   *)
  2512.     hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
  2513.     ;;
  2514.   esac
  2515. fi
  2516.       else
  2517. eval flag="$hardcode_libdir_flag_spec"
  2518. dep_rpath="$dep_rpath $flag"
  2519.       fi
  2520.     elif test -n "$runpath_var"; then
  2521.       case "$perm_rpath " in
  2522.       *" $libdir "*) ;;
  2523.       *) perm_rpath="$perm_rpath $libdir" ;;
  2524.       esac
  2525.     fi
  2526.   done
  2527.   # Substitute the hardcoded libdirs into the rpath.
  2528.   if test -n "$hardcode_libdir_separator" &&
  2529.      test -n "$hardcode_libdirs"; then
  2530.     libdir="$hardcode_libdirs"
  2531.     if test -n "$hardcode_libdir_flag_spec_ld"; then
  2532.       eval dep_rpath="$hardcode_libdir_flag_spec_ld"
  2533.     else
  2534.       eval dep_rpath="$hardcode_libdir_flag_spec"
  2535.     fi
  2536.   fi
  2537.   if test -n "$runpath_var" && test -n "$perm_rpath"; then
  2538.     # We should set the runpath_var.
  2539.     rpath=
  2540.     for dir in $perm_rpath; do
  2541.       rpath="$rpath$dir:"
  2542.     done
  2543.     eval "$runpath_var='$rpath$$runpath_var'; export $runpath_var"
  2544.   fi
  2545.   test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs"
  2546. fi
  2547. shlibpath="$finalize_shlibpath"
  2548. test "$mode" != relink && shlibpath="$compile_shlibpath$shlibpath"
  2549. if test -n "$shlibpath"; then
  2550.   eval "$shlibpath_var='$shlibpath$$shlibpath_var'; export $shlibpath_var"
  2551. fi
  2552. # Get the real and link names of the library.
  2553. eval shared_ext="$shrext_cmds"
  2554. eval library_names="$library_names_spec"
  2555. set dummy $library_names
  2556. shift
  2557. realname="$1"
  2558. shift
  2559. if test -n "$soname_spec"; then
  2560.   eval soname="$soname_spec"
  2561. else
  2562.   soname="$realname"
  2563. fi
  2564. if test -z "$dlname"; then
  2565.   dlname=$soname
  2566. fi
  2567. lib="$output_objdir/$realname"
  2568. linknames=
  2569. for link
  2570. do
  2571.   linknames="$linknames $link"
  2572. done
  2573. # Use standard objects if they are pic
  2574. test -z "$pic_flag" && libobjs=`$ECHO "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
  2575. test "X$libobjs" = "X " && libobjs=
  2576. delfiles=
  2577. if test -n "$export_symbols" && test -n "$include_expsyms"; then
  2578.   $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp"
  2579.   export_symbols="$output_objdir/$libname.uexp"
  2580.   delfiles="$delfiles $export_symbols"
  2581. fi
  2582. orig_export_symbols=
  2583. case $host_os in
  2584. cygwin* | mingw* | cegcc*)
  2585.   if test -n "$export_symbols" && test -z "$export_symbols_regex"; then
  2586.     # exporting using user supplied symfile
  2587.     if test "x`$SED 1q $export_symbols`" != xEXPORTS; then
  2588.       # and it's NOT already a .def file. Must figure out
  2589.       # which of the given symbols are data symbols and tag
  2590.       # them as such. So, trigger use of export_symbols_cmds.
  2591.       # export_symbols gets reassigned inside the "prepare
  2592.       # the list of exported symbols" if statement, so the
  2593.       # include_expsyms logic still works.
  2594.       orig_export_symbols="$export_symbols"
  2595.       export_symbols=
  2596.       always_export_symbols=yes
  2597.     fi
  2598.   fi
  2599.   ;;
  2600. esac
  2601. # Prepare the list of exported symbols
  2602. if test -z "$export_symbols"; then
  2603.   if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then
  2604.     func_verbose "generating symbol list for `$libname.la'"
  2605.     export_symbols="$output_objdir/$libname.exp"
  2606.     $opt_dry_run || $RM $export_symbols
  2607.     cmds=$export_symbols_cmds
  2608.     save_ifs="$IFS"; IFS='~'
  2609.     for cmd in $cmds; do
  2610.       IFS="$save_ifs"
  2611.       eval cmd="$cmd"
  2612.       func_len " $cmd"
  2613.       len=$func_len_result
  2614.       if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then
  2615. func_show_eval "$cmd" 'exit $?'
  2616. skipped_export=false
  2617.       else
  2618. # The command line is too long to execute in one step.
  2619. func_verbose "using reloadable object file for export list..."
  2620. skipped_export=:
  2621. # Break out early, otherwise skipped_export may be
  2622. # set to false by a later but shorter cmd.
  2623. break
  2624.       fi
  2625.     done
  2626.     IFS="$save_ifs"
  2627.     if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then
  2628.       func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
  2629.       func_show_eval '$MV "${export_symbols}T" "$export_symbols"'
  2630.     fi
  2631.   fi
  2632. fi
  2633. if test -n "$export_symbols" && test -n "$include_expsyms"; then
  2634.   tmp_export_symbols="$export_symbols"
  2635.   test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols"
  2636.   $opt_dry_run || eval '$ECHO "X$include_expsyms" | $Xsed | $SP2NL >> "$tmp_export_symbols"'
  2637. fi
  2638. if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then
  2639.   # The given exports_symbols file has to be filtered, so filter it.
  2640.   func_verbose "filter symbol list for `$libname.la' to tag DATA exports"
  2641.   # FIXME: $output_objdir/$libname.filter potentially contains lots of
  2642.   # 's' commands which not all seds can handle. GNU sed should be fine
  2643.   # though. Also, the filter scales superlinearly with the number of
  2644.   # global variables. join(1) would be nice here, but unfortunately
  2645.   # isn't a blessed tool.
  2646.   $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,(.*)([ ,].*),s|^1$|12|,' < $export_symbols > $output_objdir/$libname.filter
  2647.   delfiles="$delfiles $export_symbols $output_objdir/$libname.filter"
  2648.   export_symbols=$output_objdir/$libname.def
  2649.   $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols
  2650. fi
  2651. tmp_deplibs=
  2652. for test_deplib in $deplibs; do
  2653.   case " $convenience " in
  2654.   *" $test_deplib "*) ;;
  2655.   *)
  2656.     tmp_deplibs="$tmp_deplibs $test_deplib"
  2657.     ;;
  2658.   esac
  2659. done
  2660. deplibs="$tmp_deplibs"
  2661. if test -n "$convenience"; then
  2662.   if test -n "$whole_archive_flag_spec" &&
  2663.     test "$compiler_needs_object" = yes &&
  2664.     test -z "$libobjs"; then
  2665.     # extract the archives, so we have objects to list.
  2666.     # TODO: could optimize this to just extract one archive.
  2667.     whole_archive_flag_spec=
  2668.   fi
  2669.   if test -n "$whole_archive_flag_spec"; then
  2670.     save_libobjs=$libobjs
  2671.     eval libobjs="$libobjs $whole_archive_flag_spec"
  2672.     test "X$libobjs" = "X " && libobjs=
  2673.   else
  2674.     gentop="$output_objdir/${outputname}x"
  2675.     generated="$generated $gentop"
  2676.     func_extract_archives $gentop $convenience
  2677.     libobjs="$libobjs $func_extract_archives_result"
  2678.     test "X$libobjs" = "X " && libobjs=
  2679.   fi
  2680. fi
  2681. if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then
  2682.   eval flag="$thread_safe_flag_spec"
  2683.   linker_flags="$linker_flags $flag"
  2684. fi
  2685. # Make a backup of the uninstalled library when relinking
  2686. if test "$mode" = relink; then
  2687.   $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $?
  2688. fi
  2689. # Do each of the archive commands.
  2690. if test "$module" = yes && test -n "$module_cmds" ; then
  2691.   if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then
  2692.     eval test_cmds="$module_expsym_cmds"
  2693.     cmds=$module_expsym_cmds
  2694.   else
  2695.     eval test_cmds="$module_cmds"
  2696.     cmds=$module_cmds
  2697.   fi
  2698. else
  2699.   if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
  2700.     eval test_cmds="$archive_expsym_cmds"
  2701.     cmds=$archive_expsym_cmds
  2702.   else
  2703.     eval test_cmds="$archive_cmds"
  2704.     cmds=$archive_cmds
  2705.   fi
  2706. fi
  2707. if test "X$skipped_export" != "X:" &&
  2708.    func_len " $test_cmds" &&
  2709.    len=$func_len_result &&
  2710.    test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then
  2711.   :
  2712. else
  2713.   # The command line is too long to link in one step, link piecewise
  2714.   # or, if using GNU ld and skipped_export is not :, use a linker
  2715.   # script.
  2716.   # Save the value of $output and $libobjs because we want to
  2717.   # use them later.  If we have whole_archive_flag_spec, we
  2718.   # want to use save_libobjs as it was before
  2719.   # whole_archive_flag_spec was expanded, because we can't
  2720.   # assume the linker understands whole_archive_flag_spec.
  2721.   # This may have to be revisited, in case too many
  2722.   # convenience libraries get linked in and end up exceeding
  2723.   # the spec.
  2724.   if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then
  2725.     save_libobjs=$libobjs
  2726.   fi
  2727.   save_output=$output
  2728.   output_la=`$ECHO "X$output" | $Xsed -e "$basename"`
  2729.   # Clear the reloadable object creation command queue and
  2730.   # initialize k to one.
  2731.   test_cmds=
  2732.   concat_cmds=
  2733.   objlist=
  2734.   last_robj=
  2735.   k=1
  2736.   if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then
  2737.     output=${output_objdir}/${output_la}.lnkscript
  2738.     func_verbose "creating GNU ld script: $output"
  2739.     $ECHO 'INPUT (' > $output
  2740.     for obj in $save_libobjs
  2741.     do
  2742.       $ECHO "$obj" >> $output
  2743.     done
  2744.     $ECHO ')' >> $output
  2745.     delfiles="$delfiles $output"
  2746.   elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then
  2747.     output=${output_objdir}/${output_la}.lnk
  2748.     func_verbose "creating linker input file list: $output"
  2749.     : > $output
  2750.     set x $save_libobjs
  2751.     shift
  2752.     firstobj=
  2753.     if test "$compiler_needs_object" = yes; then
  2754.       firstobj="$1 "
  2755.       shift
  2756.     fi
  2757.     for obj
  2758.     do
  2759.       $ECHO "$obj" >> $output
  2760.     done
  2761.     delfiles="$delfiles $output"
  2762.     output=$firstobj"$file_list_spec$output"
  2763.   else
  2764.     if test -n "$save_libobjs"; then
  2765.       func_verbose "creating reloadable object files..."
  2766.       output=$output_objdir/$output_la-${k}.$objext
  2767.       eval test_cmds="$reload_cmds"
  2768.       func_len " $test_cmds"
  2769.       len0=$func_len_result
  2770.       len=$len0
  2771.       # Loop over the list of objects to be linked.
  2772.       for obj in $save_libobjs
  2773.       do
  2774. func_len " $obj"
  2775. func_arith $len + $func_len_result
  2776. len=$func_arith_result
  2777. if test "X$objlist" = X ||
  2778.    test "$len" -lt "$max_cmd_len"; then
  2779.   func_append objlist " $obj"
  2780. else
  2781.   # The command $test_cmds is almost too long, add a
  2782.   # command to the queue.
  2783.   if test "$k" -eq 1 ; then
  2784.     # The first file doesn't have a previous command to add.
  2785.     eval concat_cmds="$reload_cmds $objlist $last_robj"
  2786.   else
  2787.     # All subsequent reloadable object files will link in
  2788.     # the last one created.
  2789.     eval concat_cmds="$concat_cmds~$reload_cmds $objlist $last_robj~$RM $last_robj"
  2790.   fi
  2791.   last_robj=$output_objdir/$output_la-${k}.$objext
  2792.   func_arith $k + 1
  2793.   k=$func_arith_result
  2794.   output=$output_objdir/$output_la-${k}.$objext
  2795.   objlist=$obj
  2796.   func_len " $last_robj"
  2797.   func_arith $len0 + $func_len_result
  2798.   len=$func_arith_result
  2799. fi
  2800.       done
  2801.       # Handle the remaining objects by creating one last
  2802.       # reloadable object file.  All subsequent reloadable object
  2803.       # files will link in the last one created.
  2804.       test -z "$concat_cmds" || concat_cmds=$concat_cmds~
  2805.       eval concat_cmds="${concat_cmds}$reload_cmds $objlist $last_robj"
  2806.       if test -n "$last_robj"; then
  2807.         eval concat_cmds="${concat_cmds}~$RM $last_robj"
  2808.       fi
  2809.       delfiles="$delfiles $output"
  2810.     else
  2811.       output=
  2812.     fi
  2813.     if ${skipped_export-false}; then
  2814.       func_verbose "generating symbol list for `$libname.la'"
  2815.       export_symbols="$output_objdir/$libname.exp"
  2816.       $opt_dry_run || $RM $export_symbols
  2817.       libobjs=$output
  2818.       # Append the command to create the export file.
  2819.       test -z "$concat_cmds" || concat_cmds=$concat_cmds~
  2820.       eval concat_cmds="$concat_cmds$export_symbols_cmds"
  2821.       if test -n "$last_robj"; then
  2822. eval concat_cmds="$concat_cmds~$RM $last_robj"
  2823.       fi
  2824.     fi
  2825.     test -n "$save_libobjs" &&
  2826.       func_verbose "creating a temporary reloadable object file: $output"
  2827.     # Loop through the commands generated above and execute them.
  2828.     save_ifs="$IFS"; IFS='~'
  2829.     for cmd in $concat_cmds; do
  2830.       IFS="$save_ifs"
  2831.       $opt_silent || {
  2832.   func_quote_for_expand "$cmd"
  2833.   eval "func_echo $func_quote_for_expand_result"
  2834.       }
  2835.       $opt_dry_run || eval "$cmd" || {
  2836. lt_exit=$?
  2837. # Restore the uninstalled library and exit
  2838. if test "$mode" = relink; then
  2839.   ( cd "$output_objdir" && 
  2840.     $RM "${realname}T" && 
  2841.     $MV "${realname}U" "$realname" )
  2842. fi
  2843. exit $lt_exit
  2844.       }
  2845.     done
  2846.     IFS="$save_ifs"
  2847.     if test -n "$export_symbols_regex" && ${skipped_export-false}; then
  2848.       func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
  2849.       func_show_eval '$MV "${export_symbols}T" "$export_symbols"'
  2850.     fi
  2851.   fi
  2852.           if ${skipped_export-false}; then
  2853.     if test -n "$export_symbols" && test -n "$include_expsyms"; then
  2854.       tmp_export_symbols="$export_symbols"
  2855.       test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols"
  2856.       $opt_dry_run || eval '$ECHO "X$include_expsyms" | $Xsed | $SP2NL >> "$tmp_export_symbols"'
  2857.     fi
  2858.     if test -n "$orig_export_symbols"; then
  2859.       # The given exports_symbols file has to be filtered, so filter it.
  2860.       func_verbose "filter symbol list for `$libname.la' to tag DATA exports"
  2861.       # FIXME: $output_objdir/$libname.filter potentially contains lots of
  2862.       # 's' commands which not all seds can handle. GNU sed should be fine
  2863.       # though. Also, the filter scales superlinearly with the number of
  2864.       # global variables. join(1) would be nice here, but unfortunately
  2865.       # isn't a blessed tool.
  2866.       $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,(.*)([ ,].*),s|^1$|12|,' < $export_symbols > $output_objdir/$libname.filter
  2867.       delfiles="$delfiles $export_symbols $output_objdir/$libname.filter"
  2868.       export_symbols=$output_objdir/$libname.def
  2869.       $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols
  2870.     fi
  2871.   fi
  2872.   libobjs=$output
  2873.   # Restore the value of output.
  2874.   output=$save_output
  2875.   if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then
  2876.     eval libobjs="$libobjs $whole_archive_flag_spec"
  2877.     test "X$libobjs" = "X " && libobjs=
  2878.   fi
  2879.   # Expand the library linking commands again to reset the
  2880.   # value of $libobjs for piecewise linking.
  2881.   # Do each of the archive commands.
  2882.   if test "$module" = yes && test -n "$module_cmds" ; then
  2883.     if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then
  2884.       cmds=$module_expsym_cmds
  2885.     else
  2886.       cmds=$module_cmds
  2887.     fi
  2888.   else
  2889.     if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
  2890.       cmds=$archive_expsym_cmds
  2891.     else
  2892.       cmds=$archive_cmds
  2893.     fi
  2894.   fi
  2895. fi
  2896. if test -n "$delfiles"; then
  2897.   # Append the command to remove temporary files to $cmds.
  2898.   eval cmds="$cmds~$RM $delfiles"
  2899. fi
  2900. # Add any objects from preloaded convenience libraries
  2901. if test -n "$dlprefiles"; then
  2902.   gentop="$output_objdir/${outputname}x"
  2903.   generated="$generated $gentop"
  2904.   func_extract_archives $gentop $dlprefiles
  2905.   libobjs="$libobjs $func_extract_archives_result"
  2906.   test "X$libobjs" = "X " && libobjs=
  2907. fi
  2908. save_ifs="$IFS"; IFS='~'
  2909. for cmd in $cmds; do
  2910.   IFS="$save_ifs"
  2911.   eval cmd="$cmd"
  2912.   $opt_silent || {
  2913.     func_quote_for_expand "$cmd"
  2914.     eval "func_echo $func_quote_for_expand_result"
  2915.   }
  2916.   $opt_dry_run || eval "$cmd" || {
  2917.     lt_exit=$?
  2918.     # Restore the uninstalled library and exit
  2919.     if test "$mode" = relink; then
  2920.       ( cd "$output_objdir" && 
  2921.         $RM "${realname}T" && 
  2922. $MV "${realname}U" "$realname" )
  2923.     fi
  2924.     exit $lt_exit
  2925.   }
  2926. done
  2927. IFS="$save_ifs"
  2928. # Restore the uninstalled library and exit
  2929. if test "$mode" = relink; then
  2930.   $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $?
  2931.   if test -n "$convenience"; then
  2932.     if test -z "$whole_archive_flag_spec"; then
  2933.       func_show_eval '${RM}r "$gentop"'
  2934.     fi
  2935.   fi
  2936.   exit $EXIT_SUCCESS
  2937. fi
  2938. # Create links to the real library.
  2939. for linkname in $linknames; do
  2940.   if test "$realname" != "$linkname"; then
  2941.     func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?'
  2942.   fi
  2943. done
  2944. # If -module or -export-dynamic was specified, set the dlname.
  2945. if test "$module" = yes || test "$export_dynamic" = yes; then
  2946.   # On all known operating systems, these are identical.
  2947.   dlname="$soname"
  2948. fi
  2949.       fi
  2950.       ;;
  2951.     obj)
  2952.       if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
  2953. func_warning "`-dlopen' is ignored for objects"
  2954.       fi
  2955.       case " $deplibs" in
  2956.       * -l* | * -L*)
  2957. func_warning "`-l' and `-L' are ignored for objects" ;;
  2958.       esac
  2959.       test -n "$rpath" && 
  2960. func_warning "`-rpath' is ignored for objects"
  2961.       test -n "$xrpath" && 
  2962. func_warning "`-R' is ignored for objects"
  2963.       test -n "$vinfo" && 
  2964. func_warning "`-version-info' is ignored for objects"
  2965.       test -n "$release" && 
  2966. func_warning "`-release' is ignored for objects"
  2967.       case $output in
  2968.       *.lo)
  2969. test -n "$objs$old_deplibs" && 
  2970.   func_fatal_error "cannot build library object `$output' from non-libtool objects"
  2971. libobj=$output
  2972. func_lo2o "$libobj"
  2973. obj=$func_lo2o_result
  2974. ;;
  2975.       *)
  2976. libobj=
  2977. obj="$output"
  2978. ;;
  2979.       esac
  2980.       # Delete the old objects.
  2981.       $opt_dry_run || $RM $obj $libobj
  2982.       # Objects from convenience libraries.  This assumes
  2983.       # single-version convenience libraries.  Whenever we create
  2984.       # different ones for PIC/non-PIC, this we'll have to duplicate
  2985.       # the extraction.
  2986.       reload_conv_objs=
  2987.       gentop=
  2988.       # reload_cmds runs $LD directly, so let us get rid of
  2989.       # -Wl from whole_archive_flag_spec and hope we can get by with
  2990.       # turning comma into space..
  2991.       wl=
  2992.       if test -n "$convenience"; then
  2993. if test -n "$whole_archive_flag_spec"; then
  2994.   eval tmp_whole_archive_flags="$whole_archive_flag_spec"
  2995.   reload_conv_objs=$reload_objs `$ECHO "X$tmp_whole_archive_flags" | $Xsed -e 's|,| |g'`
  2996. else
  2997.   gentop="$output_objdir/${obj}x"
  2998.   generated="$generated $gentop"
  2999.   func_extract_archives $gentop $convenience
  3000.   reload_conv_objs="$reload_objs $func_extract_archives_result"
  3001. fi
  3002.       fi
  3003.       # Create the old-style object.
  3004.       reload_objs="$objs$old_deplibs "`$ECHO "X$libobjs" | $SP2NL | $Xsed -e '/.'${libext}$'/d' -e '/.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test
  3005.       output="$obj"
  3006.       func_execute_cmds "$reload_cmds" 'exit $?'
  3007.       # Exit if we aren't doing a library object file.
  3008.       if test -z "$libobj"; then
  3009. if test -n "$gentop"; then
  3010.   func_show_eval '${RM}r "$gentop"'
  3011. fi
  3012. exit $EXIT_SUCCESS
  3013.       fi
  3014.       if test "$build_libtool_libs" != yes; then
  3015. if test -n "$gentop"; then
  3016.   func_show_eval '${RM}r "$gentop"'
  3017. fi
  3018. # Create an invalid libtool object if no PIC, so that we don't
  3019. # accidentally link it into a program.
  3020. # $show "echo timestamp > $libobj"
  3021. # $opt_dry_run || eval "echo timestamp > $libobj" || exit $?
  3022. exit $EXIT_SUCCESS
  3023.       fi
  3024.       if test -n "$pic_flag" || test "$pic_mode" != default; then
  3025. # Only do commands if we really have different PIC objects.
  3026. reload_objs="$libobjs $reload_conv_objs"
  3027. output="$libobj"
  3028. func_execute_cmds "$reload_cmds" 'exit $?'
  3029.       fi
  3030.       if test -n "$gentop"; then
  3031. func_show_eval '${RM}r "$gentop"'
  3032.       fi
  3033.       exit $EXIT_SUCCESS
  3034.       ;;
  3035.     prog)
  3036.       case $host in
  3037. *cygwin*) func_stripname '' '.exe' "$output"
  3038.           output=$func_stripname_result.exe;;
  3039.       esac
  3040.       test -n "$vinfo" && 
  3041. func_warning "`-version-info' is ignored for programs"
  3042.       test -n "$release" && 
  3043. func_warning "`-release' is ignored for programs"
  3044.       test "$preload" = yes 
  3045.         && test "$dlopen_support" = unknown 
  3046. && test "$dlopen_self" = unknown 
  3047. && test "$dlopen_self_static" = unknown && 
  3048.   func_warning "`LT_INIT([dlopen])' not used. Assuming no dlopen support."
  3049.       case $host in
  3050.       *-*-rhapsody* | *-*-darwin1.[012])
  3051. # On Rhapsody replace the C library is the System framework
  3052. compile_deplibs=`$ECHO "X $compile_deplibs" | $Xsed -e 's/ -lc / System.ltframework /'`
  3053. finalize_deplibs=`$ECHO "X $finalize_deplibs" | $Xsed -e 's/ -lc / System.ltframework /'`
  3054. ;;
  3055.       esac
  3056.       case $host in
  3057.       *-*-darwin*)
  3058. # Don't allow lazy linking, it breaks C++ global constructors
  3059. # But is supposedly fixed on 10.4 or later (yay!).
  3060. if test "$tagname" = CXX ; then
  3061.   case ${MACOSX_DEPLOYMENT_TARGET-10.0} in
  3062.     10.[0123])
  3063.       compile_command="$compile_command ${wl}-bind_at_load"
  3064.       finalize_command="$finalize_command ${wl}-bind_at_load"
  3065.     ;;
  3066.   esac
  3067. fi
  3068. # Time to change all our "foo.ltframework" stuff back to "-framework foo"
  3069. compile_deplibs=`$ECHO "X $compile_deplibs" | $Xsed -e 's% ([^ $]*).ltframework% -framework 1%g'`
  3070. finalize_deplibs=`$ECHO "X $finalize_deplibs" | $Xsed -e 's% ([^ $]*).ltframework% -framework 1%g'`
  3071. ;;
  3072.       esac
  3073.       # move library search paths that coincide with paths to not yet
  3074.       # installed libraries to the beginning of the library search list
  3075.       new_libs=
  3076.       for path in $notinst_path; do
  3077. case " $new_libs " in
  3078. *" -L$path/$objdir "*) ;;
  3079. *)
  3080.   case " $compile_deplibs " in
  3081.   *" -L$path/$objdir "*)
  3082.     new_libs="$new_libs -L$path/$objdir" ;;
  3083.   esac
  3084.   ;;
  3085. esac
  3086.       done
  3087.       for deplib in $compile_deplibs; do
  3088. case $deplib in
  3089. -L*)
  3090.   case " $new_libs " in
  3091.   *" $deplib "*) ;;
  3092.   *) new_libs="$new_libs $deplib" ;;
  3093.   esac
  3094.   ;;
  3095. *) new_libs="$new_libs $deplib" ;;
  3096. esac
  3097.       done
  3098.       compile_deplibs="$new_libs"
  3099.       compile_command="$compile_command $compile_deplibs"
  3100.       finalize_command="$finalize_command $finalize_deplibs"
  3101.       if test -n "$rpath$xrpath"; then
  3102. # If the user specified any rpath flags, then add them.
  3103. for libdir in $rpath $xrpath; do
  3104.   # This is the magic to use -rpath.
  3105.   case "$finalize_rpath " in
  3106.   *" $libdir "*) ;;
  3107.   *) finalize_rpath="$finalize_rpath $libdir" ;;
  3108.   esac
  3109. done
  3110.       fi
  3111.       # Now hardcode the library paths
  3112.       rpath=
  3113.       hardcode_libdirs=
  3114.       for libdir in $compile_rpath $finalize_rpath; do
  3115. if test -n "$hardcode_libdir_flag_spec"; then
  3116.   if test -n "$hardcode_libdir_separator"; then
  3117.     if test -z "$hardcode_libdirs"; then
  3118.       hardcode_libdirs="$libdir"
  3119.     else
  3120.       # Just accumulate the unique libdirs.
  3121.       case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
  3122.       *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
  3123. ;;
  3124.       *)
  3125. hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
  3126. ;;
  3127.       esac
  3128.     fi
  3129.   else
  3130.     eval flag="$hardcode_libdir_flag_spec"
  3131.     rpath="$rpath $flag"
  3132.   fi
  3133. elif test -n "$runpath_var"; then
  3134.   case "$perm_rpath " in
  3135.   *" $libdir "*) ;;
  3136.   *) perm_rpath="$perm_rpath $libdir" ;;
  3137.   esac
  3138. fi
  3139. case $host in
  3140. *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
  3141.   testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'`
  3142.   case :$dllsearchpath: in
  3143.   *":$libdir:"*) ;;
  3144.   ::) dllsearchpath=$libdir;;
  3145.   *) dllsearchpath="$dllsearchpath:$libdir";;
  3146.   esac
  3147.   case :$dllsearchpath: in
  3148.   *":$testbindir:"*) ;;
  3149.   ::) dllsearchpath=$testbindir;;
  3150.   *) dllsearchpath="$dllsearchpath:$testbindir";;
  3151.   esac
  3152.   ;;
  3153. esac
  3154.       done
  3155.       # Substitute the hardcoded libdirs into the rpath.
  3156.       if test -n "$hardcode_libdir_separator" &&
  3157.  test -n "$hardcode_libdirs"; then
  3158. libdir="$hardcode_libdirs"
  3159. eval rpath=" $hardcode_libdir_flag_spec"
  3160.       fi
  3161.       compile_rpath="$rpath"
  3162.       rpath=
  3163.       hardcode_libdirs=
  3164.       for libdir in $finalize_rpath; do
  3165. if test -n "$hardcode_libdir_flag_spec"; then
  3166.   if test -n "$hardcode_libdir_separator"; then
  3167.     if test -z "$hardcode_libdirs"; then
  3168.       hardcode_libdirs="$libdir"
  3169.     else
  3170.       # Just accumulate the unique libdirs.
  3171.       case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
  3172.       *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
  3173. ;;
  3174.       *)
  3175. hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
  3176. ;;
  3177.       esac
  3178.     fi
  3179.   else
  3180.     eval flag="$hardcode_libdir_flag_spec"
  3181.     rpath="$rpath $flag"
  3182.   fi
  3183. elif test -n "$runpath_var"; then
  3184.   case "$finalize_perm_rpath " in
  3185.   *" $libdir "*) ;;
  3186.   *) finalize_perm_rpath="$finalize_perm_rpath $libdir" ;;
  3187.   esac
  3188. fi
  3189.       done
  3190.       # Substitute the hardcoded libdirs into the rpath.
  3191.       if test -n "$hardcode_libdir_separator" &&
  3192.  test -n "$hardcode_libdirs"; then
  3193. libdir="$hardcode_libdirs"
  3194. eval rpath=" $hardcode_libdir_flag_spec"
  3195.       fi
  3196.       finalize_rpath="$rpath"
  3197.       if test -n "$libobjs" && test "$build_old_libs" = yes; then
  3198. # Transform all the library objects into standard objects.
  3199. compile_command=`$ECHO "X$compile_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
  3200. finalize_command=`$ECHO "X$finalize_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
  3201.       fi
  3202.       func_generate_dlsyms "$outputname" "@PROGRAM@" "no"
  3203.       # template prelinking step
  3204.       if test -n "$prelink_cmds"; then
  3205. func_execute_cmds "$prelink_cmds" 'exit $?'
  3206.       fi
  3207.       wrappers_required=yes
  3208.       case $host in
  3209.       *cygwin* | *mingw* )
  3210.         if test "$build_libtool_libs" != yes; then
  3211.           wrappers_required=no
  3212.         fi
  3213.         ;;
  3214.       *cegcc)
  3215.         # Disable wrappers for cegcc, we are cross compiling anyway.
  3216.         wrappers_required=no
  3217.         ;;
  3218.       *)
  3219.         if test "$need_relink" = no || test "$build_libtool_libs" != yes; then
  3220.           wrappers_required=no
  3221.         fi
  3222.         ;;
  3223.       esac
  3224.       if test "$wrappers_required" = no; then
  3225. # Replace the output file specification.
  3226. compile_command=`$ECHO "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
  3227. link_command="$compile_command$compile_rpath"
  3228. # We have no uninstalled library dependencies, so finalize right now.
  3229. exit_status=0
  3230. func_show_eval "$link_command" 'exit_status=$?'
  3231. # Delete the generated files.
  3232. if test -f "$output_objdir/${outputname}S.${objext}"; then
  3233.   func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"'
  3234. fi
  3235. exit $exit_status
  3236.       fi
  3237.       if test -n "$compile_shlibpath$finalize_shlibpath"; then
  3238. compile_command="$shlibpath_var="$compile_shlibpath$finalize_shlibpath$$shlibpath_var" $compile_command"
  3239.       fi
  3240.       if test -n "$finalize_shlibpath"; then
  3241. finalize_command="$shlibpath_var="$finalize_shlibpath$$shlibpath_var" $finalize_command"
  3242.       fi
  3243.       compile_var=
  3244.       finalize_var=
  3245.       if test -n "$runpath_var"; then
  3246. if test -n "$perm_rpath"; then
  3247.   # We should set the runpath_var.
  3248.   rpath=
  3249.   for dir in $perm_rpath; do
  3250.     rpath="$rpath$dir:"
  3251.   done
  3252.   compile_var="$runpath_var="$rpath$$runpath_var" "
  3253. fi
  3254. if test -n "$finalize_perm_rpath"; then
  3255.   # We should set the runpath_var.
  3256.   rpath=
  3257.   for dir in $finalize_perm_rpath; do
  3258.     rpath="$rpath$dir:"
  3259.   done
  3260.   finalize_var="$runpath_var="$rpath$$runpath_var" "
  3261. fi
  3262.       fi
  3263.       if test "$no_install" = yes; then
  3264. # We don't need to create a wrapper script.
  3265. link_command="$compile_var$compile_command$compile_rpath"
  3266. # Replace the output file specification.
  3267. link_command=`$ECHO "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
  3268. # Delete the old output file.
  3269. $opt_dry_run || $RM $output
  3270. # Link the executable and exit
  3271. func_show_eval "$link_command" 'exit $?'
  3272. exit $EXIT_SUCCESS
  3273.       fi
  3274.       if test "$hardcode_action" = relink; then
  3275. # Fast installation is not supported
  3276. link_command="$compile_var$compile_command$compile_rpath"
  3277. relink_command="$finalize_var$finalize_command$finalize_rpath"
  3278. func_warning "this platform does not like uninstalled shared libraries"
  3279. func_warning "`$output' will be relinked during installation"
  3280.       else
  3281. if test "$fast_install" != no; then
  3282.   link_command="$finalize_var$compile_command$finalize_rpath"
  3283.   if test "$fast_install" = yes; then
  3284.     relink_command=`$ECHO "X$compile_var$compile_command$compile_rpath" | $Xsed -e 's%@OUTPUT@%$progdir/$file%g'`
  3285.   else
  3286.     # fast_install is set to needless
  3287.     relink_command=
  3288.   fi
  3289. else
  3290.   link_command="$compile_var$compile_command$compile_rpath"
  3291.   relink_command="$finalize_var$finalize_command$finalize_rpath"
  3292. fi
  3293.       fi
  3294.       # Replace the output file specification.
  3295.       link_command=`$ECHO "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'`
  3296.       # Delete the old output files.
  3297.       $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname
  3298.       func_show_eval "$link_command" 'exit $?'
  3299.       # Now create the wrapper script.
  3300.       func_verbose "creating $output"
  3301.       # Quote the relink command for shipping.
  3302.       if test -n "$relink_command"; then
  3303. # Preserve any variables that may affect compiler behavior
  3304. for var in $variables_saved_for_relink; do
  3305.   if eval test -z "${$var+set}"; then
  3306.     relink_command="{ test -z "${$var+set}" || $lt_unset $var || { $var=; export $var; }; }; $relink_command"
  3307.   elif eval var_value=$$var; test -z "$var_value"; then
  3308.     relink_command="$var=; export $var; $relink_command"
  3309.   else
  3310.     func_quote_for_eval "$var_value"
  3311.     relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command"
  3312.   fi
  3313. done
  3314. relink_command="(cd `pwd`; $relink_command)"
  3315. relink_command=`$ECHO "X$relink_command" | $Xsed -e "$sed_quote_subst"`
  3316.       fi
  3317.       # Quote $ECHO for shipping.
  3318.       if test "X$ECHO" = "X$SHELL $progpath --fallback-echo"; then
  3319. case $progpath in
  3320. [\/]* | [A-Za-z]:[\/]*) qecho="$SHELL $progpath --fallback-echo";;
  3321. *) qecho="$SHELL `pwd`/$progpath --fallback-echo";;
  3322. esac
  3323. qecho=`$ECHO "X$qecho" | $Xsed -e "$sed_quote_subst"`
  3324.       else
  3325. qecho=`$ECHO "X$ECHO" | $Xsed -e "$sed_quote_subst"`
  3326.       fi
  3327.       # Only actually do things if not in dry run mode.
  3328.       $opt_dry_run || {
  3329. # win32 will think the script is a binary if it has
  3330. # a .exe suffix, so we strip it off here.
  3331. case $output in
  3332.   *.exe) func_stripname '' '.exe' "$output"
  3333.          output=$func_stripname_result ;;
  3334. esac
  3335. # test for cygwin because mv fails w/o .exe extensions
  3336. case $host in
  3337.   *cygwin*)
  3338.     exeext=.exe
  3339.     func_stripname '' '.exe' "$outputname"
  3340.     outputname=$func_stripname_result ;;
  3341.   *) exeext= ;;
  3342. esac
  3343. case $host in
  3344.   *cygwin* | *mingw* )
  3345.     func_dirname_and_basename "$output" "" "."
  3346.     output_name=$func_basename_result
  3347.     output_path=$func_dirname_result
  3348.     cwrappersource="$output_path/$objdir/lt-$output_name.c"
  3349.     cwrapper="$output_path/$output_name.exe"
  3350.     $RM $cwrappersource $cwrapper
  3351.     trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15
  3352.     func_emit_cwrapperexe_src > $cwrappersource
  3353.     # The wrapper executable is built using the $host compiler,
  3354.     # because it contains $host paths and files. If cross-
  3355.     # compiling, it, like the target executable, must be
  3356.     # executed on the $host or under an emulation environment.
  3357.     $opt_dry_run || {
  3358.       $LTCC $LTCFLAGS -o $cwrapper $cwrappersource
  3359.       $STRIP $cwrapper
  3360.     }
  3361.     # Now, create the wrapper script for func_source use:
  3362.     func_ltwrapper_scriptname $cwrapper
  3363.     $RM $func_ltwrapper_scriptname_result
  3364.     trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15
  3365.     $opt_dry_run || {
  3366.       # note: this script will not be executed, so do not chmod.
  3367.       if test "x$build" = "x$host" ; then
  3368. $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result
  3369.       else
  3370. func_emit_wrapper no > $func_ltwrapper_scriptname_result
  3371.       fi
  3372.     }
  3373.   ;;
  3374.   * )
  3375.     $RM $output
  3376.     trap "$RM $output; exit $EXIT_FAILURE" 1 2 15
  3377.     func_emit_wrapper no > $output
  3378.     chmod +x $output
  3379.   ;;
  3380. esac
  3381.       }
  3382.       exit $EXIT_SUCCESS
  3383.       ;;
  3384.     esac
  3385.     # See if we need to build an old-fashioned archive.
  3386.     for oldlib in $oldlibs; do
  3387.       if test "$build_libtool_libs" = convenience; then
  3388. oldobjs="$libobjs_save $symfileobj"
  3389. addlibs="$convenience"
  3390. build_libtool_libs=no
  3391.       else
  3392. if test "$build_libtool_libs" = module; then
  3393.   oldobjs="$libobjs_save"
  3394.   build_libtool_libs=no
  3395. else
  3396.   oldobjs="$old_deplibs $non_pic_objects"
  3397.   if test "$preload" = yes && test -f "$symfileobj"; then
  3398.     oldobjs="$oldobjs $symfileobj"
  3399.   fi
  3400. fi
  3401. addlibs="$old_convenience"
  3402.       fi
  3403.       if test -n "$addlibs"; then
  3404. gentop="$output_objdir/${outputname}x"
  3405. generated="$generated $gentop"
  3406. func_extract_archives $gentop $addlibs
  3407. oldobjs="$oldobjs $func_extract_archives_result"
  3408.       fi
  3409.       # Do each command in the archive commands.
  3410.       if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then
  3411. cmds=$old_archive_from_new_cmds
  3412.       else
  3413. # Add any objects from preloaded convenience libraries
  3414. if test -n "$dlprefiles"; then
  3415.   gentop="$output_objdir/${outputname}x"
  3416.   generated="$generated $gentop"
  3417.   func_extract_archives $gentop $dlprefiles
  3418.   oldobjs="$oldobjs $func_extract_archives_result"
  3419. fi
  3420. # POSIX demands no paths to be encoded in archives.  We have
  3421. # to avoid creating archives with duplicate basenames if we
  3422. # might have to extract them afterwards, e.g., when creating a
  3423. # static archive out of a convenience library, or when linking
  3424. # the entirety of a libtool archive into another (currently
  3425. # not supported by libtool).
  3426. if (for obj in $oldobjs
  3427.     do
  3428.       func_basename "$obj"
  3429.       $ECHO "$func_basename_result"
  3430.     done | sort | sort -uc >/dev/null 2>&1); then
  3431.   :
  3432. else
  3433.   $ECHO "copying selected object files to avoid basename conflicts..."
  3434.   gentop="$output_objdir/${outputname}x"
  3435.   generated="$generated $gentop"
  3436.   func_mkdir_p "$gentop"
  3437.   save_oldobjs=$oldobjs
  3438.   oldobjs=
  3439.   counter=1
  3440.   for obj in $save_oldobjs
  3441.   do
  3442.     func_basename "$obj"
  3443.     objbase="$func_basename_result"
  3444.     case " $oldobjs " in
  3445.     " ") oldobjs=$obj ;;
  3446.     *[ /]"$objbase "*)
  3447.       while :; do
  3448. # Make sure we don't pick an alternate name that also
  3449. # overlaps.
  3450. newobj=lt$counter-$objbase
  3451. func_arith $counter + 1
  3452. counter=$func_arith_result
  3453. case " $oldobjs " in
  3454. *[ /]"$newobj "*) ;;
  3455. *) if test ! -f "$gentop/$newobj"; then break; fi ;;
  3456. esac
  3457.       done
  3458.       func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj"
  3459.       oldobjs="$oldobjs $gentop/$newobj"
  3460.       ;;
  3461.     *) oldobjs="$oldobjs $obj" ;;
  3462.     esac
  3463.   done
  3464. fi
  3465. eval cmds="$old_archive_cmds"
  3466. func_len " $cmds"
  3467. len=$func_len_result
  3468. if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then
  3469.   cmds=$old_archive_cmds
  3470. else
  3471.   # the command line is too long to link in one step, link in parts
  3472.   func_verbose "using piecewise archive linking..."
  3473.   save_RANLIB=$RANLIB
  3474.   RANLIB=:
  3475.   objlist=
  3476.   concat_cmds=
  3477.   save_oldobjs=$oldobjs
  3478.   oldobjs=
  3479.   # Is there a better way of finding the last object in the list?
  3480.   for obj in $save_oldobjs
  3481.   do
  3482.     last_oldobj=$obj
  3483.   done
  3484.   eval test_cmds="$old_archive_cmds"
  3485.   func_len " $test_cmds"
  3486.   len0=$func_len_result
  3487.   len=$len0
  3488.   for obj in $save_oldobjs
  3489.   do
  3490.     func_len " $obj"
  3491.     func_arith $len + $func_len_result
  3492.     len=$func_arith_result
  3493.     func_append objlist " $obj"
  3494.     if test "$len" -lt "$max_cmd_len"; then
  3495.       :
  3496.     else
  3497.       # the above command should be used before it gets too long
  3498.       oldobjs=$objlist
  3499.       if test "$obj" = "$last_oldobj" ; then
  3500. RANLIB=$save_RANLIB
  3501.       fi
  3502.       test -z "$concat_cmds" || concat_cmds=$concat_cmds~
  3503.       eval concat_cmds="${concat_cmds}$old_archive_cmds"
  3504.       objlist=
  3505.       len=$len0
  3506.     fi
  3507.   done
  3508.   RANLIB=$save_RANLIB
  3509.   oldobjs=$objlist
  3510.   if test "X$oldobjs" = "X" ; then
  3511.     eval cmds="$concat_cmds"
  3512.   else
  3513.     eval cmds="$concat_cmds~$old_archive_cmds"
  3514.   fi
  3515. fi
  3516.       fi
  3517.       func_execute_cmds "$cmds" 'exit $?'
  3518.     done
  3519.     test -n "$generated" && 
  3520.       func_show_eval "${RM}r$generated"
  3521.     # Now create the libtool archive.
  3522.     case $output in
  3523.     *.la)
  3524.       old_library=
  3525.       test "$build_old_libs" = yes && old_library="$libname.$libext"
  3526.       func_verbose "creating $output"
  3527.       # Preserve any variables that may affect compiler behavior
  3528.       for var in $variables_saved_for_relink; do
  3529. if eval test -z "${$var+set}"; then
  3530.   relink_command="{ test -z "${$var+set}" || $lt_unset $var || { $var=; export $var; }; }; $relink_command"
  3531. elif eval var_value=$$var; test -z "$var_value"; then
  3532.   relink_command="$var=; export $var; $relink_command"
  3533. else
  3534.   func_quote_for_eval "$var_value"
  3535.   relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command"
  3536. fi
  3537.       done
  3538.       # Quote the link command for shipping.
  3539.       relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)"
  3540.       relink_command=`$ECHO "X$relink_command" | $Xsed -e "$sed_quote_subst"`
  3541.       if test "$hardcode_automatic" = yes ; then
  3542. relink_command=
  3543.       fi
  3544.       # Only create the output if not a dry run.
  3545.       $opt_dry_run || {
  3546. for installed in no yes; do
  3547.   if test "$installed" = yes; then
  3548.     if test -z "$install_libdir"; then
  3549.       break
  3550.     fi
  3551.     output="$output_objdir/$outputname"i
  3552.     # Replace all uninstalled libtool libraries with the installed ones
  3553.     newdependency_libs=
  3554.     for deplib in $dependency_libs; do
  3555.       case $deplib in
  3556.       *.la)
  3557. func_basename "$deplib"
  3558. name="$func_basename_result"
  3559. eval libdir=`${SED} -n -e 's/^libdir=(.*)$/1/p' $deplib`
  3560. test -z "$libdir" && 
  3561.   func_fatal_error "`$deplib' is not a valid libtool archive"
  3562. newdependency_libs="$newdependency_libs $libdir/$name"
  3563. ;;
  3564.       *) newdependency_libs="$newdependency_libs $deplib" ;;
  3565.       esac
  3566.     done
  3567.     dependency_libs="$newdependency_libs"
  3568.     newdlfiles=
  3569.     for lib in $dlfiles; do
  3570.       case $lib in
  3571.       *.la)
  3572.         func_basename "$lib"
  3573. name="$func_basename_result"
  3574. eval libdir=`${SED} -n -e 's/^libdir=(.*)$/1/p' $lib`
  3575. test -z "$libdir" && 
  3576.   func_fatal_error "`$lib' is not a valid libtool archive"
  3577. newdlfiles="$newdlfiles $libdir/$name"
  3578. ;;
  3579.       *) newdlfiles="$newdlfiles $lib" ;;
  3580.       esac
  3581.     done
  3582.     dlfiles="$newdlfiles"
  3583.     newdlprefiles=
  3584.     for lib in $dlprefiles; do
  3585.       case $lib in
  3586.       *.la)
  3587. # Only pass preopened files to the pseudo-archive (for
  3588. # eventual linking with the app. that links it) if we
  3589. # didn't already link the preopened objects directly into
  3590. # the library:
  3591. func_basename "$lib"
  3592. name="$func_basename_result"
  3593. eval libdir=`${SED} -n -e 's/^libdir=(.*)$/1/p' $lib`
  3594. test -z "$libdir" && 
  3595.   func_fatal_error "`$lib' is not a valid libtool archive"
  3596. newdlprefiles="$newdlprefiles $libdir/$name"
  3597. ;;
  3598.       esac
  3599.     done
  3600.     dlprefiles="$newdlprefiles"
  3601.   else
  3602.     newdlfiles=
  3603.     for lib in $dlfiles; do
  3604.       case $lib in
  3605. [\/]* | [A-Za-z]:[\/]*) abs="$lib" ;;
  3606. *) abs=`pwd`"/$lib" ;;
  3607.       esac
  3608.       newdlfiles="$newdlfiles $abs"
  3609.     done
  3610.     dlfiles="$newdlfiles"
  3611.     newdlprefiles=
  3612.     for lib in $dlprefiles; do
  3613.       case $lib in
  3614. [\/]* | [A-Za-z]:[\/]*) abs="$lib" ;;
  3615. *) abs=`pwd`"/$lib" ;;
  3616.       esac
  3617.       newdlprefiles="$newdlprefiles $abs"
  3618.     done
  3619.     dlprefiles="$newdlprefiles"
  3620.   fi
  3621.   $RM $output
  3622.   # place dlname in correct position for cygwin
  3623.   tdlname=$dlname
  3624.   case $host,$output,$installed,$module,$dlname in
  3625.     *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) tdlname=../bin/$dlname ;;
  3626.   esac
  3627.   $ECHO > $output "
  3628. # $outputname - a libtool library file
  3629. # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
  3630. #
  3631. # Please DO NOT delete this file!
  3632. # It is necessary for linking the library.
  3633. # The name that we can dlopen(3).
  3634. dlname='$tdlname'
  3635. # Names of this library.
  3636. library_names='$library_names'
  3637. # The name of the static archive.
  3638. old_library='$old_library'
  3639. # Linker flags that can not go in dependency_libs.
  3640. inherited_linker_flags='$new_inherited_linker_flags'
  3641. # Libraries that this one depends upon.
  3642. dependency_libs='$dependency_libs'
  3643. # Names of additional weak libraries provided by this library
  3644. weak_library_names='$weak_libs'
  3645. # Version information for $libname.
  3646. current=$current
  3647. age=$age
  3648. revision=$revision
  3649. # Is this an already installed library?
  3650. installed=$installed
  3651. # Should we warn about portability when linking against -modules?
  3652. shouldnotlink=$module
  3653. # Files to dlopen/dlpreopen
  3654. dlopen='$dlfiles'
  3655. dlpreopen='$dlprefiles'
  3656. # Directory that this library needs to be installed in:
  3657. libdir='$install_libdir'"
  3658.   if test "$installed" = no && test "$need_relink" = yes; then
  3659.     $ECHO >> $output "
  3660. relink_command="$relink_command""
  3661.   fi
  3662. done
  3663.       }
  3664.       # Do a symbolic link so that the libtool archive can be found in
  3665.       # LD_LIBRARY_PATH before the program is installed.
  3666.       func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?'
  3667.       ;;
  3668.     esac
  3669.     exit $EXIT_SUCCESS
  3670. }
  3671. { test "$mode" = link || test "$mode" = relink; } &&
  3672.     func_mode_link ${1+"$@"}
  3673. # func_mode_uninstall arg...
  3674. func_mode_uninstall ()
  3675. {
  3676.     $opt_debug
  3677.     RM="$nonopt"
  3678.     files=
  3679.     rmforce=
  3680.     exit_status=0
  3681.     # This variable tells wrapper scripts just to set variables rather
  3682.     # than running their programs.
  3683.     libtool_install_magic="$magic"
  3684.     for arg
  3685.     do
  3686.       case $arg in
  3687.       -f) RM="$RM $arg"; rmforce=yes ;;
  3688.       -*) RM="$RM $arg" ;;
  3689.       *) files="$files $arg" ;;
  3690.       esac
  3691.     done
  3692.     test -z "$RM" && 
  3693.       func_fatal_help "you must specify an RM program"
  3694.     rmdirs=
  3695.     origobjdir="$objdir"
  3696.     for file in $files; do
  3697.       func_dirname "$file" "" "."
  3698.       dir="$func_dirname_result"
  3699.       if test "X$dir" = X.; then
  3700. objdir="$origobjdir"
  3701.       else
  3702. objdir="$dir/$origobjdir"
  3703.       fi
  3704.       func_basename "$file"
  3705.       name="$func_basename_result"
  3706.       test "$mode" = uninstall && objdir="$dir"
  3707.       # Remember objdir for removal later, being careful to avoid duplicates
  3708.       if test "$mode" = clean; then
  3709. case " $rmdirs " in
  3710.   *" $objdir "*) ;;
  3711.   *) rmdirs="$rmdirs $objdir" ;;
  3712. esac
  3713.       fi
  3714.       # Don't error if the file doesn't exist and rm -f was used.
  3715.       if { test -L "$file"; } >/dev/null 2>&1 ||
  3716.  { test -h "$file"; } >/dev/null 2>&1 ||
  3717.  test -f "$file"; then
  3718. :
  3719.       elif test -d "$file"; then
  3720. exit_status=1
  3721. continue
  3722.       elif test "$rmforce" = yes; then
  3723. continue
  3724.       fi
  3725.       rmfiles="$file"
  3726.       case $name in
  3727.       *.la)
  3728. # Possibly a libtool archive, so verify it.
  3729. if func_lalib_p "$file"; then
  3730.   func_source $dir/$name
  3731.   # Delete the libtool libraries and symlinks.
  3732.   for n in $library_names; do
  3733.     rmfiles="$rmfiles $objdir/$n"
  3734.   done
  3735.   test -n "$old_library" && rmfiles="$rmfiles $objdir/$old_library"
  3736.   case "$mode" in
  3737.   clean)
  3738.     case "  $library_names " in
  3739.     # "  " in the beginning catches empty $dlname
  3740.     *" $dlname "*) ;;
  3741.     *) rmfiles="$rmfiles $objdir/$dlname" ;;
  3742.     esac
  3743.     test -n "$libdir" && rmfiles="$rmfiles $objdir/$name $objdir/${name}i"
  3744.     ;;
  3745.   uninstall)
  3746.     if test -n "$library_names"; then
  3747.       # Do each command in the postuninstall commands.
  3748.       func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1'
  3749.     fi
  3750.     if test -n "$old_library"; then
  3751.       # Do each command in the old_postuninstall commands.
  3752.       func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1'
  3753.     fi
  3754.     # FIXME: should reinstall the best remaining shared library.
  3755.     ;;
  3756.   esac
  3757. fi
  3758. ;;
  3759.       *.lo)
  3760. # Possibly a libtool object, so verify it.
  3761. if func_lalib_p "$file"; then
  3762.   # Read the .lo file
  3763.   func_source $dir/$name
  3764.   # Add PIC object to the list of files to remove.
  3765.   if test -n "$pic_object" &&
  3766.      test "$pic_object" != none; then
  3767.     rmfiles="$rmfiles $dir/$pic_object"
  3768.   fi
  3769.   # Add non-PIC object to the list of files to remove.
  3770.   if test -n "$non_pic_object" &&
  3771.      test "$non_pic_object" != none; then
  3772.     rmfiles="$rmfiles $dir/$non_pic_object"
  3773.   fi
  3774. fi
  3775. ;;
  3776.       *)
  3777. if test "$mode" = clean ; then
  3778.   noexename=$name
  3779.   case $file in
  3780.   *.exe)
  3781.     func_stripname '' '.exe' "$file"
  3782.     file=$func_stripname_result
  3783.     func_stripname '' '.exe' "$name"
  3784.     noexename=$func_stripname_result
  3785.     # $file with .exe has already been added to rmfiles,
  3786.     # add $file without .exe
  3787.     rmfiles="$rmfiles $file"
  3788.     ;;
  3789.   esac
  3790.   # Do a test to see if this is a libtool program.
  3791.   if func_ltwrapper_p "$file"; then
  3792.     if func_ltwrapper_executable_p "$file"; then
  3793.       func_ltwrapper_scriptname "$file"
  3794.       relink_command=
  3795.       func_source $func_ltwrapper_scriptname_result
  3796.       rmfiles="$rmfiles $func_ltwrapper_scriptname_result"
  3797.     else
  3798.       relink_command=
  3799.       func_source $dir/$noexename
  3800.     fi
  3801.     # note $name still contains .exe if it was in $file originally
  3802.     # as does the version of $file that was added into $rmfiles
  3803.     rmfiles="$rmfiles $objdir/$name $objdir/${name}S.${objext}"
  3804.     if test "$fast_install" = yes && test -n "$relink_command"; then
  3805.       rmfiles="$rmfiles $objdir/lt-$name"
  3806.     fi
  3807.     if test "X$noexename" != "X$name" ; then
  3808.       rmfiles="$rmfiles $objdir/lt-${noexename}.c"
  3809.     fi
  3810.   fi
  3811. fi
  3812. ;;
  3813.       esac
  3814.       func_show_eval "$RM $rmfiles" 'exit_status=1'
  3815.     done
  3816.     objdir="$origobjdir"
  3817.     # Try to remove the ${objdir}s in the directories where we deleted files
  3818.     for dir in $rmdirs; do
  3819.       if test -d "$dir"; then
  3820. func_show_eval "rmdir $dir >/dev/null 2>&1"
  3821.       fi
  3822.     done
  3823.     exit $exit_status
  3824. }
  3825. { test "$mode" = uninstall || test "$mode" = clean; } &&
  3826.     func_mode_uninstall ${1+"$@"}
  3827. test -z "$mode" && {
  3828.   help="$generic_help"
  3829.   func_fatal_help "you must specify a MODE"
  3830. }
  3831. test -z "$exec_cmd" && 
  3832.   func_fatal_help "invalid operation mode `$mode'"
  3833. if test -n "$exec_cmd"; then
  3834.   eval exec "$exec_cmd"
  3835.   exit $EXIT_FAILURE
  3836. fi
  3837. exit $exit_status
  3838. # The TAGs below are defined such that we never get into a situation
  3839. # in which we disable both kinds of libraries.  Given conflicting
  3840. # choices, we go for a static library, that is the most portable,
  3841. # since we can't tell whether shared libraries were disabled because
  3842. # the user asked for that or because the platform doesn't support
  3843. # them.  This is particularly important on AIX, because we don't
  3844. # support having both static and shared libraries enabled at the same
  3845. # time on that platform, so we default to a shared-only configuration.
  3846. # If a disable-shared tag is given, we'll fallback to a static-only
  3847. # configuration.  But we'll never go from static-only to shared-only.
  3848. # ### BEGIN LIBTOOL TAG CONFIG: disable-shared
  3849. build_libtool_libs=no
  3850. build_old_libs=yes
  3851. # ### END LIBTOOL TAG CONFIG: disable-shared
  3852. # ### BEGIN LIBTOOL TAG CONFIG: disable-static
  3853. build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac`
  3854. # ### END LIBTOOL TAG CONFIG: disable-static
  3855. # Local Variables:
  3856. # mode:shell-script
  3857. # sh-indentation:2
  3858. # End:
  3859. # vi:sw=2