ltmain.sh
上传用户:wxp200602
上传日期:2007-10-30
资源大小:4028k
文件大小:139k
源码类别:

SNMP编程

开发平台:

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