ltmain.sh
上传用户:nini_0081
上传日期:2022-07-21
资源大小:2628k
文件大小:238k
源码类别:

多媒体编程

开发平台:

DOS

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