ltmain.sh
上传用户:tjescc
上传日期:2021-02-23
资源大小:419k
文件大小:136k
源码类别:

Telnet服务器

开发平台:

Unix_Linux

  1. # ltmain.sh - Provide generalized library-building support services.
  2. # NOTE: Changing this file will not affect anything until you rerun configure.
  3. #
  4. # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001
  5. # Free Software Foundation, Inc.
  6. # Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
  7. #
  8. # This program is free software; you can redistribute it and/or modify
  9. # it under the terms of the GNU General Public License as published by
  10. # the Free Software Foundation; either version 2 of the License, or
  11. # (at your option) any later version.
  12. #
  13. # This program is distributed in the hope that it will be useful, but
  14. # WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  16. # General Public License for more details.
  17. #
  18. # You should have received a copy of the GNU General Public License
  19. # along with this program; if not, write to the Free Software
  20. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  21. #
  22. # As a special exception to the GNU General Public License, if you
  23. # distribute this file as part of a program that contains a
  24. # configuration script generated by Autoconf, you may include it under
  25. # the same distribution terms that you use for the rest of that program.
  26. # Check that we have a working $echo.
  27. if test "X$1" = X--no-reexec; then
  28.   # Discard the --no-reexec flag, and continue.
  29.   shift
  30. elif test "X$1" = X--fallback-echo; then
  31.   # Avoid inline document here, it may be left over
  32.   :
  33. elif test "X`($echo 't') 2>/dev/null`" = 'Xt'; then
  34.   # Yippee, $echo works!
  35.   :
  36. else
  37.   # Restart under the correct shell, and then maybe $echo will work.
  38.   exec $SHELL "$0" --no-reexec ${1+"$@"}
  39. fi
  40. if test "X$1" = X--fallback-echo; then
  41.   # used as fallback echo
  42.   shift
  43.   cat <<EOF
  44. $*
  45. EOF
  46.   exit 0
  47. fi
  48. # The name of this program.
  49. progname=`$echo "$0" | sed 's%^.*/%%'`
  50. modename="$progname"
  51. # Constants.
  52. PROGRAM=ltmain.sh
  53. PACKAGE=libtool
  54. VERSION=1.4.2
  55. TIMESTAMP=" (1.922.2.53 2001/09/11 03:18:52)"
  56. default_mode=
  57. help="Try `$progname --help' for more information."
  58. magic="%%%MAGIC variable%%%"
  59. mkdir="mkdir"
  60. mv="mv -f"
  61. rm="rm -f"
  62. # Sed substitution that helps us do robust quoting.  It backslashifies
  63. # metacharacters that are still active within double-quoted strings.
  64. Xsed='sed -e 1s/^X//'
  65. sed_quote_subst='s/([\`\"$\\])/\1/g'
  66. SP2NL='tr 40 12'
  67. NL2SP='tr 1512 4040'
  68. # NLS nuisances.
  69. # Only set LANG and LC_ALL to C if already set.
  70. # These must not be set unconditionally because not all systems understand
  71. # e.g. LANG=C (notably SCO).
  72. # We save the old values to restore during execute mode.
  73. if test "${LC_ALL+set}" = set; then
  74.   save_LC_ALL="$LC_ALL"; LC_ALL=C; export LC_ALL
  75. fi
  76. if test "${LANG+set}" = set; then
  77.   save_LANG="$LANG"; LANG=C; export LANG
  78. fi
  79. # Make sure IFS has a sensible default
  80. : ${IFS="  "}
  81. if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then
  82.   echo "$modename: not configured to build any kind of library" 1>&2
  83.   echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2
  84.   exit 1
  85. fi
  86. # Global variables.
  87. mode=$default_mode
  88. nonopt=
  89. prev=
  90. prevopt=
  91. run=
  92. show="$echo"
  93. show_help=
  94. execute_dlfiles=
  95. lo2o="s/\.lo$/.${objext}/"
  96. o2lo="s/\.${objext}$/.lo/"
  97. # Parse our command line options once, thoroughly.
  98. while test $# -gt 0
  99. do
  100.   arg="$1"
  101.   shift
  102.   case $arg in
  103.   -*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;;
  104.   *) optarg= ;;
  105.   esac
  106.   # If the previous option needs an argument, assign it.
  107.   if test -n "$prev"; then
  108.     case $prev in
  109.     execute_dlfiles)
  110.       execute_dlfiles="$execute_dlfiles $arg"
  111.       ;;
  112.     *)
  113.       eval "$prev=$arg"
  114.       ;;
  115.     esac
  116.     prev=
  117.     prevopt=
  118.     continue
  119.   fi
  120.   # Have we seen a non-optional argument yet?
  121.   case $arg in
  122.   --help)
  123.     show_help=yes
  124.     ;;
  125.   --version)
  126.     echo "$PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP"
  127.     exit 0
  128.     ;;
  129.   --config)
  130.     sed -e '1,/^# ### BEGIN LIBTOOL CONFIG/d' -e '/^# ### END LIBTOOL CONFIG/,$d' $0
  131.     exit 0
  132.     ;;
  133.   --debug)
  134.     echo "$progname: enabling shell trace mode"
  135.     set -x
  136.     ;;
  137.   --dry-run | -n)
  138.     run=:
  139.     ;;
  140.   --features)
  141.     echo "host: $host"
  142.     if test "$build_libtool_libs" = yes; then
  143.       echo "enable shared libraries"
  144.     else
  145.       echo "disable shared libraries"
  146.     fi
  147.     if test "$build_old_libs" = yes; then
  148.       echo "enable static libraries"
  149.     else
  150.       echo "disable static libraries"
  151.     fi
  152.     exit 0
  153.     ;;
  154.   --finish) mode="finish" ;;
  155.   --mode) prevopt="--mode" prev=mode ;;
  156.   --mode=*) mode="$optarg" ;;
  157.   --quiet | --silent)
  158.     show=:
  159.     ;;
  160.   -dlopen)
  161.     prevopt="-dlopen"
  162.     prev=execute_dlfiles
  163.     ;;
  164.   -*)
  165.     $echo "$modename: unrecognized option `$arg'" 1>&2
  166.     $echo "$help" 1>&2
  167.     exit 1
  168.     ;;
  169.   *)
  170.     nonopt="$arg"
  171.     break
  172.     ;;
  173.   esac
  174. done
  175. if test -n "$prevopt"; then
  176.   $echo "$modename: option `$prevopt' requires an argument" 1>&2
  177.   $echo "$help" 1>&2
  178.   exit 1
  179. fi
  180. # If this variable is set in any of the actions, the command in it
  181. # will be execed at the end.  This prevents here-documents from being
  182. # left over by shells.
  183. exec_cmd=
  184. if test -z "$show_help"; then
  185.   # Infer the operation mode.
  186.   if test -z "$mode"; then
  187.     case $nonopt in
  188.     *cc | *++ | gcc* | *-gcc*)
  189.       mode=link
  190.       for arg
  191.       do
  192. case $arg in
  193. -c)
  194.    mode=compile
  195.    break
  196.    ;;
  197. esac
  198.       done
  199.       ;;
  200.     *db | *dbx | *strace | *truss)
  201.       mode=execute
  202.       ;;
  203.     *install*|cp|mv)
  204.       mode=install
  205.       ;;
  206.     *rm)
  207.       mode=uninstall
  208.       ;;
  209.     *)
  210.       # If we have no mode, but dlfiles were specified, then do execute mode.
  211.       test -n "$execute_dlfiles" && mode=execute
  212.       # Just use the default operation mode.
  213.       if test -z "$mode"; then
  214. if test -n "$nonopt"; then
  215.   $echo "$modename: warning: cannot infer operation mode from `$nonopt'" 1>&2
  216. else
  217.   $echo "$modename: warning: cannot infer operation mode without MODE-ARGS" 1>&2
  218. fi
  219.       fi
  220.       ;;
  221.     esac
  222.   fi
  223.   # Only execute mode is allowed to have -dlopen flags.
  224.   if test -n "$execute_dlfiles" && test "$mode" != execute; then
  225.     $echo "$modename: unrecognized option `-dlopen'" 1>&2
  226.     $echo "$help" 1>&2
  227.     exit 1
  228.   fi
  229.   # Change the help message to a mode-specific one.
  230.   generic_help="$help"
  231.   help="Try `$modename --help --mode=$mode' for more information."
  232.   # These modes are in order of execution frequency so that they run quickly.
  233.   case $mode in
  234.   # libtool compile mode
  235.   compile)
  236.     modename="$modename: compile"
  237.     # Get the compilation command and the source file.
  238.     base_compile=
  239.     prev=
  240.     lastarg=
  241.     srcfile="$nonopt"
  242.     suppress_output=
  243.     user_target=no
  244.     for arg
  245.     do
  246.       case $prev in
  247.       "") ;;
  248.       xcompiler)
  249. # Aesthetically quote the previous argument.
  250. prev=
  251. lastarg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
  252. case $arg in
  253. # Double-quote args containing other shell metacharacters.
  254. # Many Bourne shells cannot handle close brackets correctly
  255. # in scan sets, so we specify it separately.
  256. *[[~#^&*(){}|;<>?'  ]*|*]*|"")
  257.   arg=""$arg""
  258.   ;;
  259. esac
  260. # Add the previous argument to base_compile.
  261. if test -z "$base_compile"; then
  262.   base_compile="$lastarg"
  263. else
  264.   base_compile="$base_compile $lastarg"
  265. fi
  266. continue
  267. ;;
  268.       esac
  269.       # Accept any command-line options.
  270.       case $arg in
  271.       -o)
  272. if test "$user_target" != "no"; then
  273.   $echo "$modename: you cannot specify `-o' more than once" 1>&2
  274.   exit 1
  275. fi
  276. user_target=next
  277. ;;
  278.       -static)
  279. build_old_libs=yes
  280. continue
  281. ;;
  282.       -prefer-pic)
  283. pic_mode=yes
  284. continue
  285. ;;
  286.       -prefer-non-pic)
  287. pic_mode=no
  288. continue
  289. ;;
  290.       -Xcompiler)
  291. prev=xcompiler
  292. continue
  293. ;;
  294.       -Wc,*)
  295. args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"`
  296. lastarg=
  297. save_ifs="$IFS"; IFS=','
  298. for arg in $args; do
  299.   IFS="$save_ifs"
  300.   # Double-quote args containing other shell metacharacters.
  301.   # Many Bourne shells cannot handle close brackets correctly
  302.   # in scan sets, so we specify it separately.
  303.   case $arg in
  304.     *[[~#^&*(){}|;<>?'  ]*|*]*|"")
  305.     arg=""$arg""
  306.     ;;
  307.   esac
  308.   lastarg="$lastarg $arg"
  309. done
  310. IFS="$save_ifs"
  311. lastarg=`$echo "X$lastarg" | $Xsed -e "s/^ //"`
  312. # Add the arguments to base_compile.
  313. if test -z "$base_compile"; then
  314.   base_compile="$lastarg"
  315. else
  316.   base_compile="$base_compile $lastarg"
  317. fi
  318. continue
  319. ;;
  320.       esac
  321.       case $user_target in
  322.       next)
  323. # The next one is the -o target name
  324. user_target=yes
  325. continue
  326. ;;
  327.       yes)
  328. # We got the output file
  329. user_target=set
  330. libobj="$arg"
  331. continue
  332. ;;
  333.       esac
  334.       # Accept the current argument as the source file.
  335.       lastarg="$srcfile"
  336.       srcfile="$arg"
  337.       # Aesthetically quote the previous argument.
  338.       # Backslashify any backslashes, double quotes, and dollar signs.
  339.       # These are the only characters that are still specially
  340.       # interpreted inside of double-quoted scrings.
  341.       lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"`
  342.       # Double-quote args containing other shell metacharacters.
  343.       # Many Bourne shells cannot handle close brackets correctly
  344.       # in scan sets, so we specify it separately.
  345.       case $lastarg in
  346.       *[[~#^&*(){}|;<>?'  ]*|*]*|"")
  347. lastarg=""$lastarg""
  348. ;;
  349.       esac
  350.       # Add the previous argument to base_compile.
  351.       if test -z "$base_compile"; then
  352. base_compile="$lastarg"
  353.       else
  354. base_compile="$base_compile $lastarg"
  355.       fi
  356.     done
  357.     case $user_target in
  358.     set)
  359.       ;;
  360.     no)
  361.       # Get the name of the library object.
  362.       libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'`
  363.       ;;
  364.     *)
  365.       $echo "$modename: you must specify a target with `-o'" 1>&2
  366.       exit 1
  367.       ;;
  368.     esac
  369.     # Recognize several different file suffixes.
  370.     # If the user specifies -o file.o, it is replaced with file.lo
  371.     xform='[cCFSfmso]'
  372.     case $libobj in
  373.     *.ada) xform=ada ;;
  374.     *.adb) xform=adb ;;
  375.     *.ads) xform=ads ;;
  376.     *.asm) xform=asm ;;
  377.     *.c++) xform=c++ ;;
  378.     *.cc) xform=cc ;;
  379.     *.cpp) xform=cpp ;;
  380.     *.cxx) xform=cxx ;;
  381.     *.f90) xform=f90 ;;
  382.     *.for) xform=for ;;
  383.     esac
  384.     libobj=`$echo "X$libobj" | $Xsed -e "s/.$xform$/.lo/"`
  385.     case $libobj in
  386.     *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;;
  387.     *)
  388.       $echo "$modename: cannot determine name of library object from `$libobj'" 1>&2
  389.       exit 1
  390.       ;;
  391.     esac
  392.     if test -z "$base_compile"; then
  393.       $echo "$modename: you must specify a compilation command" 1>&2
  394.       $echo "$help" 1>&2
  395.       exit 1
  396.     fi
  397.     # Delete any leftover library objects.
  398.     if test "$build_old_libs" = yes; then
  399.       removelist="$obj $libobj"
  400.     else
  401.       removelist="$libobj"
  402.     fi
  403.     $run $rm $removelist
  404.     trap "$run $rm $removelist; exit 1" 1 2 15
  405.     # On Cygwin there's no "real" PIC flag so we must build both object types
  406.     case $host_os in
  407.     cygwin* | mingw* | pw32* | os2*)
  408.       pic_mode=default
  409.       ;;
  410.     esac
  411.     if test $pic_mode = no && test "$deplibs_check_method" != pass_all; then
  412.       # non-PIC code in shared libraries is not supported
  413.       pic_mode=default
  414.     fi
  415.     # Calculate the filename of the output object if compiler does
  416.     # not support -o with -c
  417.     if test "$compiler_c_o" = no; then
  418.       output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%.[^.]*$%%'`.${objext}
  419.       lockfile="$output_obj.lock"
  420.       removelist="$removelist $output_obj $lockfile"
  421.       trap "$run $rm $removelist; exit 1" 1 2 15
  422.     else
  423.       need_locks=no
  424.       lockfile=
  425.     fi
  426.     # Lock this critical section if it is needed
  427.     # We use this script file to make the link, it avoids creating a new file
  428.     if test "$need_locks" = yes; then
  429.       until $run ln "$0" "$lockfile" 2>/dev/null; do
  430. $show "Waiting for $lockfile to be removed"
  431. sleep 2
  432.       done
  433.     elif test "$need_locks" = warn; then
  434.       if test -f "$lockfile"; then
  435. echo "
  436. *** ERROR, $lockfile exists and contains:
  437. `cat $lockfile 2>/dev/null`
  438. This indicates that another process is trying to use the same
  439. temporary object file, and libtool could not work around it because
  440. your compiler does not support `-c' and `-o' together.  If you
  441. repeat this compilation, it may succeed, by chance, but you had better
  442. avoid parallel builds (make -j) in this platform, or get a better
  443. compiler."
  444. $run $rm $removelist
  445. exit 1
  446.       fi
  447.       echo $srcfile > "$lockfile"
  448.     fi
  449.     if test -n "$fix_srcfile_path"; then
  450.       eval srcfile="$fix_srcfile_path"
  451.     fi
  452.     # Only build a PIC object if we are building libtool libraries.
  453.     if test "$build_libtool_libs" = yes; then
  454.       # Without this assignment, base_compile gets emptied.
  455.       fbsd_hideous_sh_bug=$base_compile
  456.       if test "$pic_mode" != no; then
  457. # All platforms use -DPIC, to notify preprocessed assembler code.
  458. command="$base_compile $srcfile $pic_flag -DPIC"
  459.       else
  460. # Don't build PIC code
  461. command="$base_compile $srcfile"
  462.       fi
  463.       if test "$build_old_libs" = yes; then
  464. lo_libobj="$libobj"
  465. dir=`$echo "X$libobj" | $Xsed -e 's%/[^/]*$%%'`
  466. if test "X$dir" = "X$libobj"; then
  467.   dir="$objdir"
  468. else
  469.   dir="$dir/$objdir"
  470. fi
  471. libobj="$dir/"`$echo "X$libobj" | $Xsed -e 's%^.*/%%'`
  472. if test -d "$dir"; then
  473.   $show "$rm $libobj"
  474.   $run $rm $libobj
  475. else
  476.   $show "$mkdir $dir"
  477.   $run $mkdir $dir
  478.   status=$?
  479.   if test $status -ne 0 && test ! -d $dir; then
  480.     exit $status
  481.   fi
  482. fi
  483.       fi
  484.       if test "$compiler_o_lo" = yes; then
  485. output_obj="$libobj"
  486. command="$command -o $output_obj"
  487.       elif test "$compiler_c_o" = yes; then
  488. output_obj="$obj"
  489. command="$command -o $output_obj"
  490.       fi
  491.       $run $rm "$output_obj"
  492.       $show "$command"
  493.       if $run eval "$command"; then :
  494.       else
  495. test -n "$output_obj" && $run $rm $removelist
  496. exit 1
  497.       fi
  498.       if test "$need_locks" = warn &&
  499.  test x"`cat $lockfile 2>/dev/null`" != x"$srcfile"; then
  500. echo "
  501. *** ERROR, $lockfile contains:
  502. `cat $lockfile 2>/dev/null`
  503. but it should contain:
  504. $srcfile
  505. This indicates that another process is trying to use the same
  506. temporary object file, and libtool could not work around it because
  507. your compiler does not support `-c' and `-o' together.  If you
  508. repeat this compilation, it may succeed, by chance, but you had better
  509. avoid parallel builds (make -j) in this platform, or get a better
  510. compiler."
  511. $run $rm $removelist
  512. exit 1
  513.       fi
  514.       # Just move the object if needed, then go on to compile the next one
  515.       if test x"$output_obj" != x"$libobj"; then
  516. $show "$mv $output_obj $libobj"
  517. if $run $mv $output_obj $libobj; then :
  518. else
  519.   error=$?
  520.   $run $rm $removelist
  521.   exit $error
  522. fi
  523.       fi
  524.       # If we have no pic_flag, then copy the object into place and finish.
  525.       if (test -z "$pic_flag" || test "$pic_mode" != default) &&
  526.  test "$build_old_libs" = yes; then
  527. # Rename the .lo from within objdir to obj
  528. if test -f $obj; then
  529.   $show $rm $obj
  530.   $run $rm $obj
  531. fi
  532. $show "$mv $libobj $obj"
  533. if $run $mv $libobj $obj; then :
  534. else
  535.   error=$?
  536.   $run $rm $removelist
  537.   exit $error
  538. fi
  539. xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`
  540. if test "X$xdir" = "X$obj"; then
  541.   xdir="."
  542. else
  543.   xdir="$xdir"
  544. fi
  545. baseobj=`$echo "X$obj" | $Xsed -e "s%.*/%%"`
  546. libobj=`$echo "X$baseobj" | $Xsed -e "$o2lo"`
  547. # Now arrange that obj and lo_libobj become the same file
  548. $show "(cd $xdir && $LN_S $baseobj $libobj)"
  549. if $run eval '(cd $xdir && $LN_S $baseobj $libobj)'; then
  550.   # Unlock the critical section if it was locked
  551.   if test "$need_locks" != no; then
  552.     $run $rm "$lockfile"
  553.   fi
  554.   exit 0
  555. else
  556.   error=$?
  557.   $run $rm $removelist
  558.   exit $error
  559. fi
  560.       fi
  561.       # Allow error messages only from the first compilation.
  562.       suppress_output=' >/dev/null 2>&1'
  563.     fi
  564.     # Only build a position-dependent object if we build old libraries.
  565.     if test "$build_old_libs" = yes; then
  566.       if test "$pic_mode" != yes; then
  567. # Don't build PIC code
  568. command="$base_compile $srcfile"
  569.       else
  570. # All platforms use -DPIC, to notify preprocessed assembler code.
  571. command="$base_compile $srcfile $pic_flag -DPIC"
  572.       fi
  573.       if test "$compiler_c_o" = yes; then
  574. command="$command -o $obj"
  575. output_obj="$obj"
  576.       fi
  577.       # Suppress compiler output if we already did a PIC compilation.
  578.       command="$command$suppress_output"
  579.       $run $rm "$output_obj"
  580.       $show "$command"
  581.       if $run eval "$command"; then :
  582.       else
  583. $run $rm $removelist
  584. exit 1
  585.       fi
  586.       if test "$need_locks" = warn &&
  587.  test x"`cat $lockfile 2>/dev/null`" != x"$srcfile"; then
  588. echo "
  589. *** ERROR, $lockfile contains:
  590. `cat $lockfile 2>/dev/null`
  591. but it should contain:
  592. $srcfile
  593. This indicates that another process is trying to use the same
  594. temporary object file, and libtool could not work around it because
  595. your compiler does not support `-c' and `-o' together.  If you
  596. repeat this compilation, it may succeed, by chance, but you had better
  597. avoid parallel builds (make -j) in this platform, or get a better
  598. compiler."
  599. $run $rm $removelist
  600. exit 1
  601.       fi
  602.       # Just move the object if needed
  603.       if test x"$output_obj" != x"$obj"; then
  604. $show "$mv $output_obj $obj"
  605. if $run $mv $output_obj $obj; then :
  606. else
  607.   error=$?
  608.   $run $rm $removelist
  609.   exit $error
  610. fi
  611.       fi
  612.       # Create an invalid libtool object if no PIC, so that we do not
  613.       # accidentally link it into a program.
  614.       if test "$build_libtool_libs" != yes; then
  615. $show "echo timestamp > $libobj"
  616. $run eval "echo timestamp > $libobj" || exit $?
  617.       else
  618. # Move the .lo from within objdir
  619. $show "$mv $libobj $lo_libobj"
  620. if $run $mv $libobj $lo_libobj; then :
  621. else
  622.   error=$?
  623.   $run $rm $removelist
  624.   exit $error
  625. fi
  626.       fi
  627.     fi
  628.     # Unlock the critical section if it was locked
  629.     if test "$need_locks" != no; then
  630.       $run $rm "$lockfile"
  631.     fi
  632.     exit 0
  633.     ;;
  634.   # libtool link mode
  635.   link | relink)
  636.     modename="$modename: link"
  637.     case $host in
  638.     *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
  639.       # It is impossible to link a dll without this setting, and
  640.       # we shouldn't force the makefile maintainer to figure out
  641.       # which system we are compiling for in order to pass an extra
  642.       # flag for every libtool invokation.
  643.       # allow_undefined=no
  644.       # FIXME: Unfortunately, there are problems with the above when trying
  645.       # to make a dll which has undefined symbols, in which case not
  646.       # even a static library is built.  For now, we need to specify
  647.       # -no-undefined on the libtool link line when we can be certain
  648.       # that all symbols are satisfied, otherwise we get a static library.
  649.       allow_undefined=yes
  650.       ;;
  651.     *)
  652.       allow_undefined=yes
  653.       ;;
  654.     esac
  655.     libtool_args="$nonopt"
  656.     compile_command="$nonopt"
  657.     finalize_command="$nonopt"
  658.     compile_rpath=
  659.     finalize_rpath=
  660.     compile_shlibpath=
  661.     finalize_shlibpath=
  662.     convenience=
  663.     old_convenience=
  664.     deplibs=
  665.     old_deplibs=
  666.     compiler_flags=
  667.     linker_flags=
  668.     dllsearchpath=
  669.     lib_search_path=`pwd`
  670.     avoid_version=no
  671.     dlfiles=
  672.     dlprefiles=
  673.     dlself=no
  674.     export_dynamic=no
  675.     export_symbols=
  676.     export_symbols_regex=
  677.     generated=
  678.     libobjs=
  679.     ltlibs=
  680.     module=no
  681.     no_install=no
  682.     objs=
  683.     prefer_static_libs=no
  684.     preload=no
  685.     prev=
  686.     prevarg=
  687.     release=
  688.     rpath=
  689.     xrpath=
  690.     perm_rpath=
  691.     temp_rpath=
  692.     thread_safe=no
  693.     vinfo=
  694.     # We need to know -static, to get the right output filenames.
  695.     for arg
  696.     do
  697.       case $arg in
  698.       -all-static | -static)
  699. if test "X$arg" = "X-all-static"; then
  700.   if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then
  701.     $echo "$modename: warning: complete static linking is impossible in this configuration" 1>&2
  702.   fi
  703.   if test -n "$link_static_flag"; then
  704.     dlopen_self=$dlopen_self_static
  705.   fi
  706. else
  707.   if test -z "$pic_flag" && test -n "$link_static_flag"; then
  708.     dlopen_self=$dlopen_self_static
  709.   fi
  710. fi
  711. build_libtool_libs=no
  712. build_old_libs=yes
  713. prefer_static_libs=yes
  714. break
  715. ;;
  716.       esac
  717.     done
  718.     # See if our shared archives depend on static archives.
  719.     test -n "$old_archive_from_new_cmds" && build_old_libs=yes
  720.     # Go through the arguments, transforming them on the way.
  721.     while test $# -gt 0; do
  722.       arg="$1"
  723.       shift
  724.       case $arg in
  725.       *[[~#^&*(){}|;<>?'  ]*|*]*|"")
  726. qarg="`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`" ### testsuite: skip nested quoting test
  727. ;;
  728.       *) qarg=$arg ;;
  729.       esac
  730.       libtool_args="$libtool_args $qarg"
  731.       # If the previous option needs an argument, assign it.
  732.       if test -n "$prev"; then
  733. case $prev in
  734. output)
  735.   compile_command="$compile_command @OUTPUT@"
  736.   finalize_command="$finalize_command @OUTPUT@"
  737.   ;;
  738. esac
  739. case $prev in
  740. dlfiles|dlprefiles)
  741.   if test "$preload" = no; then
  742.     # Add the symbol object into the linking commands.
  743.     compile_command="$compile_command @SYMFILE@"
  744.     finalize_command="$finalize_command @SYMFILE@"
  745.     preload=yes
  746.   fi
  747.   case $arg in
  748.   *.la | *.lo) ;;  # We handle these cases below.
  749.   force)
  750.     if test "$dlself" = no; then
  751.       dlself=needless
  752.       export_dynamic=yes
  753.     fi
  754.     prev=
  755.     continue
  756.     ;;
  757.   self)
  758.     if test "$prev" = dlprefiles; then
  759.       dlself=yes
  760.     elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then
  761.       dlself=yes
  762.     else
  763.       dlself=needless
  764.       export_dynamic=yes
  765.     fi
  766.     prev=
  767.     continue
  768.     ;;
  769.   *)
  770.     if test "$prev" = dlfiles; then
  771.       dlfiles="$dlfiles $arg"
  772.     else
  773.       dlprefiles="$dlprefiles $arg"
  774.     fi
  775.     prev=
  776.     continue
  777.     ;;
  778.   esac
  779.   ;;
  780. expsyms)
  781.   export_symbols="$arg"
  782.   if test ! -f "$arg"; then
  783.     $echo "$modename: symbol file `$arg' does not exist"
  784.     exit 1
  785.   fi
  786.   prev=
  787.   continue
  788.   ;;
  789. expsyms_regex)
  790.   export_symbols_regex="$arg"
  791.   prev=
  792.   continue
  793.   ;;
  794. release)
  795.   release="-$arg"
  796.   prev=
  797.   continue
  798.   ;;
  799. rpath | xrpath)
  800.   # We need an absolute path.
  801.   case $arg in
  802.   [\/]* | [A-Za-z]:[\/]*) ;;
  803.   *)
  804.     $echo "$modename: only absolute run-paths are allowed" 1>&2
  805.     exit 1
  806.     ;;
  807.   esac
  808.   if test "$prev" = rpath; then
  809.     case "$rpath " in
  810.     *" $arg "*) ;;
  811.     *) rpath="$rpath $arg" ;;
  812.     esac
  813.   else
  814.     case "$xrpath " in
  815.     *" $arg "*) ;;
  816.     *) xrpath="$xrpath $arg" ;;
  817.     esac
  818.   fi
  819.   prev=
  820.   continue
  821.   ;;
  822. xcompiler)
  823.   compiler_flags="$compiler_flags $qarg"
  824.   prev=
  825.   compile_command="$compile_command $qarg"
  826.   finalize_command="$finalize_command $qarg"
  827.   continue
  828.   ;;
  829. xlinker)
  830.   linker_flags="$linker_flags $qarg"
  831.   compiler_flags="$compiler_flags $wl$qarg"
  832.   prev=
  833.   compile_command="$compile_command $wl$qarg"
  834.   finalize_command="$finalize_command $wl$qarg"
  835.   continue
  836.   ;;
  837. *)
  838.   eval "$prev="$arg""
  839.   prev=
  840.   continue
  841.   ;;
  842. esac
  843.       fi # test -n $prev
  844.       prevarg="$arg"
  845.       case $arg in
  846.       -all-static)
  847. if test -n "$link_static_flag"; then
  848.   compile_command="$compile_command $link_static_flag"
  849.   finalize_command="$finalize_command $link_static_flag"
  850. fi
  851. continue
  852. ;;
  853.       -allow-undefined)
  854. # FIXME: remove this flag sometime in the future.
  855. $echo "$modename: `-allow-undefined' is deprecated because it is the default" 1>&2
  856. continue
  857. ;;
  858.       -avoid-version)
  859. avoid_version=yes
  860. continue
  861. ;;
  862.       -dlopen)
  863. prev=dlfiles
  864. continue
  865. ;;
  866.       -dlpreopen)
  867. prev=dlprefiles
  868. continue
  869. ;;
  870.       -export-dynamic)
  871. export_dynamic=yes
  872. continue
  873. ;;
  874.       -export-symbols | -export-symbols-regex)
  875. if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
  876.   $echo "$modename: more than one -exported-symbols argument is not allowed"
  877.   exit 1
  878. fi
  879. if test "X$arg" = "X-export-symbols"; then
  880.   prev=expsyms
  881. else
  882.   prev=expsyms_regex
  883. fi
  884. continue
  885. ;;
  886.       # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:*
  887.       # so, if we see these flags be careful not to treat them like -L
  888.       -L[A-Z][A-Z]*:*)
  889. case $with_gcc/$host in
  890. no/*-*-irix*)
  891.   compile_command="$compile_command $arg"
  892.   finalize_command="$finalize_command $arg"
  893.   ;;
  894. esac
  895. continue
  896. ;;
  897.       -L*)
  898. dir=`$echo "X$arg" | $Xsed -e 's/^-L//'`
  899. # We need an absolute path.
  900. case $dir in
  901. [\/]* | [A-Za-z]:[\/]*) ;;
  902. *)
  903.   absdir=`cd "$dir" && pwd`
  904.   if test -z "$absdir"; then
  905.     $echo "$modename: cannot determine absolute directory name of `$dir'" 1>&2
  906.     exit 1
  907.   fi
  908.   dir="$absdir"
  909.   ;;
  910. esac
  911. case "$deplibs " in
  912. *" -L$dir "*) ;;
  913. *)
  914.   deplibs="$deplibs -L$dir"
  915.   lib_search_path="$lib_search_path $dir"
  916.   ;;
  917. esac
  918. case $host in
  919. *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
  920.   case :$dllsearchpath: in
  921.   *":$dir:"*) ;;
  922.   *) dllsearchpath="$dllsearchpath:$dir";;
  923.   esac
  924.   ;;
  925. esac
  926. continue
  927. ;;
  928.       -l*)
  929. if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then
  930.   case $host in
  931.   *-*-cygwin* | *-*-pw32* | *-*-beos*)
  932.     # These systems don't actually have a C or math library (as such)
  933.     continue
  934.     ;;
  935.   *-*-mingw* | *-*-os2*)
  936.     # These systems don't actually have a C library (as such)
  937.     test "X$arg" = "X-lc" && continue
  938.     ;;
  939.   *-*-openbsd*)
  940.     # Do not include libc due to us having libc/libc_r.
  941.     test "X$arg" = "X-lc" && continue
  942.     ;;
  943.   esac
  944.  elif test "X$arg" = "X-lc_r"; then
  945.   case $host in
  946.   *-*-openbsd*)
  947.     # Do not include libc_r directly, use -pthread flag.
  948.     continue
  949.     ;;
  950.   esac
  951. fi
  952. deplibs="$deplibs $arg"
  953. continue
  954. ;;
  955.       -module)
  956. module=yes
  957. continue
  958. ;;
  959.       -no-fast-install)
  960. fast_install=no
  961. continue
  962. ;;
  963.       -no-install)
  964. case $host in
  965. *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
  966.   # The PATH hackery in wrapper scripts is required on Windows
  967.   # in order for the loader to find any dlls it needs.
  968.   $echo "$modename: warning: `-no-install' is ignored for $host" 1>&2
  969.   $echo "$modename: warning: assuming `-no-fast-install' instead" 1>&2
  970.   fast_install=no
  971.   ;;
  972. *) no_install=yes ;;
  973. esac
  974. continue
  975. ;;
  976.       -no-undefined)
  977. allow_undefined=no
  978. continue
  979. ;;
  980.       -o) prev=output ;;
  981.       -release)
  982. prev=release
  983. continue
  984. ;;
  985.       -rpath)
  986. prev=rpath
  987. continue
  988. ;;
  989.       -R)
  990. prev=xrpath
  991. continue
  992. ;;
  993.       -R*)
  994. dir=`$echo "X$arg" | $Xsed -e 's/^-R//'`
  995. # We need an absolute path.
  996. case $dir in
  997. [\/]* | [A-Za-z]:[\/]*) ;;
  998. *)
  999.   $echo "$modename: only absolute run-paths are allowed" 1>&2
  1000.   exit 1
  1001.   ;;
  1002. esac
  1003. case "$xrpath " in
  1004. *" $dir "*) ;;
  1005. *) xrpath="$xrpath $dir" ;;
  1006. esac
  1007. continue
  1008. ;;
  1009.       -static)
  1010. # The effects of -static are defined in a previous loop.
  1011. # We used to do the same as -all-static on platforms that
  1012. # didn't have a PIC flag, but the assumption that the effects
  1013. # would be equivalent was wrong.  It would break on at least
  1014. # Digital Unix and AIX.
  1015. continue
  1016. ;;
  1017.       -thread-safe)
  1018. thread_safe=yes
  1019. continue
  1020. ;;
  1021.       -version-info)
  1022. prev=vinfo
  1023. continue
  1024. ;;
  1025.       -Wc,*)
  1026. args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wc,//'`
  1027. arg=
  1028. save_ifs="$IFS"; IFS=','
  1029. for flag in $args; do
  1030.   IFS="$save_ifs"
  1031.   case $flag in
  1032.     *[[~#^&*(){}|;<>?'  ]*|*]*|"")
  1033.     flag=""$flag""
  1034.     ;;
  1035.   esac
  1036.   arg="$arg $wl$flag"
  1037.   compiler_flags="$compiler_flags $flag"
  1038. done
  1039. IFS="$save_ifs"
  1040. arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
  1041. ;;
  1042.       -Wl,*)
  1043. args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wl,//'`
  1044. arg=
  1045. save_ifs="$IFS"; IFS=','
  1046. for flag in $args; do
  1047.   IFS="$save_ifs"
  1048.   case $flag in
  1049.     *[[~#^&*(){}|;<>?'  ]*|*]*|"")
  1050.     flag=""$flag""
  1051.     ;;
  1052.   esac
  1053.   arg="$arg $wl$flag"
  1054.   compiler_flags="$compiler_flags $wl$flag"
  1055.   linker_flags="$linker_flags $flag"
  1056. done
  1057. IFS="$save_ifs"
  1058. arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
  1059. ;;
  1060.       -Xcompiler)
  1061. prev=xcompiler
  1062. continue
  1063. ;;
  1064.       -Xlinker)
  1065. prev=xlinker
  1066. continue
  1067. ;;
  1068.       # Some other compiler flag.
  1069.       -* | +*)
  1070. # Unknown arguments in both finalize_command and compile_command need
  1071. # to be aesthetically quoted because they are evaled later.
  1072. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
  1073. case $arg in
  1074. *[[~#^&*(){}|;<>?'  ]*|*]*|"")
  1075.   arg=""$arg""
  1076.   ;;
  1077. esac
  1078. ;;
  1079.       *.lo | *.$objext)
  1080. # A library or standard object.
  1081. if test "$prev" = dlfiles; then
  1082.   # This file was specified with -dlopen.
  1083.   if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
  1084.     dlfiles="$dlfiles $arg"
  1085.     prev=
  1086.     continue
  1087.   else
  1088.     # If libtool objects are unsupported, then we need to preload.
  1089.     prev=dlprefiles
  1090.   fi
  1091. fi
  1092. if test "$prev" = dlprefiles; then
  1093.   # Preload the old-style object.
  1094.   dlprefiles="$dlprefiles "`$echo "X$arg" | $Xsed -e "$lo2o"`
  1095.   prev=
  1096. else
  1097.   case $arg in
  1098.   *.lo) libobjs="$libobjs $arg" ;;
  1099.   *) objs="$objs $arg" ;;
  1100.   esac
  1101. fi
  1102. ;;
  1103.       *.$libext)
  1104. # An archive.
  1105. deplibs="$deplibs $arg"
  1106. old_deplibs="$old_deplibs $arg"
  1107. continue
  1108. ;;
  1109.       *.la)
  1110. # A libtool-controlled library.
  1111. if test "$prev" = dlfiles; then
  1112.   # This library was specified with -dlopen.
  1113.   dlfiles="$dlfiles $arg"
  1114.   prev=
  1115. elif test "$prev" = dlprefiles; then
  1116.   # The library was specified with -dlpreopen.
  1117.   dlprefiles="$dlprefiles $arg"
  1118.   prev=
  1119. else
  1120.   deplibs="$deplibs $arg"
  1121. fi
  1122. continue
  1123. ;;
  1124.       # Some other compiler argument.
  1125.       *)
  1126. # Unknown arguments in both finalize_command and compile_command need
  1127. # to be aesthetically quoted because they are evaled later.
  1128. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
  1129. case $arg in
  1130. *[[~#^&*(){}|;<>?'  ]*|*]*|"")
  1131.   arg=""$arg""
  1132.   ;;
  1133. esac
  1134. ;;
  1135.       esac # arg
  1136.       # Now actually substitute the argument into the commands.
  1137.       if test -n "$arg"; then
  1138. compile_command="$compile_command $arg"
  1139. finalize_command="$finalize_command $arg"
  1140.       fi
  1141.     done # argument parsing loop
  1142.     if test -n "$prev"; then
  1143.       $echo "$modename: the `$prevarg' option requires an argument" 1>&2
  1144.       $echo "$help" 1>&2
  1145.       exit 1
  1146.     fi
  1147.     if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then
  1148.       eval arg="$export_dynamic_flag_spec"
  1149.       compile_command="$compile_command $arg"
  1150.       finalize_command="$finalize_command $arg"
  1151.     fi
  1152.     # calculate the name of the file, without its directory
  1153.     outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'`
  1154.     libobjs_save="$libobjs"
  1155.     if test -n "$shlibpath_var"; then
  1156.       # get the directories listed in $shlibpath_var
  1157.       eval shlib_search_path=`$echo "X${$shlibpath_var}" | $Xsed -e 's/:/ /g'`
  1158.     else
  1159.       shlib_search_path=
  1160.     fi
  1161.     eval sys_lib_search_path="$sys_lib_search_path_spec"
  1162.     eval sys_lib_dlsearch_path="$sys_lib_dlsearch_path_spec"
  1163.     output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'`
  1164.     if test "X$output_objdir" = "X$output"; then
  1165.       output_objdir="$objdir"
  1166.     else
  1167.       output_objdir="$output_objdir/$objdir"
  1168.     fi
  1169.     # Create the object directory.
  1170.     if test ! -d $output_objdir; then
  1171.       $show "$mkdir $output_objdir"
  1172.       $run $mkdir $output_objdir
  1173.       status=$?
  1174.       if test $status -ne 0 && test ! -d $output_objdir; then
  1175. exit $status
  1176.       fi
  1177.     fi
  1178.     # Determine the type of output
  1179.     case $output in
  1180.     "")
  1181.       $echo "$modename: you must specify an output file" 1>&2
  1182.       $echo "$help" 1>&2
  1183.       exit 1
  1184.       ;;
  1185.     *.$libext) linkmode=oldlib ;;
  1186.     *.lo | *.$objext) linkmode=obj ;;
  1187.     *.la) linkmode=lib ;;
  1188.     *) linkmode=prog ;; # Anything else should be a program.
  1189.     esac
  1190.     specialdeplibs=
  1191.     libs=
  1192.     # Find all interdependent deplibs by searching for libraries
  1193.     # that are linked more than once (e.g. -la -lb -la)
  1194.     for deplib in $deplibs; do
  1195.       case "$libs " in
  1196.       *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
  1197.       esac
  1198.       libs="$libs $deplib"
  1199.     done
  1200.     deplibs=
  1201.     newdependency_libs=
  1202.     newlib_search_path=
  1203.     need_relink=no # whether we're linking any uninstalled libtool libraries
  1204.     notinst_deplibs= # not-installed libtool libraries
  1205.     notinst_path= # paths that contain not-installed libtool libraries
  1206.     case $linkmode in
  1207.     lib)
  1208. passes="conv link"
  1209. for file in $dlfiles $dlprefiles; do
  1210.   case $file in
  1211.   *.la) ;;
  1212.   *)
  1213.     $echo "$modename: libraries can `-dlopen' only libtool libraries: $file" 1>&2
  1214.     exit 1
  1215.     ;;
  1216.   esac
  1217. done
  1218. ;;
  1219.     prog)
  1220. compile_deplibs=
  1221. finalize_deplibs=
  1222. alldeplibs=no
  1223. newdlfiles=
  1224. newdlprefiles=
  1225. passes="conv scan dlopen dlpreopen link"
  1226. ;;
  1227.     *)  passes="conv"
  1228. ;;
  1229.     esac
  1230.     for pass in $passes; do
  1231.       if test $linkmode = prog; then
  1232. # Determine which files to process
  1233. case $pass in
  1234. dlopen)
  1235.   libs="$dlfiles"
  1236.   save_deplibs="$deplibs" # Collect dlpreopened libraries
  1237.   deplibs=
  1238.   ;;
  1239. dlpreopen) libs="$dlprefiles" ;;
  1240. link) libs="$deplibs %DEPLIBS% $dependency_libs" ;;
  1241. esac
  1242.       fi
  1243.       for deplib in $libs; do
  1244. lib=
  1245. found=no
  1246. case $deplib in
  1247. -l*)
  1248.   if test $linkmode = oldlib && test $linkmode = obj; then
  1249.     $echo "$modename: warning: `-l' is ignored for archives/objects: $deplib" 1>&2
  1250.     continue
  1251.   fi
  1252.   if test $pass = conv; then
  1253.     deplibs="$deplib $deplibs"
  1254.     continue
  1255.   fi
  1256.   name=`$echo "X$deplib" | $Xsed -e 's/^-l//'`
  1257.   for searchdir in $newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path; do
  1258.     # Search the libtool library
  1259.     lib="$searchdir/lib${name}.la"
  1260.     if test -f "$lib"; then
  1261.       found=yes
  1262.       break
  1263.     fi
  1264.   done
  1265.   if test "$found" != yes; then
  1266.     # deplib doesn't seem to be a libtool library
  1267.     if test "$linkmode,$pass" = "prog,link"; then
  1268.       compile_deplibs="$deplib $compile_deplibs"
  1269.       finalize_deplibs="$deplib $finalize_deplibs"
  1270.     else
  1271.       deplibs="$deplib $deplibs"
  1272.       test $linkmode = lib && newdependency_libs="$deplib $newdependency_libs"
  1273.     fi
  1274.     continue
  1275.   fi
  1276.   ;; # -l
  1277. -L*)
  1278.   case $linkmode in
  1279.   lib)
  1280.     deplibs="$deplib $deplibs"
  1281.     test $pass = conv && continue
  1282.     newdependency_libs="$deplib $newdependency_libs"
  1283.     newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
  1284.     ;;
  1285.   prog)
  1286.     if test $pass = conv; then
  1287.       deplibs="$deplib $deplibs"
  1288.       continue
  1289.     fi
  1290.     if test $pass = scan; then
  1291.       deplibs="$deplib $deplibs"
  1292.       newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
  1293.     else
  1294.       compile_deplibs="$deplib $compile_deplibs"
  1295.       finalize_deplibs="$deplib $finalize_deplibs"
  1296.     fi
  1297.     ;;
  1298.   *)
  1299.     $echo "$modename: warning: `-L' is ignored for archives/objects: $deplib" 1>&2
  1300.     ;;
  1301.   esac # linkmode
  1302.   continue
  1303.   ;; # -L
  1304. -R*)
  1305.   if test $pass = link; then
  1306.     dir=`$echo "X$deplib" | $Xsed -e 's/^-R//'`
  1307.     # Make sure the xrpath contains only unique directories.
  1308.     case "$xrpath " in
  1309.     *" $dir "*) ;;
  1310.     *) xrpath="$xrpath $dir" ;;
  1311.     esac
  1312.   fi
  1313.   deplibs="$deplib $deplibs"
  1314.   continue
  1315.   ;;
  1316. *.la) lib="$deplib" ;;
  1317. *.$libext)
  1318.   if test $pass = conv; then
  1319.     deplibs="$deplib $deplibs"
  1320.     continue
  1321.   fi
  1322.   case $linkmode in
  1323.   lib)
  1324.     if test "$deplibs_check_method" != pass_all; then
  1325.       echo
  1326.       echo "*** Warning: This library needs some functionality provided by $deplib."
  1327.       echo "*** I have the capability to make that library automatically link in when"
  1328.       echo "*** you link to this library.  But I can only do this if you have a"
  1329.       echo "*** shared version of the library, which you do not appear to have."
  1330.     else
  1331.       echo
  1332.       echo "*** Warning: Linking the shared library $output against the"
  1333.       echo "*** static library $deplib is not portable!"
  1334.       deplibs="$deplib $deplibs"
  1335.     fi
  1336.     continue
  1337.     ;;
  1338.   prog)
  1339.     if test $pass != link; then
  1340.       deplibs="$deplib $deplibs"
  1341.     else
  1342.       compile_deplibs="$deplib $compile_deplibs"
  1343.       finalize_deplibs="$deplib $finalize_deplibs"
  1344.     fi
  1345.     continue
  1346.     ;;
  1347.   esac # linkmode
  1348.   ;; # *.$libext
  1349. *.lo | *.$objext)
  1350.   if test $pass = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then
  1351.     # If there is no dlopen support or we're linking statically,
  1352.     # we need to preload.
  1353.     newdlprefiles="$newdlprefiles $deplib"
  1354.     compile_deplibs="$deplib $compile_deplibs"
  1355.     finalize_deplibs="$deplib $finalize_deplibs"
  1356.   else
  1357.     newdlfiles="$newdlfiles $deplib"
  1358.   fi
  1359.   continue
  1360.   ;;
  1361. %DEPLIBS%)
  1362.   alldeplibs=yes
  1363.   continue
  1364.   ;;
  1365. esac # case $deplib
  1366. if test $found = yes || test -f "$lib"; then :
  1367. else
  1368.   $echo "$modename: cannot find the library `$lib'" 1>&2
  1369.   exit 1
  1370. fi
  1371. # Check to see that this really is a libtool archive.
  1372. if (sed -e '2q' $lib | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
  1373. else
  1374.   $echo "$modename: `$lib' is not a valid libtool archive" 1>&2
  1375.   exit 1
  1376. fi
  1377. ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`
  1378. test "X$ladir" = "X$lib" && ladir="."
  1379. dlname=
  1380. dlopen=
  1381. dlpreopen=
  1382. libdir=
  1383. library_names=
  1384. old_library=
  1385. # If the library was installed with an old release of libtool,
  1386. # it will not redefine variable installed.
  1387. installed=yes
  1388. # Read the .la file
  1389. case $lib in
  1390. */* | *\*) . $lib ;;
  1391. *) . ./$lib ;;
  1392. esac
  1393. if test "$linkmode,$pass" = "lib,link" ||
  1394.    test "$linkmode,$pass" = "prog,scan" ||
  1395.    { test $linkmode = oldlib && test $linkmode = obj; }; then
  1396.    # Add dl[pre]opened files of deplib
  1397.   test -n "$dlopen" && dlfiles="$dlfiles $dlopen"
  1398.   test -n "$dlpreopen" && dlprefiles="$dlprefiles $dlpreopen"
  1399. fi
  1400. if test $pass = conv; then
  1401.   # Only check for convenience libraries
  1402.   deplibs="$lib $deplibs"
  1403.   if test -z "$libdir"; then
  1404.     if test -z "$old_library"; then
  1405.       $echo "$modename: cannot find name of link library for `$lib'" 1>&2
  1406.       exit 1
  1407.     fi
  1408.     # It is a libtool convenience library, so add in its objects.
  1409.     convenience="$convenience $ladir/$objdir/$old_library"
  1410.     old_convenience="$old_convenience $ladir/$objdir/$old_library"
  1411.     tmp_libs=
  1412.     for deplib in $dependency_libs; do
  1413.       deplibs="$deplib $deplibs"
  1414.       case "$tmp_libs " in
  1415.       *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
  1416.       esac
  1417.       tmp_libs="$tmp_libs $deplib"
  1418.     done
  1419.   elif test $linkmode != prog && test $linkmode != lib; then
  1420.     $echo "$modename: `$lib' is not a convenience library" 1>&2
  1421.     exit 1
  1422.   fi
  1423.   continue
  1424. fi # $pass = conv
  1425. # Get the name of the library we link against.
  1426. linklib=
  1427. for l in $old_library $library_names; do
  1428.   linklib="$l"
  1429. done
  1430. if test -z "$linklib"; then
  1431.   $echo "$modename: cannot find name of link library for `$lib'" 1>&2
  1432.   exit 1
  1433. fi
  1434. # This library was specified with -dlopen.
  1435. if test $pass = dlopen; then
  1436.   if test -z "$libdir"; then
  1437.     $echo "$modename: cannot -dlopen a convenience library: `$lib'" 1>&2
  1438.     exit 1
  1439.   fi
  1440.   if test -z "$dlname" || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then
  1441.     # If there is no dlname, no dlopen support or we're linking
  1442.     # statically, we need to preload.
  1443.     dlprefiles="$dlprefiles $lib"
  1444.   else
  1445.     newdlfiles="$newdlfiles $lib"
  1446.   fi
  1447.   continue
  1448. fi # $pass = dlopen
  1449. # We need an absolute path.
  1450. case $ladir in
  1451. [\/]* | [A-Za-z]:[\/]*) abs_ladir="$ladir" ;;
  1452. *)
  1453.   abs_ladir=`cd "$ladir" && pwd`
  1454.   if test -z "$abs_ladir"; then
  1455.     $echo "$modename: warning: cannot determine absolute directory name of `$ladir'" 1>&2
  1456.     $echo "$modename: passing it literally to the linker, although it might fail" 1>&2
  1457.     abs_ladir="$ladir"
  1458.   fi
  1459.   ;;
  1460. esac
  1461. laname=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
  1462. # Find the relevant object directory and library name.
  1463. if test "X$installed" = Xyes; then
  1464.   if test ! -f "$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then
  1465.     $echo "$modename: warning: library `$lib' was moved." 1>&2
  1466.     dir="$ladir"
  1467.     absdir="$abs_ladir"
  1468.     libdir="$abs_ladir"
  1469.   else
  1470.     dir="$libdir"
  1471.     absdir="$libdir"
  1472.   fi
  1473. else
  1474.   dir="$ladir/$objdir"
  1475.   absdir="$abs_ladir/$objdir"
  1476.   # Remove this search path later
  1477.   notinst_path="$notinst_path $abs_ladir"
  1478. fi # $installed = yes
  1479. name=`$echo "X$laname" | $Xsed -e 's/.la$//' -e 's/^lib//'`
  1480. # This library was specified with -dlpreopen.
  1481. if test $pass = dlpreopen; then
  1482.   if test -z "$libdir"; then
  1483.     $echo "$modename: cannot -dlpreopen a convenience library: `$lib'" 1>&2
  1484.     exit 1
  1485.   fi
  1486.   # Prefer using a static library (so that no silly _DYNAMIC symbols
  1487.   # are required to link).
  1488.   if test -n "$old_library"; then
  1489.     newdlprefiles="$newdlprefiles $dir/$old_library"
  1490.   # Otherwise, use the dlname, so that lt_dlopen finds it.
  1491.   elif test -n "$dlname"; then
  1492.     newdlprefiles="$newdlprefiles $dir/$dlname"
  1493.   else
  1494.     newdlprefiles="$newdlprefiles $dir/$linklib"
  1495.   fi
  1496. fi # $pass = dlpreopen
  1497. if test -z "$libdir"; then
  1498.   # Link the convenience library
  1499.   if test $linkmode = lib; then
  1500.     deplibs="$dir/$old_library $deplibs"
  1501.   elif test "$linkmode,$pass" = "prog,link"; then
  1502.     compile_deplibs="$dir/$old_library $compile_deplibs"
  1503.     finalize_deplibs="$dir/$old_library $finalize_deplibs"
  1504.   else
  1505.     deplibs="$lib $deplibs"
  1506.   fi
  1507.   continue
  1508. fi
  1509. if test $linkmode = prog && test $pass != link; then
  1510.   newlib_search_path="$newlib_search_path $ladir"
  1511.   deplibs="$lib $deplibs"
  1512.   linkalldeplibs=no
  1513.   if test "$link_all_deplibs" != no || test -z "$library_names" ||
  1514.      test "$build_libtool_libs" = no; then
  1515.     linkalldeplibs=yes
  1516.   fi
  1517.   tmp_libs=
  1518.   for deplib in $dependency_libs; do
  1519.     case $deplib in
  1520.     -L*) newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`;; ### testsuite: skip nested quoting test
  1521.     esac
  1522.     # Need to link against all dependency_libs?
  1523.     if test $linkalldeplibs = yes; then
  1524.       deplibs="$deplib $deplibs"
  1525.     else
  1526.       # Need to hardcode shared library paths
  1527.       # or/and link against static libraries
  1528.       newdependency_libs="$deplib $newdependency_libs"
  1529.     fi
  1530.     case "$tmp_libs " in
  1531.     *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
  1532.     esac
  1533.     tmp_libs="$tmp_libs $deplib"
  1534.   done # for deplib
  1535.   continue
  1536. fi # $linkmode = prog...
  1537. link_static=no # Whether the deplib will be linked statically
  1538. if test -n "$library_names" &&
  1539.    { test "$prefer_static_libs" = no || test -z "$old_library"; }; then
  1540.   # Link against this shared library
  1541.   if test "$linkmode,$pass" = "prog,link" ||
  1542.    { test $linkmode = lib && test $hardcode_into_libs = yes; }; then
  1543.     # Hardcode the library path.
  1544.     # Skip directories that are in the system default run-time
  1545.     # search path.
  1546.     case " $sys_lib_dlsearch_path " in
  1547.     *" $absdir "*) ;;
  1548.     *)
  1549.       case "$compile_rpath " in
  1550.       *" $absdir "*) ;;
  1551.       *) compile_rpath="$compile_rpath $absdir"
  1552.       esac
  1553.       ;;
  1554.     esac
  1555.     case " $sys_lib_dlsearch_path " in
  1556.     *" $libdir "*) ;;
  1557.     *)
  1558.       case "$finalize_rpath " in
  1559.       *" $libdir "*) ;;
  1560.       *) finalize_rpath="$finalize_rpath $libdir"
  1561.       esac
  1562.       ;;
  1563.     esac
  1564.     if test $linkmode = prog; then
  1565.       # We need to hardcode the library path
  1566.       if test -n "$shlibpath_var"; then
  1567. # Make sure the rpath contains only unique directories.
  1568. case "$temp_rpath " in
  1569. *" $dir "*) ;;
  1570. *" $absdir "*) ;;
  1571. *) temp_rpath="$temp_rpath $dir" ;;
  1572. esac
  1573.       fi
  1574.     fi
  1575.   fi # $linkmode,$pass = prog,link...
  1576.   if test "$alldeplibs" = yes &&
  1577.      { test "$deplibs_check_method" = pass_all ||
  1578.        { test "$build_libtool_libs" = yes &&
  1579.  test -n "$library_names"; }; }; then
  1580.     # We only need to search for static libraries
  1581.     continue
  1582.   fi
  1583.   if test "$installed" = no; then
  1584.     notinst_deplibs="$notinst_deplibs $lib"
  1585.     need_relink=yes
  1586.   fi
  1587.   if test -n "$old_archive_from_expsyms_cmds"; then
  1588.     # figure out the soname
  1589.     set dummy $library_names
  1590.     realname="$2"
  1591.     shift; shift
  1592.     libname=`eval \$echo "$libname_spec"`
  1593.     # use dlname if we got it. it's perfectly good, no?
  1594.     if test -n "$dlname"; then
  1595.       soname="$dlname"
  1596.     elif test -n "$soname_spec"; then
  1597.       # bleh windows
  1598.       case $host in
  1599.       *cygwin*)
  1600. major=`expr $current - $age`
  1601. versuffix="-$major"
  1602. ;;
  1603.       esac
  1604.       eval soname="$soname_spec"
  1605.     else
  1606.       soname="$realname"
  1607.     fi
  1608.     # Make a new name for the extract_expsyms_cmds to use
  1609.     soroot="$soname"
  1610.     soname=`echo $soroot | sed -e 's/^.*///'`
  1611.     newlib="libimp-`echo $soname | sed 's/^lib//;s/.dll$//'`.a"
  1612.     # If the library has no export list, then create one now
  1613.     if test -f "$output_objdir/$soname-def"; then :
  1614.     else
  1615.       $show "extracting exported symbol list from `$soname'"
  1616.       save_ifs="$IFS"; IFS='~'
  1617.       eval cmds="$extract_expsyms_cmds"
  1618.       for cmd in $cmds; do
  1619. IFS="$save_ifs"
  1620. $show "$cmd"
  1621. $run eval "$cmd" || exit $?
  1622.       done
  1623.       IFS="$save_ifs"
  1624.     fi
  1625.     # Create $newlib
  1626.     if test -f "$output_objdir/$newlib"; then :; else
  1627.       $show "generating import library for `$soname'"
  1628.       save_ifs="$IFS"; IFS='~'
  1629.       eval cmds="$old_archive_from_expsyms_cmds"
  1630.       for cmd in $cmds; do
  1631. IFS="$save_ifs"
  1632. $show "$cmd"
  1633. $run eval "$cmd" || exit $?
  1634.       done
  1635.       IFS="$save_ifs"
  1636.     fi
  1637.     # make sure the library variables are pointing to the new library
  1638.     dir=$output_objdir
  1639.     linklib=$newlib
  1640.   fi # test -n $old_archive_from_expsyms_cmds
  1641.   if test $linkmode = prog || test "$mode" != relink; then
  1642.     add_shlibpath=
  1643.     add_dir=
  1644.     add=
  1645.     lib_linked=yes
  1646.     case $hardcode_action in
  1647.     immediate | unsupported)
  1648.       if test "$hardcode_direct" = no; then
  1649. add="$dir/$linklib"
  1650.       elif test "$hardcode_minus_L" = no; then
  1651. case $host in
  1652. *-*-sunos*) add_shlibpath="$dir" ;;
  1653. esac
  1654. add_dir="-L$dir"
  1655. add="-l$name"
  1656.       elif test "$hardcode_shlibpath_var" = no; then
  1657. add_shlibpath="$dir"
  1658. add="-l$name"
  1659.       else
  1660. lib_linked=no
  1661.       fi
  1662.       ;;
  1663.     relink)
  1664.       if test "$hardcode_direct" = yes; then
  1665. add="$dir/$linklib"
  1666.       elif test "$hardcode_minus_L" = yes; then
  1667. add_dir="-L$dir"
  1668. add="-l$name"
  1669.       elif test "$hardcode_shlibpath_var" = yes; then
  1670. add_shlibpath="$dir"
  1671. add="-l$name"
  1672.       else
  1673. lib_linked=no
  1674.       fi
  1675.       ;;
  1676.     *) lib_linked=no ;;
  1677.     esac
  1678.     if test "$lib_linked" != yes; then
  1679.       $echo "$modename: configuration error: unsupported hardcode properties"
  1680.       exit 1
  1681.     fi
  1682.     if test -n "$add_shlibpath"; then
  1683.       case :$compile_shlibpath: in
  1684.       *":$add_shlibpath:"*) ;;
  1685.       *) compile_shlibpath="$compile_shlibpath$add_shlibpath:" ;;
  1686.       esac
  1687.     fi
  1688.     if test $linkmode = prog; then
  1689.       test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs"
  1690.       test -n "$add" && compile_deplibs="$add $compile_deplibs"
  1691.     else
  1692.       test -n "$add_dir" && deplibs="$add_dir $deplibs"
  1693.       test -n "$add" && deplibs="$add $deplibs"
  1694.       if test "$hardcode_direct" != yes && 
  1695.  test "$hardcode_minus_L" != yes && 
  1696.  test "$hardcode_shlibpath_var" = yes; then
  1697. case :$finalize_shlibpath: in
  1698. *":$libdir:"*) ;;
  1699. *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;
  1700. esac
  1701.       fi
  1702.     fi
  1703.   fi
  1704.   if test $linkmode = prog || test "$mode" = relink; then
  1705.     add_shlibpath=
  1706.     add_dir=
  1707.     add=
  1708.     # Finalize command for both is simple: just hardcode it.
  1709.     if test "$hardcode_direct" = yes; then
  1710.       add="$libdir/$linklib"
  1711.     elif test "$hardcode_minus_L" = yes; then
  1712.       add_dir="-L$libdir"
  1713.       add="-l$name"
  1714.     elif test "$hardcode_shlibpath_var" = yes; then
  1715.       case :$finalize_shlibpath: in
  1716.       *":$libdir:"*) ;;
  1717.       *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;
  1718.       esac
  1719.       add="-l$name"
  1720.     else
  1721.       # We cannot seem to hardcode it, guess we'll fake it.
  1722.       add_dir="-L$libdir"
  1723.       add="-l$name"
  1724.     fi
  1725.     if test $linkmode = prog; then
  1726.       test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs"
  1727.       test -n "$add" && finalize_deplibs="$add $finalize_deplibs"
  1728.     else
  1729.       test -n "$add_dir" && deplibs="$add_dir $deplibs"
  1730.       test -n "$add" && deplibs="$add $deplibs"
  1731.     fi
  1732.   fi
  1733. elif test $linkmode = prog; then
  1734.   if test "$alldeplibs" = yes &&
  1735.      { test "$deplibs_check_method" = pass_all ||
  1736.        { test "$build_libtool_libs" = yes &&
  1737.  test -n "$library_names"; }; }; then
  1738.     # We only need to search for static libraries
  1739.     continue
  1740.   fi
  1741.   # Try to link the static library
  1742.   # Here we assume that one of hardcode_direct or hardcode_minus_L
  1743.   # is not unsupported.  This is valid on all known static and
  1744.   # shared platforms.
  1745.   if test "$hardcode_direct" != unsupported; then
  1746.     test -n "$old_library" && linklib="$old_library"
  1747.     compile_deplibs="$dir/$linklib $compile_deplibs"
  1748.     finalize_deplibs="$dir/$linklib $finalize_deplibs"
  1749.   else
  1750.     compile_deplibs="-l$name -L$dir $compile_deplibs"
  1751.     finalize_deplibs="-l$name -L$dir $finalize_deplibs"
  1752.   fi
  1753. elif test "$build_libtool_libs" = yes; then
  1754.   # Not a shared library
  1755.   if test "$deplibs_check_method" != pass_all; then
  1756.     # We're trying link a shared library against a static one
  1757.     # but the system doesn't support it.
  1758.     # Just print a warning and add the library to dependency_libs so
  1759.     # that the program can be linked against the static library.
  1760.     echo
  1761.     echo "*** Warning: This library needs some functionality provided by $lib."
  1762.     echo "*** I have the capability to make that library automatically link in when"
  1763.     echo "*** you link to this library.  But I can only do this if you have a"
  1764.     echo "*** shared version of the library, which you do not appear to have."
  1765.     if test "$module" = yes; then
  1766.       echo "*** Therefore, libtool will create a static module, that should work "
  1767.       echo "*** as long as the dlopening application is linked with the -dlopen flag."
  1768.       if test -z "$global_symbol_pipe"; then
  1769. echo
  1770. echo "*** However, this would only work if libtool was able to extract symbol"
  1771. echo "*** lists from a program, using `nm' or equivalent, but libtool could"
  1772. echo "*** not find such a program.  So, this module is probably useless."
  1773. echo "*** `nm' from GNU binutils and a full rebuild may help."
  1774.       fi
  1775.       if test "$build_old_libs" = no; then
  1776. build_libtool_libs=module
  1777. build_old_libs=yes
  1778.       else
  1779. build_libtool_libs=no
  1780.       fi
  1781.     fi
  1782.   else
  1783.     convenience="$convenience $dir/$old_library"
  1784.     old_convenience="$old_convenience $dir/$old_library"
  1785.     deplibs="$dir/$old_library $deplibs"
  1786.     link_static=yes
  1787.   fi
  1788. fi # link shared/static library?
  1789. if test $linkmode = lib; then
  1790.   if test -n "$dependency_libs" &&
  1791.      { test $hardcode_into_libs != yes || test $build_old_libs = yes ||
  1792.        test $link_static = yes; }; then
  1793.     # Extract -R from dependency_libs
  1794.     temp_deplibs=
  1795.     for libdir in $dependency_libs; do
  1796.       case $libdir in
  1797.       -R*) temp_xrpath=`$echo "X$libdir" | $Xsed -e 's/^-R//'`
  1798.    case " $xrpath " in
  1799.    *" $temp_xrpath "*) ;;
  1800.    *) xrpath="$xrpath $temp_xrpath";;
  1801.    esac;;
  1802.       *) temp_deplibs="$temp_deplibs $libdir";;
  1803.       esac
  1804.     done
  1805.     dependency_libs="$temp_deplibs"
  1806.   fi
  1807.   newlib_search_path="$newlib_search_path $absdir"
  1808.   # Link against this library
  1809.   test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs"
  1810.   # ... and its dependency_libs
  1811.   tmp_libs=
  1812.   for deplib in $dependency_libs; do
  1813.     newdependency_libs="$deplib $newdependency_libs"
  1814.     case "$tmp_libs " in
  1815.     *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
  1816.     esac
  1817.     tmp_libs="$tmp_libs $deplib"
  1818.   done
  1819.   if test $link_all_deplibs != no; then
  1820.     # Add the search paths of all dependency libraries
  1821.     for deplib in $dependency_libs; do
  1822.       case $deplib in
  1823.       -L*) path="$deplib" ;;
  1824.       *.la)
  1825. dir=`$echo "X$deplib" | $Xsed -e 's%/[^/]*$%%'`
  1826. test "X$dir" = "X$deplib" && dir="."
  1827. # We need an absolute path.
  1828. case $dir in
  1829. [\/]* | [A-Za-z]:[\/]*) absdir="$dir" ;;
  1830. *)
  1831.   absdir=`cd "$dir" && pwd`
  1832.   if test -z "$absdir"; then
  1833.     $echo "$modename: warning: cannot determine absolute directory name of `$dir'" 1>&2
  1834.     absdir="$dir"
  1835.   fi
  1836.   ;;
  1837. esac
  1838. if grep "^installed=no" $deplib > /dev/null; then
  1839.   path="-L$absdir/$objdir"
  1840. else
  1841.   eval libdir=`sed -n -e 's/^libdir=(.*)$/1/p' $deplib`
  1842.   if test -z "$libdir"; then
  1843.     $echo "$modename: `$deplib' is not a valid libtool archive" 1>&2
  1844.     exit 1
  1845.   fi
  1846.   if test "$absdir" != "$libdir"; then
  1847.     $echo "$modename: warning: `$deplib' seems to be moved" 1>&2
  1848.   fi
  1849.   path="-L$absdir"
  1850. fi
  1851. ;;
  1852.       *) continue ;;
  1853.       esac
  1854.       case " $deplibs " in
  1855.       *" $path "*) ;;
  1856.       *) deplibs="$deplibs $path" ;;
  1857.       esac
  1858.     done
  1859.   fi # link_all_deplibs != no
  1860. fi # linkmode = lib
  1861.       done # for deplib in $libs
  1862.       if test $pass = dlpreopen; then
  1863. # Link the dlpreopened libraries before other libraries
  1864. for deplib in $save_deplibs; do
  1865.   deplibs="$deplib $deplibs"
  1866. done
  1867.       fi
  1868.       if test $pass != dlopen; then
  1869. test $pass != scan && dependency_libs="$newdependency_libs"
  1870. if test $pass != conv; then
  1871.   # Make sure lib_search_path contains only unique directories.
  1872.   lib_search_path=
  1873.   for dir in $newlib_search_path; do
  1874.     case "$lib_search_path " in
  1875.     *" $dir "*) ;;
  1876.     *) lib_search_path="$lib_search_path $dir" ;;
  1877.     esac
  1878.   done
  1879.   newlib_search_path=
  1880. fi
  1881. if test "$linkmode,$pass" != "prog,link"; then
  1882.   vars="deplibs"
  1883. else
  1884.   vars="compile_deplibs finalize_deplibs"
  1885. fi
  1886. for var in $vars dependency_libs; do
  1887.   # Add libraries to $var in reverse order
  1888.   eval tmp_libs="$$var"
  1889.   new_libs=
  1890.   for deplib in $tmp_libs; do
  1891.     case $deplib in
  1892.     -L*) new_libs="$deplib $new_libs" ;;
  1893.     *)
  1894.       case " $specialdeplibs " in
  1895.       *" $deplib "*) new_libs="$deplib $new_libs" ;;
  1896.       *)
  1897. case " $new_libs " in
  1898. *" $deplib "*) ;;
  1899. *) new_libs="$deplib $new_libs" ;;
  1900. esac
  1901. ;;
  1902.       esac
  1903.       ;;
  1904.     esac
  1905.   done
  1906.   tmp_libs=
  1907.   for deplib in $new_libs; do
  1908.     case $deplib in
  1909.     -L*)
  1910.       case " $tmp_libs " in
  1911.       *" $deplib "*) ;;
  1912.       *) tmp_libs="$tmp_libs $deplib" ;;
  1913.       esac
  1914.       ;;
  1915.     *) tmp_libs="$tmp_libs $deplib" ;;
  1916.     esac
  1917.   done
  1918.   eval $var="$tmp_libs"
  1919. done # for var
  1920.       fi
  1921.       if test "$pass" = "conv" &&
  1922.        { test "$linkmode" = "lib" || test "$linkmode" = "prog"; }; then
  1923. libs="$deplibs" # reset libs
  1924. deplibs=
  1925.       fi
  1926.     done # for pass
  1927.     if test $linkmode = prog; then
  1928.       dlfiles="$newdlfiles"
  1929.       dlprefiles="$newdlprefiles"
  1930.     fi
  1931.     case $linkmode in
  1932.     oldlib)
  1933.       if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
  1934. $echo "$modename: warning: `-dlopen' is ignored for archives" 1>&2
  1935.       fi
  1936.       if test -n "$rpath"; then
  1937. $echo "$modename: warning: `-rpath' is ignored for archives" 1>&2
  1938.       fi
  1939.       if test -n "$xrpath"; then
  1940. $echo "$modename: warning: `-R' is ignored for archives" 1>&2
  1941.       fi
  1942.       if test -n "$vinfo"; then
  1943. $echo "$modename: warning: `-version-info' is ignored for archives" 1>&2
  1944.       fi
  1945.       if test -n "$release"; then
  1946. $echo "$modename: warning: `-release' is ignored for archives" 1>&2
  1947.       fi
  1948.       if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
  1949. $echo "$modename: warning: `-export-symbols' is ignored for archives" 1>&2
  1950.       fi
  1951.       # Now set the variables for building old libraries.
  1952.       build_libtool_libs=no
  1953.       oldlibs="$output"
  1954.       objs="$objs$old_deplibs"
  1955.       ;;
  1956.     lib)
  1957.       # Make sure we only generate libraries of the form `libNAME.la'.
  1958.       case $outputname in
  1959.       lib*)
  1960. name=`$echo "X$outputname" | $Xsed -e 's/.la$//' -e 's/^lib//'`
  1961. eval libname="$libname_spec"
  1962. ;;
  1963.       *)
  1964. if test "$module" = no; then
  1965.   $echo "$modename: libtool library `$output' must begin with `lib'" 1>&2
  1966.   $echo "$help" 1>&2
  1967.   exit 1
  1968. fi
  1969. if test "$need_lib_prefix" != no; then
  1970.   # Add the "lib" prefix for modules if required
  1971.   name=`$echo "X$outputname" | $Xsed -e 's/.la$//'`
  1972.   eval libname="$libname_spec"
  1973. else
  1974.   libname=`$echo "X$outputname" | $Xsed -e 's/.la$//'`
  1975. fi
  1976. ;;
  1977.       esac
  1978.       if test -n "$objs"; then
  1979. if test "$deplibs_check_method" != pass_all; then
  1980.   $echo "$modename: cannot build libtool library `$output' from non-libtool objects on this host:$objs" 2>&1
  1981.   exit 1
  1982. else
  1983.   echo
  1984.   echo "*** Warning: Linking the shared library $output against the non-libtool"
  1985.   echo "*** objects $objs is not portable!"
  1986.   libobjs="$libobjs $objs"
  1987. fi
  1988.       fi
  1989.       if test "$dlself" != no; then
  1990. $echo "$modename: warning: `-dlopen self' is ignored for libtool libraries" 1>&2
  1991.       fi
  1992.       set dummy $rpath
  1993.       if test $# -gt 2; then
  1994. $echo "$modename: warning: ignoring multiple `-rpath's for a libtool library" 1>&2
  1995.       fi
  1996.       install_libdir="$2"
  1997.       oldlibs=
  1998.       if test -z "$rpath"; then
  1999. if test "$build_libtool_libs" = yes; then
  2000.   # Building a libtool convenience library.
  2001.   libext=al
  2002.   oldlibs="$output_objdir/$libname.$libext $oldlibs"
  2003.   build_libtool_libs=convenience
  2004.   build_old_libs=yes
  2005. fi
  2006. if test -n "$vinfo"; then
  2007.   $echo "$modename: warning: `-version-info' is ignored for convenience libraries" 1>&2
  2008. fi
  2009. if test -n "$release"; then
  2010.   $echo "$modename: warning: `-release' is ignored for convenience libraries" 1>&2
  2011. fi
  2012.       else
  2013. # Parse the version information argument.
  2014. save_ifs="$IFS"; IFS=':'
  2015. set dummy $vinfo 0 0 0
  2016. IFS="$save_ifs"
  2017. if test -n "$8"; then
  2018.   $echo "$modename: too many parameters to `-version-info'" 1>&2
  2019.   $echo "$help" 1>&2
  2020.   exit 1
  2021. fi
  2022. current="$2"
  2023. revision="$3"
  2024. age="$4"
  2025. # Check that each of the things are valid numbers.
  2026. case $current in
  2027. 0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;;
  2028. *)
  2029.   $echo "$modename: CURRENT `$current' is not a nonnegative integer" 1>&2
  2030.   $echo "$modename: `$vinfo' is not valid version information" 1>&2
  2031.   exit 1
  2032.   ;;
  2033. esac
  2034. case $revision in
  2035. 0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;;
  2036. *)
  2037.   $echo "$modename: REVISION `$revision' is not a nonnegative integer" 1>&2
  2038.   $echo "$modename: `$vinfo' is not valid version information" 1>&2
  2039.   exit 1
  2040.   ;;
  2041. esac
  2042. case $age in
  2043. 0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;;
  2044. *)
  2045.   $echo "$modename: AGE `$age' is not a nonnegative integer" 1>&2
  2046.   $echo "$modename: `$vinfo' is not valid version information" 1>&2
  2047.   exit 1
  2048.   ;;
  2049. esac
  2050. if test $age -gt $current; then
  2051.   $echo "$modename: AGE `$age' is greater than the current interface number `$current'" 1>&2
  2052.   $echo "$modename: `$vinfo' is not valid version information" 1>&2
  2053.   exit 1
  2054. fi
  2055. # Calculate the version variables.
  2056. major=
  2057. versuffix=
  2058. verstring=
  2059. case $version_type in
  2060. none) ;;
  2061. darwin)
  2062.   # Like Linux, but with the current version available in
  2063.   # verstring for coding it into the library header
  2064.   major=.`expr $current - $age`
  2065.   versuffix="$major.$age.$revision"
  2066.   # Darwin ld doesn't like 0 for these options...
  2067.   minor_current=`expr $current + 1`
  2068.   verstring="-compatibility_version $minor_current -current_version $minor_current.$revision"
  2069.   ;;
  2070. freebsd-aout)
  2071.   major=".$current"
  2072.   versuffix=".$current.$revision";
  2073.   ;;
  2074. freebsd-elf)
  2075.   major=".$current"
  2076.   versuffix=".$current";
  2077.   ;;
  2078. irix)
  2079.   major=`expr $current - $age + 1`
  2080.   verstring="sgi$major.$revision"
  2081.   # Add in all the interfaces that we are compatible with.
  2082.   loop=$revision
  2083.   while test $loop != 0; do
  2084.     iface=`expr $revision - $loop`
  2085.     loop=`expr $loop - 1`
  2086.     verstring="sgi$major.$iface:$verstring"
  2087.   done
  2088.   # Before this point, $major must not contain `.'.
  2089.   major=.$major
  2090.   versuffix="$major.$revision"
  2091.   ;;
  2092. linux)
  2093.   major=.`expr $current - $age`
  2094.   versuffix="$major.$age.$revision"
  2095.   ;;
  2096. osf)
  2097.   major=`expr $current - $age`
  2098.   versuffix=".$current.$age.$revision"
  2099.   verstring="$current.$age.$revision"
  2100.   # Add in all the interfaces that we are compatible with.
  2101.   loop=$age
  2102.   while test $loop != 0; do
  2103.     iface=`expr $current - $loop`
  2104.     loop=`expr $loop - 1`
  2105.     verstring="$verstring:${iface}.0"
  2106.   done
  2107.   # Make executables depend on our current version.
  2108.   verstring="$verstring:${current}.0"
  2109.   ;;
  2110. sunos)
  2111.   major=".$current"
  2112.   versuffix=".$current.$revision"
  2113.   ;;
  2114. windows)
  2115.   # Use '-' rather than '.', since we only want one
  2116.   # extension on DOS 8.3 filesystems.
  2117.   major=`expr $current - $age`
  2118.   versuffix="-$major"
  2119.   ;;
  2120. *)
  2121.   $echo "$modename: unknown library version type `$version_type'" 1>&2
  2122.   echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2
  2123.   exit 1
  2124.   ;;
  2125. esac
  2126. # Clear the version info if we defaulted, and they specified a release.
  2127. if test -z "$vinfo" && test -n "$release"; then
  2128.   major=
  2129.   verstring="0.0"
  2130.   case $version_type in
  2131.   darwin)
  2132.     # we can't check for "0.0" in archive_cmds due to quoting
  2133.     # problems, so we reset it completely
  2134.     verstring=""
  2135.     ;;
  2136.   *)
  2137.     verstring="0.0"
  2138.     ;;
  2139.   esac
  2140.   if test "$need_version" = no; then
  2141.     versuffix=
  2142.   else
  2143.     versuffix=".0.0"
  2144.   fi
  2145. fi
  2146. # Remove version info from name if versioning should be avoided
  2147. if test "$avoid_version" = yes && test "$need_version" = no; then
  2148.   major=
  2149.   versuffix=
  2150.   verstring=""
  2151. fi
  2152. # Check to see if the archive will have undefined symbols.
  2153. if test "$allow_undefined" = yes; then
  2154.   if test "$allow_undefined_flag" = unsupported; then
  2155.     $echo "$modename: warning: undefined symbols not allowed in $host shared libraries" 1>&2
  2156.     build_libtool_libs=no
  2157.     build_old_libs=yes
  2158.   fi
  2159. else
  2160.   # Don't allow undefined symbols.
  2161.   allow_undefined_flag="$no_undefined_flag"
  2162. fi
  2163.       fi
  2164.       if test "$mode" != relink; then
  2165. # Remove our outputs.
  2166. $show "${rm}r $output_objdir/$outputname $output_objdir/$libname.* $output_objdir/${libname}${release}.*"
  2167. $run ${rm}r $output_objdir/$outputname $output_objdir/$libname.* $output_objdir/${libname}${release}.*
  2168.       fi
  2169.       # Now set the variables for building old libraries.
  2170.       if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then
  2171. oldlibs="$oldlibs $output_objdir/$libname.$libext"
  2172. # Transform .lo files to .o files.
  2173. oldobjs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/.'${libext}'$/d' -e "$lo2o" | $NL2SP`
  2174.       fi
  2175.       # Eliminate all temporary directories.
  2176.       for path in $notinst_path; do
  2177. lib_search_path=`echo "$lib_search_path " | sed -e 's% $path % %g'`
  2178. deplibs=`echo "$deplibs " | sed -e 's% -L$path % %g'`
  2179. dependency_libs=`echo "$dependency_libs " | sed -e 's% -L$path % %g'`
  2180.       done
  2181.       if test -n "$xrpath"; then
  2182. # If the user specified any rpath flags, then add them.
  2183. temp_xrpath=
  2184. for libdir in $xrpath; do
  2185.   temp_xrpath="$temp_xrpath -R$libdir"
  2186.   case "$finalize_rpath " in
  2187.   *" $libdir "*) ;;
  2188.   *) finalize_rpath="$finalize_rpath $libdir" ;;
  2189.   esac
  2190. done
  2191. if test $hardcode_into_libs != yes || test $build_old_libs = yes; then
  2192.   dependency_libs="$temp_xrpath $dependency_libs"
  2193. fi
  2194.       fi
  2195.       # Make sure dlfiles contains only unique files that won't be dlpreopened
  2196.       old_dlfiles="$dlfiles"
  2197.       dlfiles=
  2198.       for lib in $old_dlfiles; do
  2199. case " $dlprefiles $dlfiles " in
  2200. *" $lib "*) ;;
  2201. *) dlfiles="$dlfiles $lib" ;;
  2202. esac
  2203.       done
  2204.       # Make sure dlprefiles contains only unique files
  2205.       old_dlprefiles="$dlprefiles"
  2206.       dlprefiles=
  2207.       for lib in $old_dlprefiles; do
  2208. case "$dlprefiles " in
  2209. *" $lib "*) ;;
  2210. *) dlprefiles="$dlprefiles $lib" ;;
  2211. esac
  2212.       done
  2213.       if test "$build_libtool_libs" = yes; then
  2214. if test -n "$rpath"; then
  2215.   case $host in
  2216.   *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos*)
  2217.     # these systems don't actually have a c library (as such)!
  2218.     ;;
  2219.   *-*-rhapsody* | *-*-darwin1.[012])
  2220.     # Rhapsody C library is in the System framework
  2221.     deplibs="$deplibs -framework System"
  2222.     ;;
  2223.   *-*-netbsd*)
  2224.     # Don't link with libc until the a.out ld.so is fixed.
  2225.     ;;
  2226.   *-*-openbsd*)
  2227.     # Do not include libc due to us having libc/libc_r.
  2228.     ;;
  2229.   *)
  2230.     # Add libc to deplibs on all other systems if necessary.
  2231.     if test $build_libtool_need_lc = "yes"; then
  2232.       deplibs="$deplibs -lc"
  2233.     fi
  2234.     ;;
  2235.   esac
  2236. fi
  2237. # Transform deplibs into only deplibs that can be linked in shared.
  2238. name_save=$name
  2239. libname_save=$libname
  2240. release_save=$release
  2241. versuffix_save=$versuffix
  2242. major_save=$major
  2243. # I'm not sure if I'm treating the release correctly.  I think
  2244. # release should show up in the -l (ie -lgmp5) so we don't want to
  2245. # add it in twice.  Is that correct?
  2246. release=""
  2247. versuffix=""
  2248. major=""
  2249. newdeplibs=
  2250. droppeddeps=no
  2251. case $deplibs_check_method in
  2252. pass_all)
  2253.   # Don't check for shared/static.  Everything works.
  2254.   # This might be a little naive.  We might want to check
  2255.   # whether the library exists or not.  But this is on
  2256.   # osf3 & osf4 and I'm not really sure... Just
  2257.   # implementing what was already the behaviour.
  2258.   newdeplibs=$deplibs
  2259.   ;;
  2260. test_compile)
  2261.   # This code stresses the "libraries are programs" paradigm to its
  2262.   # limits. Maybe even breaks it.  We compile a program, linking it
  2263.   # against the deplibs as a proxy for the library.  Then we can check
  2264.   # whether they linked in statically or dynamically with ldd.
  2265.   $rm conftest.c
  2266.   cat > conftest.c <<EOF
  2267.   int main() { return 0; }
  2268. EOF
  2269.   $rm conftest
  2270.   $CC -o conftest conftest.c $deplibs
  2271.   if test $? -eq 0 ; then
  2272.     ldd_output=`ldd conftest`
  2273.     for i in $deplibs; do
  2274.       name="`expr $i : '-l(.*)'`"