ltmain.sh
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:180k
源码类别:

Windows CE

开发平台:

C/C++

  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, 2003, 2004
  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. basename="s,^.*/,,g"
  27. # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh
  28. # is ksh but when the shell is invoked as "sh" and the current value of
  29. # the _XPG environment variable is not equal to 1 (one), the special
  30. # positional parameter $0, within a function call, is the name of the
  31. # function.
  32. progpath="$0"
  33. # The name of this program:
  34. progname=`echo "$progpath" | $SED $basename`
  35. modename="$progname"
  36. # Global variables:
  37. EXIT_SUCCESS=0
  38. EXIT_FAILURE=1
  39. PROGRAM=ltmain.sh
  40. PACKAGE=libtool
  41. VERSION=1.5.6
  42. TIMESTAMP=" (1.1220.2.95 2004/04/11 05:50:42) Debian$Rev: 224 $"
  43. # Check that we have a working $echo.
  44. if test "X$1" = X--no-reexec; then
  45.   # Discard the --no-reexec flag, and continue.
  46.   shift
  47. elif test "X$1" = X--fallback-echo; then
  48.   # Avoid inline document here, it may be left over
  49.   :
  50. elif test "X`($echo 't') 2>/dev/null`" = 'Xt'; then
  51.   # Yippee, $echo works!
  52.   :
  53. else
  54.   # Restart under the correct shell, and then maybe $echo will work.
  55.   exec $SHELL "$progpath" --no-reexec ${1+"$@"}
  56. fi
  57. if test "X$1" = X--fallback-echo; then
  58.   # used as fallback echo
  59.   shift
  60.   cat <<EOF
  61. $*
  62. EOF
  63.   exit $EXIT_SUCCESS
  64. fi
  65. default_mode=
  66. help="Try `$progname --help' for more information."
  67. magic="%%%MAGIC variable%%%"
  68. mkdir="mkdir"
  69. mv="mv -f"
  70. rm="rm -f"
  71. # Sed substitution that helps us do robust quoting.  It backslashifies
  72. # metacharacters that are still active within double-quoted strings.
  73. Xsed="${SED}"' -e 1s/^X//'
  74. sed_quote_subst='s/([\`\"$\\])/\1/g'
  75. # test EBCDIC or ASCII
  76. case `echo A|tr A '301'` in
  77.  A) # EBCDIC based system
  78.   SP2NL="tr '100' 'n'"
  79.   NL2SP="tr 'rn' '100100'"
  80.   ;;
  81.  *) # Assume ASCII based system
  82.   SP2NL="tr '40' '12'"
  83.   NL2SP="tr '1512' '4040'"
  84.   ;;
  85. esac
  86. # NLS nuisances.
  87. # Only set LANG and LC_ALL to C if already set.
  88. # These must not be set unconditionally because not all systems understand
  89. # e.g. LANG=C (notably SCO).
  90. # We save the old values to restore during execute mode.
  91. if test "${LC_ALL+set}" = set; then
  92.   save_LC_ALL="$LC_ALL"; LC_ALL=C; export LC_ALL
  93. fi
  94. if test "${LANG+set}" = set; then
  95.   save_LANG="$LANG"; LANG=C; export LANG
  96. fi
  97. # Make sure IFS has a sensible default
  98. : ${IFS=" 
  99. "}
  100. if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then
  101.   $echo "$modename: not configured to build any kind of library" 1>&2
  102.   $echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2
  103.   exit $EXIT_FAILURE
  104. fi
  105. # Global variables.
  106. mode=$default_mode
  107. nonopt=
  108. prev=
  109. prevopt=
  110. run=
  111. show="$echo"
  112. show_help=
  113. execute_dlfiles=
  114. lo2o="s/\.lo$/.${objext}/"
  115. o2lo="s/\.${objext}$/.lo/"
  116. #####################################
  117. # Shell function definitions:
  118. # This seems to be the best place for them
  119. # func_win32_libid arg
  120. # return the library type of file 'arg'
  121. #
  122. # Need a lot of goo to handle *both* DLLs and import libs
  123. # Has to be a shell function in order to 'eat' the argument
  124. # that is supplied when $file_magic_command is called.
  125. func_win32_libid () {
  126.   win32_libid_type="unknown"
  127.   win32_fileres=`file -L $1 2>/dev/null`
  128.   case $win32_fileres in
  129.   *ar archive import library*) # definitely import
  130.     win32_libid_type="x86 archive import"
  131.     ;;
  132.   *ar archive*) # could be an import, or static
  133.     if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | 
  134.       $EGREP -e 'file format pe-i386(.*architecture: i386)?' >/dev/null ; then
  135.       win32_nmres=`eval $NM -f posix -A $1 | 
  136. sed -n -e '1,100{/ I /{x;/import/!{s/^/import/;h;p;};x;};}'`
  137.       if test "X$win32_nmres" = "Ximport" ; then
  138.         win32_libid_type="x86 archive import"
  139.       else
  140.         win32_libid_type="x86 archive static"
  141.       fi
  142.     fi
  143.     ;;
  144.   *DLL*)
  145.     win32_libid_type="x86 DLL"
  146.     ;;
  147.   *executable*) # but shell scripts are "executable" too...
  148.     case $win32_fileres in
  149.     *MS Windows PE Intel*)
  150.       win32_libid_type="x86 DLL"
  151.       ;;
  152.     esac
  153.     ;;
  154.   esac
  155.   $echo $win32_libid_type
  156. }
  157. # func_infer_tag arg
  158. # Infer tagged configuration to use if any are available and
  159. # if one wasn't chosen via the "--tag" command line option.
  160. # Only attempt this if the compiler in the base compile
  161. # command doesn't match the default compiler.
  162. # arg is usually of the form 'gcc ...'
  163. func_infer_tag () {
  164.     if test -n "$available_tags" && test -z "$tagname"; then
  165.       CC_quoted=
  166.       for arg in $CC; do
  167. case $arg in
  168.   *[[~#^&*(){}|;<>?'  ]*|*]*|"")
  169.   arg=""$arg""
  170.   ;;
  171. esac
  172. CC_quoted="$CC_quoted $arg"
  173.       done
  174.       case $@ in
  175.       # Blanks in the command may have been stripped by the calling shell,
  176.       # but not from the CC environment variable when configure was run.
  177.       " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*) ;;
  178.       # Blanks at the start of $base_compile will cause this to fail
  179.       # if we don't check for them as well.
  180.       *)
  181. for z in $available_tags; do
  182.   if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then
  183.     # Evaluate the configuration.
  184.     eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`"
  185.     CC_quoted=
  186.     for arg in $CC; do
  187.     # Double-quote args containing other shell metacharacters.
  188.     case $arg in
  189.       *[[~#^&*(){}|;<>?'  ]*|*]*|"")
  190.       arg=""$arg""
  191.       ;;
  192.     esac
  193.     CC_quoted="$CC_quoted $arg"
  194.   done
  195.     case "$@ " in
  196.       " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*)
  197.       # The compiler in the base compile command matches
  198.       # the one in the tagged configuration.
  199.       # Assume this is the tagged configuration we want.
  200.       tagname=$z
  201.       break
  202.       ;;
  203.     esac
  204.   fi
  205. done
  206. # If $tagname still isn't set, then no tagged configuration
  207. # was found and let the user know that the "--tag" command
  208. # line option must be used.
  209. if test -z "$tagname"; then
  210.   $echo "$modename: unable to infer tagged configuration"
  211.   $echo "$modename: specify a tag with `--tag'" 1>&2
  212.   exit $EXIT_FAILURE
  213. #        else
  214. #          $echo "$modename: using $tagname tagged configuration"
  215. fi
  216. ;;
  217.       esac
  218.     fi
  219. }
  220. # End of Shell function definitions
  221. #####################################
  222. # Darwin sucks
  223. eval std_shrext="$shrext_cmds"
  224. # Parse our command line options once, thoroughly.
  225. while test "$#" -gt 0
  226. do
  227.   arg="$1"
  228.   shift
  229.   case $arg in
  230.   -*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;;
  231.   *) optarg= ;;
  232.   esac
  233.   # If the previous option needs an argument, assign it.
  234.   if test -n "$prev"; then
  235.     case $prev in
  236.     execute_dlfiles)
  237.       execute_dlfiles="$execute_dlfiles $arg"
  238.       ;;
  239.     tag)
  240.       tagname="$arg"
  241.       preserve_args="${preserve_args}=$arg"
  242.       # Check whether tagname contains only valid characters
  243.       case $tagname in
  244.       *[!-_A-Za-z0-9,/]*)
  245. $echo "$progname: invalid tag name: $tagname" 1>&2
  246. exit $EXIT_FAILURE
  247. ;;
  248.       esac
  249.       case $tagname in
  250.       CC)
  251. # Don't test for the "default" C tag, as we know, it's there, but
  252. # not specially marked.
  253. ;;
  254.       *)
  255. if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "$progpath" > /dev/null; then
  256.   taglist="$taglist $tagname"
  257.   # Evaluate the configuration.
  258.   eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$tagname'$/,/^# ### END LIBTOOL TAG CONFIG: '$tagname'$/p' < $progpath`"
  259. else
  260.   $echo "$progname: ignoring unknown tag $tagname" 1>&2
  261. fi
  262. ;;
  263.       esac
  264.       ;;
  265.     *)
  266.       eval "$prev=$arg"
  267.       ;;
  268.     esac
  269.     prev=
  270.     prevopt=
  271.     continue
  272.   fi
  273.   # Have we seen a non-optional argument yet?
  274.   case $arg in
  275.   --help)
  276.     show_help=yes
  277.     ;;
  278.   --version)
  279.     $echo "$PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP"
  280.     $echo
  281.     $echo "Copyright (C) 2003  Free Software Foundation, Inc."
  282.     $echo "This is free software; see the source for copying conditions.  There is NO"
  283.     $echo "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
  284.     exit $EXIT_SUCCESS
  285.     ;;
  286.   --config)
  287.     ${SED} -e '1,/^# ### BEGIN LIBTOOL CONFIG/d' -e '/^# ### END LIBTOOL CONFIG/,$d' $progpath
  288.     # Now print the configurations for the tags.
  289.     for tagname in $taglist; do
  290.       ${SED} -n -e "/^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$/,/^# ### END LIBTOOL TAG CONFIG: $tagname$/p" < "$progpath"
  291.     done
  292.     exit $EXIT_SUCCESS
  293.     ;;
  294.   --debug)
  295.     $echo "$progname: enabling shell trace mode"
  296.     set -x
  297.     preserve_args="$preserve_args $arg"
  298.     ;;
  299.   --dry-run | -n)
  300.     run=:
  301.     ;;
  302.   --features)
  303.     $echo "host: $host"
  304.     if test "$build_libtool_libs" = yes; then
  305.       $echo "enable shared libraries"
  306.     else
  307.       $echo "disable shared libraries"
  308.     fi
  309.     if test "$build_old_libs" = yes; then
  310.       $echo "enable static libraries"
  311.     else
  312.       $echo "disable static libraries"
  313.     fi
  314.     exit $EXIT_SUCCESS
  315.     ;;
  316.   --finish) mode="finish" ;;
  317.   --mode) prevopt="--mode" prev=mode ;;
  318.   --mode=*) mode="$optarg" ;;
  319.   --preserve-dup-deps) duplicate_deps="yes" ;;
  320.   --quiet | --silent)
  321.     show=:
  322.     preserve_args="$preserve_args $arg"
  323.     ;;
  324.   --tag) prevopt="--tag" prev=tag ;;
  325.   --tag=*)
  326.     set tag "$optarg" ${1+"$@"}
  327.     shift
  328.     prev=tag
  329.     preserve_args="$preserve_args --tag"
  330.     ;;
  331.   -dlopen)
  332.     prevopt="-dlopen"
  333.     prev=execute_dlfiles
  334.     ;;
  335.   -*)
  336.     $echo "$modename: unrecognized option `$arg'" 1>&2
  337.     $echo "$help" 1>&2
  338.     exit $EXIT_FAILURE
  339.     ;;
  340.   *)
  341.     nonopt="$arg"
  342.     break
  343.     ;;
  344.   esac
  345. done
  346. if test -n "$prevopt"; then
  347.   $echo "$modename: option `$prevopt' requires an argument" 1>&2
  348.   $echo "$help" 1>&2
  349.   exit $EXIT_FAILURE
  350. fi
  351. # If this variable is set in any of the actions, the command in it
  352. # will be execed at the end.  This prevents here-documents from being
  353. # left over by shells.
  354. exec_cmd=
  355. if test -z "$show_help"; then
  356.   # Infer the operation mode.
  357.   if test -z "$mode"; then
  358.     $echo "*** Warning: inferring the mode of operation is deprecated." 1>&2
  359.     $echo "*** Future versions of Libtool will require -mode=MODE be specified." 1>&2
  360.     case $nonopt in
  361.     *cc | cc* | *++ | gcc* | *-gcc* | g++* | xlc*)
  362.       mode=link
  363.       for arg
  364.       do
  365. case $arg in
  366. -c)
  367.    mode=compile
  368.    break
  369.    ;;
  370. esac
  371.       done
  372.       ;;
  373.     *db | *dbx | *strace | *truss)
  374.       mode=execute
  375.       ;;
  376.     *install*|cp|mv)
  377.       mode=install
  378.       ;;
  379.     *rm)
  380.       mode=uninstall
  381.       ;;
  382.     *)
  383.       # If we have no mode, but dlfiles were specified, then do execute mode.
  384.       test -n "$execute_dlfiles" && mode=execute
  385.       # Just use the default operation mode.
  386.       if test -z "$mode"; then
  387. if test -n "$nonopt"; then
  388.   $echo "$modename: warning: cannot infer operation mode from `$nonopt'" 1>&2
  389. else
  390.   $echo "$modename: warning: cannot infer operation mode without MODE-ARGS" 1>&2
  391. fi
  392.       fi
  393.       ;;
  394.     esac
  395.   fi
  396.   # Only execute mode is allowed to have -dlopen flags.
  397.   if test -n "$execute_dlfiles" && test "$mode" != execute; then
  398.     $echo "$modename: unrecognized option `-dlopen'" 1>&2
  399.     $echo "$help" 1>&2
  400.     exit $EXIT_FAILURE
  401.   fi
  402.   # Change the help message to a mode-specific one.
  403.   generic_help="$help"
  404.   help="Try `$modename --help --mode=$mode' for more information."
  405.   # These modes are in order of execution frequency so that they run quickly.
  406.   case $mode in
  407.   # libtool compile mode
  408.   compile)
  409.     modename="$modename: compile"
  410.     # Get the compilation command and the source file.
  411.     base_compile=
  412.     srcfile="$nonopt"  #  always keep a non-empty value in "srcfile"
  413.     suppress_opt=yes
  414.     suppress_output=
  415.     arg_mode=normal
  416.     libobj=
  417.     later=
  418.     for arg
  419.     do
  420.       case "$arg_mode" in
  421.       arg  )
  422. # do not "continue".  Instead, add this to base_compile
  423. lastarg="$arg"
  424. arg_mode=normal
  425. ;;
  426.       target )
  427. libobj="$arg"
  428. arg_mode=normal
  429. continue
  430. ;;
  431.       normal )
  432. # Accept any command-line options.
  433. case $arg in
  434. -o)
  435.   if test -n "$libobj" ; then
  436.     $echo "$modename: you cannot specify `-o' more than once" 1>&2
  437.     exit $EXIT_FAILURE
  438.   fi
  439.   arg_mode=target
  440.   continue
  441.   ;;
  442. -static | -prefer-pic | -prefer-non-pic)
  443.   later="$later $arg"
  444.   continue
  445.   ;;
  446. -no-suppress)
  447.   suppress_opt=no
  448.   continue
  449.   ;;
  450. -Xcompiler)
  451.   arg_mode=arg  #  the next one goes into the "base_compile" arg list
  452.   continue      #  The current "srcfile" will either be retained or
  453.   ;;            #  replaced later.  I would guess that would be a bug.
  454. -Wc,*)
  455.   args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"`
  456.   lastarg=
  457.   save_ifs="$IFS"; IFS=','
  458.     for arg in $args; do
  459.     IFS="$save_ifs"
  460.     # Double-quote args containing other shell metacharacters.
  461.     # Many Bourne shells cannot handle close brackets correctly
  462.     # in scan sets, so we specify it separately.
  463.     case $arg in
  464.       *[[~#^&*(){}|;<>?'  ]*|*]*|"")
  465.       arg=""$arg""
  466.       ;;
  467.     esac
  468.     lastarg="$lastarg $arg"
  469.   done
  470.   IFS="$save_ifs"
  471.   lastarg=`$echo "X$lastarg" | $Xsed -e "s/^ //"`
  472.   # Add the arguments to base_compile.
  473.   base_compile="$base_compile $lastarg"
  474.   continue
  475.   ;;
  476. * )
  477.   # Accept the current argument as the source file.
  478.   # The previous "srcfile" becomes the current argument.
  479.   #
  480.   lastarg="$srcfile"
  481.   srcfile="$arg"
  482.   ;;
  483. esac  #  case $arg
  484. ;;
  485.       esac    #  case $arg_mode
  486.       # Aesthetically quote the previous argument.
  487.       lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"`
  488.       case $lastarg in
  489.       # Double-quote args containing other shell metacharacters.
  490.       # Many Bourne shells cannot handle close brackets correctly
  491.       # in scan sets, so we specify it separately.
  492.       *[[~#^&*(){}|;<>?'  ]*|*]*|"")
  493. lastarg=""$lastarg""
  494. ;;
  495.       esac
  496.       base_compile="$base_compile $lastarg"
  497.     done # for arg
  498.     case $arg_mode in
  499.     arg)
  500.       $echo "$modename: you must specify an argument for -Xcompile"
  501.       exit $EXIT_FAILURE
  502.       ;;
  503.     target)
  504.       $echo "$modename: you must specify a target with `-o'" 1>&2
  505.       exit $EXIT_FAILURE
  506.       ;;
  507.     *)
  508.       # Get the name of the library object.
  509.       [ -z "$libobj" ] && libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'`
  510.       ;;
  511.     esac
  512.     # Recognize several different file suffixes.
  513.     # If the user specifies -o file.o, it is replaced with file.lo
  514.     xform='[cCFSifmso]'
  515.     case $libobj in
  516.     *.ada) xform=ada ;;
  517.     *.adb) xform=adb ;;
  518.     *.ads) xform=ads ;;
  519.     *.asm) xform=asm ;;
  520.     *.c++) xform=c++ ;;
  521.     *.cc) xform=cc ;;
  522.     *.ii) xform=ii ;;
  523.     *.class) xform=class ;;
  524.     *.cpp) xform=cpp ;;
  525.     *.cxx) xform=cxx ;;
  526.     *.f90) xform=f90 ;;
  527.     *.for) xform=for ;;
  528.     *.java) xform=java ;;
  529.     esac
  530.     libobj=`$echo "X$libobj" | $Xsed -e "s/.$xform$/.lo/"`
  531.     case $libobj in
  532.     *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;;
  533.     *)
  534.       $echo "$modename: cannot determine name of library object from `$libobj'" 1>&2
  535.       exit $EXIT_FAILURE
  536.       ;;
  537.     esac
  538.     func_infer_tag $base_compile
  539.     for arg in $later; do
  540.       case $arg in
  541.       -static)
  542. build_old_libs=yes
  543. continue
  544. ;;
  545.       -prefer-pic)
  546. pic_mode=yes
  547. continue
  548. ;;
  549.       -prefer-non-pic)
  550. pic_mode=no
  551. continue
  552. ;;
  553.       esac
  554.     done
  555.     objname=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`
  556.     xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`
  557.     if test "X$xdir" = "X$obj"; then
  558.       xdir=
  559.     else
  560.       xdir=$xdir/
  561.     fi
  562.     lobj=${xdir}$objdir/$objname
  563.     if test -z "$base_compile"; then
  564.       $echo "$modename: you must specify a compilation command" 1>&2
  565.       $echo "$help" 1>&2
  566.       exit $EXIT_FAILURE
  567.     fi
  568.     # Delete any leftover library objects.
  569.     if test "$build_old_libs" = yes; then
  570.       removelist="$obj $lobj $libobj ${libobj}T"
  571.     else
  572.       removelist="$lobj $libobj ${libobj}T"
  573.     fi
  574.     $run $rm $removelist
  575.     trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15
  576.     # On Cygwin there's no "real" PIC flag so we must build both object types
  577.     case $host_os in
  578.     cygwin* | mingw* | pw32* | os2*)
  579.       pic_mode=default
  580.       ;;
  581.     esac
  582.     if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then
  583.       # non-PIC code in shared libraries is not supported
  584.       pic_mode=default
  585.     fi
  586.     # Calculate the filename of the output object if compiler does
  587.     # not support -o with -c
  588.     if test "$compiler_c_o" = no; then
  589.       output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%.[^.]*$%%'`.${objext}
  590.       lockfile="$output_obj.lock"
  591.       removelist="$removelist $output_obj $lockfile"
  592.       trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15
  593.     else
  594.       output_obj=
  595.       need_locks=no
  596.       lockfile=
  597.     fi
  598.     # Lock this critical section if it is needed
  599.     # We use this script file to make the link, it avoids creating a new file
  600.     if test "$need_locks" = yes; then
  601.       until $run ln "$progpath" "$lockfile" 2>/dev/null; do
  602. $show "Waiting for $lockfile to be removed"
  603. sleep 2
  604.       done
  605.     elif test "$need_locks" = warn; then
  606.       if test -f "$lockfile"; then
  607. $echo "
  608. *** ERROR, $lockfile exists and contains:
  609. `cat $lockfile 2>/dev/null`
  610. This indicates that another process is trying to use the same
  611. temporary object file, and libtool could not work around it because
  612. your compiler does not support `-c' and `-o' together.  If you
  613. repeat this compilation, it may succeed, by chance, but you had better
  614. avoid parallel builds (make -j) in this platform, or get a better
  615. compiler."
  616. $run $rm $removelist
  617. exit $EXIT_FAILURE
  618.       fi
  619.       $echo $srcfile > "$lockfile"
  620.     fi
  621.     if test -n "$fix_srcfile_path"; then
  622.       eval srcfile="$fix_srcfile_path"
  623.     fi
  624.     $run $rm "$libobj" "${libobj}T"
  625.     # Create a libtool object file (analogous to a ".la" file),
  626.     # but don't create it if we're doing a dry run.
  627.     test -z "$run" && cat > ${libobj}T <<EOF
  628. # $libobj - a libtool object file
  629. # Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
  630. #
  631. # Please DO NOT delete this file!
  632. # It is necessary for linking the library.
  633. # Name of the PIC object.
  634. EOF
  635.     # Only build a PIC object if we are building libtool libraries.
  636.     if test "$build_libtool_libs" = yes; then
  637.       # Without this assignment, base_compile gets emptied.
  638.       fbsd_hideous_sh_bug=$base_compile
  639.       if test "$pic_mode" != no; then
  640. command="$base_compile $srcfile $pic_flag"
  641.       else
  642. # Don't build PIC code
  643. command="$base_compile $srcfile"
  644.       fi
  645.       if test ! -d "${xdir}$objdir"; then
  646. $show "$mkdir ${xdir}$objdir"
  647. $run $mkdir ${xdir}$objdir
  648. status=$?
  649. if test "$status" -ne 0 && test ! -d "${xdir}$objdir"; then
  650.   exit $status
  651. fi
  652.       fi
  653.       if test -z "$output_obj"; then
  654. # Place PIC objects in $objdir
  655. command="$command -o $lobj"
  656.       fi
  657.       $run $rm "$lobj" "$output_obj"
  658.       $show "$command"
  659.       if $run eval "$command"; then :
  660.       else
  661. test -n "$output_obj" && $run $rm $removelist
  662. exit $EXIT_FAILURE
  663.       fi
  664.       if test "$need_locks" = warn &&
  665.  test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
  666. $echo "
  667. *** ERROR, $lockfile contains:
  668. `cat $lockfile 2>/dev/null`
  669. but it should contain:
  670. $srcfile
  671. This indicates that another process is trying to use the same
  672. temporary object file, and libtool could not work around it because
  673. your compiler does not support `-c' and `-o' together.  If you
  674. repeat this compilation, it may succeed, by chance, but you had better
  675. avoid parallel builds (make -j) in this platform, or get a better
  676. compiler."
  677. $run $rm $removelist
  678. exit $EXIT_FAILURE
  679.       fi
  680.       # Just move the object if needed, then go on to compile the next one
  681.       if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then
  682. $show "$mv $output_obj $lobj"
  683. if $run $mv $output_obj $lobj; then :
  684. else
  685.   error=$?
  686.   $run $rm $removelist
  687.   exit $error
  688. fi
  689.       fi
  690.       # Append the name of the PIC object to the libtool object file.
  691.       test -z "$run" && cat >> ${libobj}T <<EOF
  692. pic_object='$objdir/$objname'
  693. EOF
  694.       # Allow error messages only from the first compilation.
  695.       if test "$suppress_opt" = yes; then
  696.         suppress_output=' >/dev/null 2>&1'
  697.       fi
  698.     else
  699.       # No PIC object so indicate it doesn't exist in the libtool
  700.       # object file.
  701.       test -z "$run" && cat >> ${libobj}T <<EOF
  702. pic_object=none
  703. EOF
  704.     fi
  705.     # Only build a position-dependent object if we build old libraries.
  706.     if test "$build_old_libs" = yes; then
  707.       if test "$pic_mode" != yes; then
  708. # Don't build PIC code
  709. command="$base_compile $srcfile"
  710.       else
  711. command="$base_compile $srcfile $pic_flag"
  712.       fi
  713.       if test "$compiler_c_o" = yes; then
  714. command="$command -o $obj"
  715.       fi
  716.       # Suppress compiler output if we already did a PIC compilation.
  717.       command="$command$suppress_output"
  718.       $run $rm "$obj" "$output_obj"
  719.       $show "$command"
  720.       if $run eval "$command"; then :
  721.       else
  722. $run $rm $removelist
  723. exit $EXIT_FAILURE
  724.       fi
  725.       if test "$need_locks" = warn &&
  726.  test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
  727. $echo "
  728. *** ERROR, $lockfile contains:
  729. `cat $lockfile 2>/dev/null`
  730. but it should contain:
  731. $srcfile
  732. This indicates that another process is trying to use the same
  733. temporary object file, and libtool could not work around it because
  734. your compiler does not support `-c' and `-o' together.  If you
  735. repeat this compilation, it may succeed, by chance, but you had better
  736. avoid parallel builds (make -j) in this platform, or get a better
  737. compiler."
  738. $run $rm $removelist
  739. exit $EXIT_FAILURE
  740.       fi
  741.       # Just move the object if needed
  742.       if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then
  743. $show "$mv $output_obj $obj"
  744. if $run $mv $output_obj $obj; then :
  745. else
  746.   error=$?
  747.   $run $rm $removelist
  748.   exit $error
  749. fi
  750.       fi
  751.       # Append the name of the non-PIC object the libtool object file.
  752.       # Only append if the libtool object file exists.
  753.       test -z "$run" && cat >> ${libobj}T <<EOF
  754. # Name of the non-PIC object.
  755. non_pic_object='$objname'
  756. EOF
  757.     else
  758.       # Append the name of the non-PIC object the libtool object file.
  759.       # Only append if the libtool object file exists.
  760.       test -z "$run" && cat >> ${libobj}T <<EOF
  761. # Name of the non-PIC object.
  762. non_pic_object=none
  763. EOF
  764.     fi
  765.     $run $mv "${libobj}T" "${libobj}"
  766.     # Unlock the critical section if it was locked
  767.     if test "$need_locks" != no; then
  768.       $run $rm "$lockfile"
  769.     fi
  770.     exit $EXIT_SUCCESS
  771.     ;;
  772.   # libtool link mode
  773.   link | relink)
  774.     modename="$modename: link"
  775.     case $host in
  776.     *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
  777.       # It is impossible to link a dll without this setting, and
  778.       # we shouldn't force the makefile maintainer to figure out
  779.       # which system we are compiling for in order to pass an extra
  780.       # flag for every libtool invocation.
  781.       # allow_undefined=no
  782.       # FIXME: Unfortunately, there are problems with the above when trying
  783.       # to make a dll which has undefined symbols, in which case not
  784.       # even a static library is built.  For now, we need to specify
  785.       # -no-undefined on the libtool link line when we can be certain
  786.       # that all symbols are satisfied, otherwise we get a static library.
  787.       allow_undefined=yes
  788.       ;;
  789.     *)
  790.       allow_undefined=yes
  791.       ;;
  792.     esac
  793.     libtool_args="$nonopt"
  794.     base_compile="$nonopt $@"
  795.     compile_command="$nonopt"
  796.     finalize_command="$nonopt"
  797.     compile_rpath=
  798.     finalize_rpath=
  799.     compile_shlibpath=
  800.     finalize_shlibpath=
  801.     convenience=
  802.     old_convenience=
  803.     deplibs=
  804.     old_deplibs=
  805.     compiler_flags=
  806.     linker_flags=
  807.     dllsearchpath=
  808.     lib_search_path=`pwd`
  809.     inst_prefix_dir=
  810.     avoid_version=no
  811.     dlfiles=
  812.     dlprefiles=
  813.     dlself=no
  814.     export_dynamic=no
  815.     export_symbols=
  816.     export_symbols_regex=
  817.     generated=
  818.     libobjs=
  819.     ltlibs=
  820.     module=no
  821.     no_install=no
  822.     objs=
  823.     non_pic_objects=
  824.     precious_files_regex=
  825.     prefer_static_libs=no
  826.     preload=no
  827.     prev=
  828.     prevarg=
  829.     release=
  830.     rpath=
  831.     xrpath=
  832.     perm_rpath=
  833.     temp_rpath=
  834.     thread_safe=no
  835.     vinfo=
  836.     vinfo_number=no
  837.     func_infer_tag $base_compile
  838.     # We need to know -static, to get the right output filenames.
  839.     for arg
  840.     do
  841.       case $arg in
  842.       -all-static | -static)
  843. if test "X$arg" = "X-all-static"; then
  844.   if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then
  845.     $echo "$modename: warning: complete static linking is impossible in this configuration" 1>&2
  846.   fi
  847.   if test -n "$link_static_flag"; then
  848.     dlopen_self=$dlopen_self_static
  849.   fi
  850. else
  851.   if test -z "$pic_flag" && test -n "$link_static_flag"; then
  852.     dlopen_self=$dlopen_self_static
  853.   fi
  854. fi
  855. build_libtool_libs=no
  856. build_old_libs=yes
  857. prefer_static_libs=yes
  858. break
  859. ;;
  860.       esac
  861.     done
  862.     # See if our shared archives depend on static archives.
  863.     test -n "$old_archive_from_new_cmds" && build_old_libs=yes
  864.     # Go through the arguments, transforming them on the way.
  865.     while test "$#" -gt 0; do
  866.       arg="$1"
  867.       shift
  868.       case $arg in
  869.       *[[~#^&*(){}|;<>?'  ]*|*]*|"")
  870. qarg="`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`" ### testsuite: skip nested quoting test
  871. ;;
  872.       *) qarg=$arg ;;
  873.       esac
  874.       libtool_args="$libtool_args $qarg"
  875.       # If the previous option needs an argument, assign it.
  876.       if test -n "$prev"; then
  877. case $prev in
  878. output)
  879.   compile_command="$compile_command @OUTPUT@"
  880.   finalize_command="$finalize_command @OUTPUT@"
  881.   ;;
  882. esac
  883. case $prev in
  884. dlfiles|dlprefiles)
  885.   if test "$preload" = no; then
  886.     # Add the symbol object into the linking commands.
  887.     compile_command="$compile_command @SYMFILE@"
  888.     finalize_command="$finalize_command @SYMFILE@"
  889.     preload=yes
  890.   fi
  891.   case $arg in
  892.   *.la | *.lo) ;;  # We handle these cases below.
  893.   force)
  894.     if test "$dlself" = no; then
  895.       dlself=needless
  896.       export_dynamic=yes
  897.     fi
  898.     prev=
  899.     continue
  900.     ;;
  901.   self)
  902.     if test "$prev" = dlprefiles; then
  903.       dlself=yes
  904.     elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then
  905.       dlself=yes
  906.     else
  907.       dlself=needless
  908.       export_dynamic=yes
  909.     fi
  910.     prev=
  911.     continue
  912.     ;;
  913.   *)
  914.     if test "$prev" = dlfiles; then
  915.       dlfiles="$dlfiles $arg"
  916.     else
  917.       dlprefiles="$dlprefiles $arg"
  918.     fi
  919.     prev=
  920.     continue
  921.     ;;
  922.   esac
  923.   ;;
  924. expsyms)
  925.   export_symbols="$arg"
  926.   if test ! -f "$arg"; then
  927.     $echo "$modename: symbol file `$arg' does not exist"
  928.     exit $EXIT_FAILURE
  929.   fi
  930.   prev=
  931.   continue
  932.   ;;
  933. expsyms_regex)
  934.   export_symbols_regex="$arg"
  935.   prev=
  936.   continue
  937.   ;;
  938. inst_prefix)
  939.   inst_prefix_dir="$arg"
  940.   prev=
  941.   continue
  942.   ;;
  943. precious_regex)
  944.   precious_files_regex="$arg"
  945.   prev=
  946.   continue
  947.   ;;
  948. release)
  949.   release="-$arg"
  950.   prev=
  951.   continue
  952.   ;;
  953. objectlist)
  954.   if test -f "$arg"; then
  955.     save_arg=$arg
  956.     moreargs=
  957.     for fil in `cat $save_arg`
  958.     do
  959. #       moreargs="$moreargs $fil"
  960.       arg=$fil
  961.       # A libtool-controlled object.
  962.       # Check to see that this really is a libtool object.
  963.       if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
  964. pic_object=
  965. non_pic_object=
  966. # Read the .lo file
  967. # If there is no directory component, then add one.
  968. case $arg in
  969. */* | *\*) . $arg ;;
  970. *) . ./$arg ;;
  971. esac
  972. if test -z "$pic_object" || 
  973.    test -z "$non_pic_object" ||
  974.    test "$pic_object" = none && 
  975.    test "$non_pic_object" = none; then
  976.   $echo "$modename: cannot find name of object for `$arg'" 1>&2
  977.   exit $EXIT_FAILURE
  978. fi
  979. # Extract subdirectory from the argument.
  980. xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
  981. if test "X$xdir" = "X$arg"; then
  982.   xdir=
  983. else
  984.   xdir="$xdir/"
  985. fi
  986. if test "$pic_object" != none; then
  987.   # Prepend the subdirectory the object is found in.
  988.   pic_object="$xdir$pic_object"
  989.   if test "$prev" = dlfiles; then
  990.     if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
  991.       dlfiles="$dlfiles $pic_object"
  992.       prev=
  993.       continue
  994.     else
  995.       # If libtool objects are unsupported, then we need to preload.
  996.       prev=dlprefiles
  997.     fi
  998.   fi
  999.   # CHECK ME:  I think I busted this.  -Ossama
  1000.   if test "$prev" = dlprefiles; then
  1001.     # Preload the old-style object.
  1002.     dlprefiles="$dlprefiles $pic_object"
  1003.     prev=
  1004.   fi
  1005.   # A PIC object.
  1006.   libobjs="$libobjs $pic_object"
  1007.   arg="$pic_object"
  1008. fi
  1009. # Non-PIC object.
  1010. if test "$non_pic_object" != none; then
  1011.   # Prepend the subdirectory the object is found in.
  1012.   non_pic_object="$xdir$non_pic_object"
  1013.   # A standard non-PIC object
  1014.   non_pic_objects="$non_pic_objects $non_pic_object"
  1015.   if test -z "$pic_object" || test "$pic_object" = none ; then
  1016.     arg="$non_pic_object"
  1017.   fi
  1018. fi
  1019.       else
  1020. # Only an error if not doing a dry-run.
  1021. if test -z "$run"; then
  1022.   $echo "$modename: `$arg' is not a valid libtool object" 1>&2
  1023.   exit $EXIT_FAILURE
  1024. else
  1025.   # Dry-run case.
  1026.   # Extract subdirectory from the argument.
  1027.   xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
  1028.   if test "X$xdir" = "X$arg"; then
  1029.     xdir=
  1030.   else
  1031.     xdir="$xdir/"
  1032.   fi
  1033.   pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"`
  1034.   non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"`
  1035.   libobjs="$libobjs $pic_object"
  1036.   non_pic_objects="$non_pic_objects $non_pic_object"
  1037. fi
  1038.       fi
  1039.     done
  1040.   else
  1041.     $echo "$modename: link input file `$save_arg' does not exist"
  1042.     exit $EXIT_FAILURE
  1043.   fi
  1044.   arg=$save_arg
  1045.   prev=
  1046.   continue
  1047.   ;;
  1048. rpath | xrpath)
  1049.   # We need an absolute path.
  1050.   case $arg in
  1051.   [\/]* | [A-Za-z]:[\/]*) ;;
  1052.   *)
  1053.     $echo "$modename: only absolute run-paths are allowed" 1>&2
  1054.     exit $EXIT_FAILURE
  1055.     ;;
  1056.   esac
  1057.   if test "$prev" = rpath; then
  1058.     case "$rpath " in
  1059.     *" $arg "*) ;;
  1060.     *) rpath="$rpath $arg" ;;
  1061.     esac
  1062.   else
  1063.     case "$xrpath " in
  1064.     *" $arg "*) ;;
  1065.     *) xrpath="$xrpath $arg" ;;
  1066.     esac
  1067.   fi
  1068.   prev=
  1069.   continue
  1070.   ;;
  1071. xcompiler)
  1072.   compiler_flags="$compiler_flags $qarg"
  1073.   prev=
  1074.   compile_command="$compile_command $qarg"
  1075.   finalize_command="$finalize_command $qarg"
  1076.   continue
  1077.   ;;
  1078. xlinker)
  1079.   linker_flags="$linker_flags $qarg"
  1080.   compiler_flags="$compiler_flags $wl$qarg"
  1081.   prev=
  1082.   compile_command="$compile_command $wl$qarg"
  1083.   finalize_command="$finalize_command $wl$qarg"
  1084.   continue
  1085.   ;;
  1086. xcclinker)
  1087.   linker_flags="$linker_flags $qarg"
  1088.   compiler_flags="$compiler_flags $qarg"
  1089.   prev=
  1090.   compile_command="$compile_command $qarg"
  1091.   finalize_command="$finalize_command $qarg"
  1092.   continue
  1093.   ;;
  1094. shrext)
  1095.      shrext_cmds="$arg"
  1096.   prev=
  1097.   continue
  1098.   ;;
  1099. *)
  1100.   eval "$prev="$arg""
  1101.   prev=
  1102.   continue
  1103.   ;;
  1104. esac
  1105.       fi # test -n "$prev"
  1106.       prevarg="$arg"
  1107.       case $arg in
  1108.       -all-static)
  1109. if test -n "$link_static_flag"; then
  1110.   compile_command="$compile_command $link_static_flag"
  1111.   finalize_command="$finalize_command $link_static_flag"
  1112. fi
  1113. continue
  1114. ;;
  1115.       -allow-undefined)
  1116. # FIXME: remove this flag sometime in the future.
  1117. $echo "$modename: `-allow-undefined' is deprecated because it is the default" 1>&2
  1118. continue
  1119. ;;
  1120.       -avoid-version)
  1121. avoid_version=yes
  1122. continue
  1123. ;;
  1124.       -dlopen)
  1125. prev=dlfiles
  1126. continue
  1127. ;;
  1128.       -dlpreopen)
  1129. prev=dlprefiles
  1130. continue
  1131. ;;
  1132.       -export-dynamic)
  1133. export_dynamic=yes
  1134. continue
  1135. ;;
  1136.       -export-symbols | -export-symbols-regex)
  1137. if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
  1138.   $echo "$modename: more than one -exported-symbols argument is not allowed"
  1139.   exit $EXIT_FAILURE
  1140. fi
  1141. if test "X$arg" = "X-export-symbols"; then
  1142.   prev=expsyms
  1143. else
  1144.   prev=expsyms_regex
  1145. fi
  1146. continue
  1147. ;;
  1148.       -inst-prefix-dir)
  1149. prev=inst_prefix
  1150. continue
  1151. ;;
  1152.       # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:*
  1153.       # so, if we see these flags be careful not to treat them like -L
  1154.       -L[A-Z][A-Z]*:*)
  1155. case $with_gcc/$host in
  1156. no/*-*-irix* | /*-*-irix*)
  1157.   compile_command="$compile_command $arg"
  1158.   finalize_command="$finalize_command $arg"
  1159.   ;;
  1160. esac
  1161. continue
  1162. ;;
  1163.       -L*)
  1164. dir=`$echo "X$arg" | $Xsed -e 's/^-L//'`
  1165. # We need an absolute path.
  1166. case $dir in
  1167. [\/]* | [A-Za-z]:[\/]*) ;;
  1168. *)
  1169.   absdir=`cd "$dir" && pwd`
  1170.   if test -z "$absdir"; then
  1171.     $echo "$modename: cannot determine absolute directory name of `$dir'" 1>&2
  1172.     exit $EXIT_FAILURE
  1173.   fi
  1174.   dir="$absdir"
  1175.   ;;
  1176. esac
  1177. case "$deplibs " in
  1178. *" -L$dir "*) ;;
  1179. *)
  1180.   deplibs="$deplibs -L$dir"
  1181.   lib_search_path="$lib_search_path $dir"
  1182.   ;;
  1183. esac
  1184. case $host in
  1185. *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
  1186.   case :$dllsearchpath: in
  1187.   *":$dir:"*) ;;
  1188.   *) dllsearchpath="$dllsearchpath:$dir";;
  1189.   esac
  1190.   ;;
  1191. esac
  1192. continue
  1193. ;;
  1194.       -l*)
  1195. if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then
  1196.   case $host in
  1197.   *-*-cygwin* | *-*-pw32* | *-*-beos*)
  1198.     # These systems don't actually have a C or math library (as such)
  1199.     continue
  1200.     ;;
  1201.   *-*-mingw* | *-*-os2*)
  1202.     # These systems don't actually have a C library (as such)
  1203.     test "X$arg" = "X-lc" && continue
  1204.     ;;
  1205.   *-*-openbsd* | *-*-freebsd*)
  1206.     # Do not include libc due to us having libc/libc_r.
  1207.     test "X$arg" = "X-lc" && continue
  1208.     ;;
  1209.   *-*-rhapsody* | *-*-darwin1.[012])
  1210.     # Rhapsody C and math libraries are in the System framework
  1211.     deplibs="$deplibs -framework System"
  1212.     continue
  1213.   esac
  1214. elif test "X$arg" = "X-lc_r"; then
  1215.  case $host in
  1216.  *-*-openbsd* | *-*-freebsd*)
  1217.    # Do not include libc_r directly, use -pthread flag.
  1218.    continue
  1219.    ;;
  1220.  esac
  1221. fi
  1222. deplibs="$deplibs $arg"
  1223. continue
  1224. ;;
  1225.      -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe)
  1226. deplibs="$deplibs $arg"
  1227. continue
  1228. ;;
  1229.       -module)
  1230. module=yes
  1231. continue
  1232. ;;
  1233.       # gcc -m* arguments should be passed to the linker via $compiler_flags
  1234.       # in order to pass architecture information to the linker
  1235.       # (e.g. 32 vs 64-bit).  This may also be accomplished via -Wl,-mfoo
  1236.       # but this is not reliable with gcc because gcc may use -mfoo to
  1237.       # select a different linker, different libraries, etc, while
  1238.       # -Wl,-mfoo simply passes -mfoo to the linker.
  1239.       -m*)
  1240. # Unknown arguments in both finalize_command and compile_command need
  1241. # to be aesthetically quoted because they are evaled later.
  1242. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
  1243. case $arg in
  1244. *[[~#^&*(){}|;<>?'  ]*|*]*|"")
  1245.   arg=""$arg""
  1246.   ;;
  1247. esac
  1248.         compile_command="$compile_command $arg"
  1249.         finalize_command="$finalize_command $arg"
  1250.         if test "$with_gcc" = "yes" ; then
  1251.           compiler_flags="$compiler_flags $arg"
  1252.         fi
  1253.         continue
  1254.         ;;
  1255.       -shrext)
  1256. prev=shrext
  1257. continue
  1258. ;;
  1259.       -no-fast-install)
  1260. fast_install=no
  1261. continue
  1262. ;;
  1263.       -no-install)
  1264. case $host in
  1265. *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
  1266.   # The PATH hackery in wrapper scripts is required on Windows
  1267.   # in order for the loader to find any dlls it needs.
  1268.   $echo "$modename: warning: `-no-install' is ignored for $host" 1>&2
  1269.   $echo "$modename: warning: assuming `-no-fast-install' instead" 1>&2
  1270.   fast_install=no
  1271.   ;;
  1272. *) no_install=yes ;;
  1273. esac
  1274. continue
  1275. ;;
  1276.       -no-undefined)
  1277. allow_undefined=no
  1278. continue
  1279. ;;
  1280.       -objectlist)
  1281. prev=objectlist
  1282. continue
  1283. ;;
  1284.       -o) prev=output ;;
  1285.       -precious-files-regex)
  1286. prev=precious_regex
  1287. continue
  1288. ;;
  1289.       -release)
  1290. prev=release
  1291. continue
  1292. ;;
  1293.       -rpath)
  1294. prev=rpath
  1295. continue
  1296. ;;
  1297.       -R)
  1298. prev=xrpath
  1299. continue
  1300. ;;
  1301.       -R*)
  1302. dir=`$echo "X$arg" | $Xsed -e 's/^-R//'`
  1303. # We need an absolute path.
  1304. case $dir in
  1305. [\/]* | [A-Za-z]:[\/]*) ;;
  1306. *)
  1307.   $echo "$modename: only absolute run-paths are allowed" 1>&2
  1308.   exit $EXIT_FAILURE
  1309.   ;;
  1310. esac
  1311. case "$xrpath " in
  1312. *" $dir "*) ;;
  1313. *) xrpath="$xrpath $dir" ;;
  1314. esac
  1315. continue
  1316. ;;
  1317.       -static)
  1318. # The effects of -static are defined in a previous loop.
  1319. # We used to do the same as -all-static on platforms that
  1320. # didn't have a PIC flag, but the assumption that the effects
  1321. # would be equivalent was wrong.  It would break on at least
  1322. # Digital Unix and AIX.
  1323. continue
  1324. ;;
  1325.       -thread-safe)
  1326. thread_safe=yes
  1327. continue
  1328. ;;
  1329.       -version-info)
  1330. prev=vinfo
  1331. continue
  1332. ;;
  1333.       -version-number)
  1334. prev=vinfo
  1335. vinfo_number=yes
  1336. continue
  1337. ;;
  1338.       -Wc,*)
  1339. args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wc,//'`
  1340. arg=
  1341. save_ifs="$IFS"; IFS=','
  1342. for flag in $args; do
  1343.   IFS="$save_ifs"
  1344.   case $flag in
  1345.     *[[~#^&*(){}|;<>?'  ]*|*]*|"")
  1346.     flag=""$flag""
  1347.     ;;
  1348.   esac
  1349.   arg="$arg $wl$flag"
  1350.   compiler_flags="$compiler_flags $flag"
  1351. done
  1352. IFS="$save_ifs"
  1353. arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
  1354. ;;
  1355.       -Wl,*)
  1356. args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wl,//'`
  1357. arg=
  1358. save_ifs="$IFS"; IFS=','
  1359. for flag in $args; do
  1360.   IFS="$save_ifs"
  1361.   case $flag in
  1362.     *[[~#^&*(){}|;<>?'  ]*|*]*|"")
  1363.     flag=""$flag""
  1364.     ;;
  1365.   esac
  1366.   arg="$arg $wl$flag"
  1367.   compiler_flags="$compiler_flags $wl$flag"
  1368.   linker_flags="$linker_flags $flag"
  1369. done
  1370. IFS="$save_ifs"
  1371. arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
  1372. ;;
  1373.       -Xcompiler)
  1374. prev=xcompiler
  1375. continue
  1376. ;;
  1377.       -Xlinker)
  1378. prev=xlinker
  1379. continue
  1380. ;;
  1381.       -XCClinker)
  1382. prev=xcclinker
  1383. continue
  1384. ;;
  1385.       # Some other compiler flag.
  1386.       -* | +*)
  1387. # Unknown arguments in both finalize_command and compile_command need
  1388. # to be aesthetically quoted because they are evaled later.
  1389. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
  1390. case $arg in
  1391. *[[~#^&*(){}|;<>?'  ]*|*]*|"")
  1392.   arg=""$arg""
  1393.   ;;
  1394. esac
  1395. ;;
  1396.       *.$objext)
  1397. # A standard object.
  1398. objs="$objs $arg"
  1399. ;;
  1400.       *.lo)
  1401. # A libtool-controlled object.
  1402. # Check to see that this really is a libtool object.
  1403. if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
  1404.   pic_object=
  1405.   non_pic_object=
  1406.   # Read the .lo file
  1407.   # If there is no directory component, then add one.
  1408.   case $arg in
  1409.   */* | *\*) . $arg ;;
  1410.   *) . ./$arg ;;
  1411.   esac
  1412.   if test -z "$pic_object" || 
  1413.      test -z "$non_pic_object" ||
  1414.      test "$pic_object" = none && 
  1415.      test "$non_pic_object" = none; then
  1416.     $echo "$modename: cannot find name of object for `$arg'" 1>&2
  1417.     exit $EXIT_FAILURE
  1418.   fi
  1419.   # Extract subdirectory from the argument.
  1420.   xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
  1421.   if test "X$xdir" = "X$arg"; then
  1422.     xdir=
  1423.     else
  1424.     xdir="$xdir/"
  1425.   fi
  1426.   if test "$pic_object" != none; then
  1427.     # Prepend the subdirectory the object is found in.
  1428.     pic_object="$xdir$pic_object"
  1429.     if test "$prev" = dlfiles; then
  1430.       if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
  1431. dlfiles="$dlfiles $pic_object"
  1432. prev=
  1433. continue
  1434.       else
  1435. # If libtool objects are unsupported, then we need to preload.
  1436. prev=dlprefiles
  1437.       fi
  1438.     fi
  1439.     # CHECK ME:  I think I busted this.  -Ossama
  1440.     if test "$prev" = dlprefiles; then
  1441.       # Preload the old-style object.
  1442.       dlprefiles="$dlprefiles $pic_object"
  1443.       prev=
  1444.     fi
  1445.     # A PIC object.
  1446.     libobjs="$libobjs $pic_object"
  1447.     arg="$pic_object"
  1448.   fi
  1449.   # Non-PIC object.
  1450.   if test "$non_pic_object" != none; then
  1451.     # Prepend the subdirectory the object is found in.
  1452.     non_pic_object="$xdir$non_pic_object"
  1453.     # A standard non-PIC object
  1454.     non_pic_objects="$non_pic_objects $non_pic_object"
  1455.     if test -z "$pic_object" || test "$pic_object" = none ; then
  1456.       arg="$non_pic_object"
  1457.     fi
  1458.   fi
  1459. else
  1460.   # Only an error if not doing a dry-run.
  1461.   if test -z "$run"; then
  1462.     $echo "$modename: `$arg' is not a valid libtool object" 1>&2
  1463.     exit $EXIT_FAILURE
  1464.   else
  1465.     # Dry-run case.
  1466.     # Extract subdirectory from the argument.
  1467.     xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
  1468.     if test "X$xdir" = "X$arg"; then
  1469.       xdir=
  1470.     else
  1471.       xdir="$xdir/"
  1472.     fi
  1473.     pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"`
  1474.     non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"`
  1475.     libobjs="$libobjs $pic_object"
  1476.     non_pic_objects="$non_pic_objects $non_pic_object"
  1477.   fi
  1478. fi
  1479. ;;
  1480.       *.$libext)
  1481. # An archive.
  1482. deplibs="$deplibs $arg"
  1483. old_deplibs="$old_deplibs $arg"
  1484. continue
  1485. ;;
  1486.       *.la)
  1487. # A libtool-controlled library.
  1488. if test "$prev" = dlfiles; then
  1489.   # This library was specified with -dlopen.
  1490.   dlfiles="$dlfiles $arg"
  1491.   prev=
  1492. elif test "$prev" = dlprefiles; then
  1493.   # The library was specified with -dlpreopen.
  1494.   dlprefiles="$dlprefiles $arg"
  1495.   prev=
  1496. else
  1497.   deplibs="$deplibs $arg"
  1498. fi
  1499. continue
  1500. ;;
  1501.       # Some other compiler argument.
  1502.       *)
  1503. # Unknown arguments in both finalize_command and compile_command need
  1504. # to be aesthetically quoted because they are evaled later.
  1505. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
  1506. case $arg in
  1507. *[[~#^&*(){}|;<>?'  ]*|*]*|"")
  1508.   arg=""$arg""
  1509.   ;;
  1510. esac
  1511. ;;
  1512.       esac # arg
  1513.       # Now actually substitute the argument into the commands.
  1514.       if test -n "$arg"; then
  1515. compile_command="$compile_command $arg"
  1516. finalize_command="$finalize_command $arg"
  1517.       fi
  1518.     done # argument parsing loop
  1519.     if test -n "$prev"; then
  1520.       $echo "$modename: the `$prevarg' option requires an argument" 1>&2
  1521.       $echo "$help" 1>&2
  1522.       exit $EXIT_FAILURE
  1523.     fi
  1524.     if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then
  1525.       eval arg="$export_dynamic_flag_spec"
  1526.       compile_command="$compile_command $arg"
  1527.       finalize_command="$finalize_command $arg"
  1528.     fi
  1529.     oldlibs=
  1530.     # calculate the name of the file, without its directory
  1531.     outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'`
  1532.     libobjs_save="$libobjs"
  1533.     if test -n "$shlibpath_var"; then
  1534.       # get the directories listed in $shlibpath_var
  1535.       eval shlib_search_path=`$echo "X${$shlibpath_var}" | $Xsed -e 's/:/ /g'`
  1536.     else
  1537.       shlib_search_path=
  1538.     fi
  1539.     eval sys_lib_search_path="$sys_lib_search_path_spec"
  1540.     eval sys_lib_dlsearch_path="$sys_lib_dlsearch_path_spec"
  1541.     output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'`
  1542.     if test "X$output_objdir" = "X$output"; then
  1543.       output_objdir="$objdir"
  1544.     else
  1545.       output_objdir="$output_objdir/$objdir"
  1546.     fi
  1547.     # Create the object directory.
  1548.     if test ! -d "$output_objdir"; then
  1549.       $show "$mkdir $output_objdir"
  1550.       $run $mkdir $output_objdir
  1551.       status=$?
  1552.       if test "$status" -ne 0 && test ! -d "$output_objdir"; then
  1553. exit $status
  1554.       fi
  1555.     fi
  1556.     # Determine the type of output
  1557.     case $output in
  1558.     "")
  1559.       $echo "$modename: you must specify an output file" 1>&2
  1560.       $echo "$help" 1>&2
  1561.       exit $EXIT_FAILURE
  1562.       ;;
  1563.     *.$libext) linkmode=oldlib ;;
  1564.     *.lo | *.$objext) linkmode=obj ;;
  1565.     *.la) linkmode=lib ;;
  1566.     *) linkmode=prog ;; # Anything else should be a program.
  1567.     esac
  1568.     case $host in
  1569.     *cygwin* | *mingw* | *pw32*)
  1570.       # don't eliminate duplications in $postdeps and $predeps
  1571.       duplicate_compiler_generated_deps=yes
  1572.       ;;
  1573.     *)
  1574.       duplicate_compiler_generated_deps=$duplicate_deps
  1575.       ;;
  1576.     esac
  1577.     specialdeplibs=
  1578.     libs=
  1579.     # Find all interdependent deplibs by searching for libraries
  1580.     # that are linked more than once (e.g. -la -lb -la)
  1581.     for deplib in $deplibs; do
  1582.       if test "X$duplicate_deps" = "Xyes" ; then
  1583. case "$libs " in
  1584. *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
  1585. esac
  1586.       fi
  1587.       libs="$libs $deplib"
  1588.     done
  1589.     if test "$linkmode" = lib; then
  1590.       libs="$predeps $libs $compiler_lib_search_path $postdeps"
  1591.       # Compute libraries that are listed more than once in $predeps
  1592.       # $postdeps and mark them as special (i.e., whose duplicates are
  1593.       # not to be eliminated).
  1594.       pre_post_deps=
  1595.       if test "X$duplicate_compiler_generated_deps" = "Xyes" ; then
  1596. for pre_post_dep in $predeps $postdeps; do
  1597.   case "$pre_post_deps " in
  1598.   *" $pre_post_dep "*) specialdeplibs="$specialdeplibs $pre_post_deps" ;;
  1599.   esac
  1600.   pre_post_deps="$pre_post_deps $pre_post_dep"
  1601. done
  1602.       fi
  1603.       pre_post_deps=
  1604.     fi
  1605.     deplibs=
  1606.     newdependency_libs=
  1607.     newlib_search_path=
  1608.     need_relink=no # whether we're linking any uninstalled libtool libraries
  1609.     notinst_deplibs= # not-installed libtool libraries
  1610.     notinst_path= # paths that contain not-installed libtool libraries
  1611.     case $linkmode in
  1612.     lib)
  1613. passes="conv link"
  1614. for file in $dlfiles $dlprefiles; do
  1615.   case $file in
  1616.   *.la) ;;
  1617.   *)
  1618.     $echo "$modename: libraries can `-dlopen' only libtool libraries: $file" 1>&2
  1619.     exit $EXIT_FAILURE
  1620.     ;;
  1621.   esac
  1622. done
  1623. ;;
  1624.     prog)
  1625. compile_deplibs=
  1626. finalize_deplibs=
  1627. alldeplibs=no
  1628. newdlfiles=
  1629. newdlprefiles=
  1630. passes="conv scan dlopen dlpreopen link"
  1631. ;;
  1632.     *)  passes="conv"
  1633. ;;
  1634.     esac
  1635.     for pass in $passes; do
  1636.       if test "$linkmode,$pass" = "lib,link" ||
  1637.  test "$linkmode,$pass" = "prog,scan"; then
  1638. libs="$deplibs"
  1639. deplibs=
  1640.       fi
  1641.       if test "$linkmode" = prog; then
  1642. case $pass in
  1643. dlopen) libs="$dlfiles" ;;
  1644. dlpreopen) libs="$dlprefiles" ;;
  1645. link)
  1646.   libs="$deplibs %DEPLIBS%"
  1647.   test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs"
  1648.   ;;
  1649. esac
  1650.       fi
  1651.       if test "$pass" = dlopen; then
  1652. # Collect dlpreopened libraries
  1653. save_deplibs="$deplibs"
  1654. deplibs=
  1655.       fi
  1656.       for deplib in $libs; do
  1657. lib=
  1658. found=no
  1659. case $deplib in
  1660. -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe)
  1661.   if test "$linkmode,$pass" = "prog,link"; then
  1662.     compile_deplibs="$deplib $compile_deplibs"
  1663.     finalize_deplibs="$deplib $finalize_deplibs"
  1664.   else
  1665.     deplibs="$deplib $deplibs"
  1666.   fi
  1667.   continue
  1668.   ;;
  1669. -l*)
  1670.   if test "$linkmode" != lib && test "$linkmode" != prog; then
  1671.     $echo "$modename: warning: `-l' is ignored for archives/objects" 1>&2
  1672.     continue
  1673.   fi
  1674.   name=`$echo "X$deplib" | $Xsed -e 's/^-l//'`
  1675.   for searchdir in $newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path; do
  1676.     for search_ext in .la $std_shrext .so .a; do
  1677.       # Search the libtool library
  1678.       lib="$searchdir/lib${name}${search_ext}"
  1679.       if test -f "$lib"; then
  1680. if test "$search_ext" = ".la"; then
  1681.   found=yes
  1682. else
  1683.   found=no
  1684. fi
  1685. break 2
  1686.       fi
  1687.     done
  1688.   done
  1689.   if test "$found" != yes; then
  1690.     # deplib doesn't seem to be a libtool library
  1691.     if test "$linkmode,$pass" = "prog,link"; then
  1692.       compile_deplibs="$deplib $compile_deplibs"
  1693.       finalize_deplibs="$deplib $finalize_deplibs"
  1694.     else
  1695.       deplibs="$deplib $deplibs"
  1696.       test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
  1697.     fi
  1698.     continue
  1699.   else # deplib is a libtool library
  1700.     # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib,
  1701.     # We need to do some special things here, and not later.
  1702.     if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
  1703.       case " $predeps $postdeps " in
  1704.       *" $deplib "*)
  1705. if (${SED} -e '2q' $lib |
  1706.                     grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
  1707.   library_names=
  1708.   old_library=
  1709.   case $lib in
  1710.   */* | *\*) . $lib ;;
  1711.   *) . ./$lib ;;
  1712.   esac
  1713.   for l in $old_library $library_names; do
  1714.     ll="$l"
  1715.   done
  1716.   if test "X$ll" = "X$old_library" ; then # only static version available
  1717.     found=no
  1718.     ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`
  1719.     test "X$ladir" = "X$lib" && ladir="."
  1720.     lib=$ladir/$old_library
  1721.     if test "$linkmode,$pass" = "prog,link"; then
  1722.       compile_deplibs="$deplib $compile_deplibs"
  1723.       finalize_deplibs="$deplib $finalize_deplibs"
  1724.     else
  1725.       deplibs="$deplib $deplibs"
  1726.       test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
  1727.     fi
  1728.     continue
  1729.   fi
  1730. fi
  1731.         ;;
  1732.       *) ;;
  1733.       esac
  1734.     fi
  1735.   fi
  1736.   ;; # -l
  1737. -L*)
  1738.   case $linkmode in
  1739.   lib)
  1740.     deplibs="$deplib $deplibs"
  1741.     test "$pass" = conv && continue
  1742.     newdependency_libs="$deplib $newdependency_libs"
  1743.     newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
  1744.     ;;
  1745.   prog)
  1746.     if test "$pass" = conv; then
  1747.       deplibs="$deplib $deplibs"
  1748.       continue
  1749.     fi
  1750.     if test "$pass" = scan; then
  1751.       deplibs="$deplib $deplibs"
  1752.     else
  1753.       compile_deplibs="$deplib $compile_deplibs"
  1754.       finalize_deplibs="$deplib $finalize_deplibs"
  1755.     fi
  1756.     newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
  1757.     ;;
  1758.   *)
  1759.     $echo "$modename: warning: `-L' is ignored for archives/objects" 1>&2
  1760.     ;;
  1761.   esac # linkmode
  1762.   continue
  1763.   ;; # -L
  1764. -R*)
  1765.   if test "$pass" = link; then
  1766.     dir=`$echo "X$deplib" | $Xsed -e 's/^-R//'`
  1767.     # Make sure the xrpath contains only unique directories.
  1768.     case "$xrpath " in
  1769.     *" $dir "*) ;;
  1770.     *) xrpath="$xrpath $dir" ;;
  1771.     esac
  1772.   fi
  1773.   deplibs="$deplib $deplibs"
  1774.   continue
  1775.   ;;
  1776. *.la) lib="$deplib" ;;
  1777. *.$libext)
  1778.   if test "$pass" = conv; then
  1779.     deplibs="$deplib $deplibs"
  1780.     continue
  1781.   fi
  1782.   case $linkmode in
  1783.   lib)
  1784.     if test "$deplibs_check_method" != pass_all; then
  1785.       $echo
  1786.       $echo "*** Warning: Trying to link with static lib archive $deplib."
  1787.       $echo "*** I have the capability to make that library automatically link in when"
  1788.       $echo "*** you link to this library.  But I can only do this if you have a"
  1789.       $echo "*** shared version of the library, which you do not appear to have"
  1790.       $echo "*** because the file extensions .$libext of this argument makes me believe"
  1791.       $echo "*** that it is just a static archive that I should not used here."
  1792.     else
  1793.       $echo
  1794.       $echo "*** Warning: Linking the shared library $output against the"
  1795.       $echo "*** static library $deplib is not portable!"
  1796.       deplibs="$deplib $deplibs"
  1797.     fi
  1798.     continue
  1799.     ;;
  1800.   prog)
  1801.     if test "$pass" != link; then
  1802.       deplibs="$deplib $deplibs"
  1803.     else
  1804.       compile_deplibs="$deplib $compile_deplibs"
  1805.       finalize_deplibs="$deplib $finalize_deplibs"
  1806.     fi
  1807.     continue
  1808.     ;;
  1809.   esac # linkmode
  1810.   ;; # *.$libext
  1811. *.lo | *.$objext)
  1812.   if test "$pass" = conv; then
  1813.     deplibs="$deplib $deplibs"
  1814.   elif test "$linkmode" = prog; then
  1815.     if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then
  1816.       # If there is no dlopen support or we're linking statically,
  1817.       # we need to preload.
  1818.       newdlprefiles="$newdlprefiles $deplib"
  1819.       compile_deplibs="$deplib $compile_deplibs"
  1820.       finalize_deplibs="$deplib $finalize_deplibs"
  1821.     else
  1822.       newdlfiles="$newdlfiles $deplib"
  1823.     fi
  1824.   fi
  1825.   continue
  1826.   ;;
  1827. %DEPLIBS%)
  1828.   alldeplibs=yes
  1829.   continue
  1830.   ;;
  1831. esac # case $deplib
  1832. if test "$found" = yes || test -f "$lib"; then :
  1833. else
  1834.   $echo "$modename: cannot find the library `$lib'" 1>&2
  1835.   exit $EXIT_FAILURE
  1836. fi
  1837. # Check to see that this really is a libtool archive.
  1838. if (${SED} -e '2q' $lib | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
  1839. else
  1840.   $echo "$modename: `$lib' is not a valid libtool archive" 1>&2
  1841.   exit $EXIT_FAILURE
  1842. fi
  1843. ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`
  1844. test "X$ladir" = "X$lib" && ladir="."
  1845. dlname=
  1846. dlopen=
  1847. dlpreopen=
  1848. libdir=
  1849. library_names=
  1850. old_library=
  1851. # If the library was installed with an old release of libtool,
  1852. # it will not redefine variables installed, or shouldnotlink
  1853. installed=yes
  1854. shouldnotlink=no
  1855. # Read the .la file
  1856. case $lib in
  1857. */* | *\*) . $lib ;;
  1858. *) . ./$lib ;;
  1859. esac
  1860. if test "$linkmode,$pass" = "lib,link" ||
  1861.    test "$linkmode,$pass" = "prog,scan" ||
  1862.    { test "$linkmode" != prog && test "$linkmode" != lib; }; then
  1863.   test -n "$dlopen" && dlfiles="$dlfiles $dlopen"
  1864.   test -n "$dlpreopen" && dlprefiles="$dlprefiles $dlpreopen"
  1865. fi
  1866. if test "$pass" = conv; then
  1867.   # Only check for convenience libraries
  1868.   deplibs="$lib $deplibs"
  1869.   if test -z "$libdir"; then
  1870.     if test -z "$old_library"; then
  1871.       $echo "$modename: cannot find name of link library for `$lib'" 1>&2
  1872.       exit $EXIT_FAILURE
  1873.     fi
  1874.     # It is a libtool convenience library, so add in its objects.
  1875.     convenience="$convenience $ladir/$objdir/$old_library"
  1876.     old_convenience="$old_convenience $ladir/$objdir/$old_library"
  1877.     tmp_libs=
  1878.     for deplib in $dependency_libs; do
  1879.       deplibs="$deplib $deplibs"
  1880.               if test "X$duplicate_deps" = "Xyes" ; then
  1881.         case "$tmp_libs " in
  1882.         *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
  1883.         esac
  1884.               fi
  1885.       tmp_libs="$tmp_libs $deplib"
  1886.     done
  1887.   elif test "$linkmode" != prog && test "$linkmode" != lib; then
  1888.     $echo "$modename: `$lib' is not a convenience library" 1>&2
  1889.     exit $EXIT_FAILURE
  1890.   fi
  1891.   continue
  1892. fi # $pass = conv
  1893. # Get the name of the library we link against.
  1894. linklib=
  1895. for l in $old_library $library_names; do
  1896.   linklib="$l"
  1897. done
  1898. if test -z "$linklib"; then
  1899.   $echo "$modename: cannot find name of link library for `$lib'" 1>&2
  1900.   exit $EXIT_FAILURE
  1901. fi
  1902. # This library was specified with -dlopen.
  1903. if test "$pass" = dlopen; then
  1904.   if test -z "$libdir"; then
  1905.     $echo "$modename: cannot -dlopen a convenience library: `$lib'" 1>&2
  1906.     exit $EXIT_FAILURE
  1907.   fi
  1908.   if test -z "$dlname" ||
  1909.      test "$dlopen_support" != yes ||
  1910.      test "$build_libtool_libs" = no; then
  1911.     # If there is no dlname, no dlopen support or we're linking
  1912.     # statically, we need to preload.  We also need to preload any
  1913.     # dependent libraries so libltdl's deplib preloader doesn't
  1914.     # bomb out in the load deplibs phase.
  1915.     dlprefiles="$dlprefiles $lib $dependency_libs"
  1916.   else
  1917.     newdlfiles="$newdlfiles $lib"
  1918.   fi
  1919.   continue
  1920. fi # $pass = dlopen
  1921. # We need an absolute path.
  1922. case $ladir in
  1923. [\/]* | [A-Za-z]:[\/]*) abs_ladir="$ladir" ;;
  1924. *)
  1925.   abs_ladir=`cd "$ladir" && pwd`
  1926.   if test -z "$abs_ladir"; then
  1927.     $echo "$modename: warning: cannot determine absolute directory name of `$ladir'" 1>&2
  1928.     $echo "$modename: passing it literally to the linker, although it might fail" 1>&2
  1929.     abs_ladir="$ladir"
  1930.   fi
  1931.   ;;
  1932. esac
  1933. laname=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
  1934. # Find the relevant object directory and library name.
  1935. if test "X$installed" = Xyes; then
  1936.   if test ! -f "$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then
  1937.     $echo "$modename: warning: library `$lib' was moved." 1>&2
  1938.     dir="$ladir"
  1939.     absdir="$abs_ladir"
  1940.     libdir="$abs_ladir"
  1941.   else
  1942.     dir="$libdir"
  1943.     absdir="$libdir"
  1944.   fi
  1945. else
  1946.   dir="$ladir/$objdir"
  1947.   absdir="$abs_ladir/$objdir"
  1948.   # Remove this search path later
  1949.   notinst_path="$notinst_path $abs_ladir"
  1950. fi # $installed = yes
  1951. name=`$echo "X$laname" | $Xsed -e 's/.la$//' -e 's/^lib//'`
  1952. # This library was specified with -dlpreopen.
  1953. if test "$pass" = dlpreopen; then
  1954.   if test -z "$libdir"; then
  1955.     $echo "$modename: cannot -dlpreopen a convenience library: `$lib'" 1>&2
  1956.     exit $EXIT_FAILURE
  1957.   fi
  1958.   # Prefer using a static library (so that no silly _DYNAMIC symbols
  1959.   # are required to link).
  1960.   if test -n "$old_library"; then
  1961.     newdlprefiles="$newdlprefiles $dir/$old_library"
  1962.   # Otherwise, use the dlname, so that lt_dlopen finds it.
  1963.   elif test -n "$dlname"; then
  1964.     newdlprefiles="$newdlprefiles $dir/$dlname"
  1965.   else
  1966.     newdlprefiles="$newdlprefiles $dir/$linklib"
  1967.   fi
  1968. fi # $pass = dlpreopen
  1969. if test -z "$libdir"; then
  1970.   # Link the convenience library
  1971.   if test "$linkmode" = lib; then
  1972.     deplibs="$dir/$old_library $deplibs"
  1973.   elif test "$linkmode,$pass" = "prog,link"; then
  1974.     compile_deplibs="$dir/$old_library $compile_deplibs"
  1975.     finalize_deplibs="$dir/$old_library $finalize_deplibs"
  1976.   else
  1977.     deplibs="$lib $deplibs" # used for prog,scan pass
  1978.   fi
  1979.   continue
  1980. fi
  1981. if test "$linkmode" = prog && test "$pass" != link; then
  1982.   newlib_search_path="$newlib_search_path $ladir"
  1983.   deplibs="$lib $deplibs"
  1984.   linkalldeplibs=no
  1985.   if test "$link_all_deplibs" != no || test -z "$library_names" ||
  1986.      test "$build_libtool_libs" = no; then
  1987.     linkalldeplibs=yes
  1988.   fi
  1989.   tmp_libs=
  1990.   for deplib in $dependency_libs; do
  1991.     case $deplib in
  1992.     -L*) newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`;; ### testsuite: skip nested quoting test
  1993.     esac
  1994.     # Need to link against all dependency_libs?
  1995.     if test "$linkalldeplibs" = yes; then
  1996.       deplibs="$deplib $deplibs"
  1997.     else
  1998.       # Need to hardcode shared library paths
  1999.       # or/and link against static libraries
  2000.       newdependency_libs="$deplib $newdependency_libs"
  2001.     fi
  2002.     if test "X$duplicate_deps" = "Xyes" ; then
  2003.       case "$tmp_libs " in
  2004.       *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
  2005.       esac
  2006.     fi
  2007.     tmp_libs="$tmp_libs $deplib"
  2008.   done # for deplib
  2009.   continue
  2010. fi # $linkmode = prog...
  2011. if test "$linkmode,$pass" = "prog,link"; then
  2012.   if test -n "$library_names" &&
  2013.      { test "$prefer_static_libs" = no || test -z "$old_library"; }; then
  2014.     # We need to hardcode the library path
  2015.     if test -n "$shlibpath_var"; then
  2016.       # Make sure the rpath contains only unique directories.
  2017.       case "$temp_rpath " in
  2018.       *" $dir "*) ;;
  2019.       *" $absdir "*) ;;
  2020.       *) temp_rpath="$temp_rpath $dir" ;;
  2021.       esac
  2022.     fi
  2023.     # Hardcode the library path.
  2024.     # Skip directories that are in the system default run-time
  2025.     # search path.
  2026.     case " $sys_lib_dlsearch_path " in
  2027.     *" $absdir "*) ;;
  2028.     *)
  2029.       case "$compile_rpath " in
  2030.       *" $absdir "*) ;;
  2031.       *) compile_rpath="$compile_rpath $absdir"
  2032.       esac
  2033.       ;;
  2034.     esac
  2035.     case " $sys_lib_dlsearch_path " in
  2036.     *" $libdir "*) ;;
  2037.     *)
  2038.       case "$finalize_rpath " in
  2039.       *" $libdir "*) ;;
  2040.       *) finalize_rpath="$finalize_rpath $libdir"
  2041.       esac
  2042.       ;;
  2043.     esac
  2044.   fi # $linkmode,$pass = prog,link...
  2045.   if test "$alldeplibs" = yes &&
  2046.      { test "$deplibs_check_method" = pass_all ||
  2047.        { test "$build_libtool_libs" = yes &&
  2048.  test -n "$library_names"; }; }; then
  2049.     # We only need to search for static libraries
  2050.     continue
  2051.   fi
  2052. fi
  2053. link_static=no # Whether the deplib will be linked statically
  2054. if test -n "$library_names" &&
  2055.    { test "$prefer_static_libs" = no || test -z "$old_library"; }; then
  2056.   if test "$installed" = no; then
  2057.     notinst_deplibs="$notinst_deplibs $lib"
  2058.     need_relink=yes
  2059.   fi
  2060.   # This is a shared library
  2061.   # Warn about portability, can't link against -module's on
  2062.   # some systems (darwin)
  2063.   if test "$shouldnotlink" = yes && test "$pass" = link ; then
  2064.     $echo
  2065.     if test "$linkmode" = prog; then
  2066.       $echo "*** Warning: Linking the executable $output against the loadable module"
  2067.     else
  2068.       $echo "*** Warning: Linking the shared library $output against the loadable module"
  2069.     fi
  2070.     $echo "*** $linklib is not portable!"
  2071.   fi
  2072.   if test "$linkmode" = lib &&
  2073.      test "$hardcode_into_libs" = yes; then
  2074.     # Hardcode the library path.
  2075.     # Skip directories that are in the system default run-time
  2076.     # search path.
  2077.     case " $sys_lib_dlsearch_path " in
  2078.     *" $absdir "*) ;;
  2079.     *)
  2080.       case "$compile_rpath " in
  2081.       *" $absdir "*) ;;
  2082.       *) compile_rpath="$compile_rpath $absdir"
  2083.       esac
  2084.       ;;
  2085.     esac
  2086.     case " $sys_lib_dlsearch_path " in
  2087.     *" $libdir "*) ;;
  2088.     *)
  2089.       case "$finalize_rpath " in
  2090.       *" $libdir "*) ;;
  2091.       *) finalize_rpath="$finalize_rpath $libdir"
  2092.       esac
  2093.       ;;
  2094.     esac
  2095.   fi
  2096.   if test -n "$old_archive_from_expsyms_cmds"; then
  2097.     # figure out the soname
  2098.     set dummy $library_names
  2099.     realname="$2"
  2100.     shift; shift
  2101.     libname=`eval \$echo "$libname_spec"`
  2102.     # use dlname if we got it. it's perfectly good, no?
  2103.     if test -n "$dlname"; then
  2104.       soname="$dlname"
  2105.     elif test -n "$soname_spec"; then
  2106.       # bleh windows
  2107.       case $host in
  2108.       *cygwin* | mingw*)
  2109. major=`expr $current - $age`
  2110. versuffix="-$major"
  2111. ;;
  2112.       esac
  2113.       eval soname="$soname_spec"
  2114.     else
  2115.       soname="$realname"
  2116.     fi
  2117.     # Make a new name for the extract_expsyms_cmds to use
  2118.     soroot="$soname"
  2119.     soname=`$echo $soroot | ${SED} -e 's/^.*///'`
  2120.     newlib="libimp-`$echo $soname | ${SED} 's/^lib//;s/.dll$//'`.a"
  2121.     # If the library has no export list, then create one now
  2122.     if test -f "$output_objdir/$soname-def"; then :
  2123.     else
  2124.       $show "extracting exported symbol list from `$soname'"
  2125.       save_ifs="$IFS"; IFS='~'
  2126.       cmds=$extract_expsyms_cmds
  2127.       for cmd in $cmds; do
  2128. IFS="$save_ifs"
  2129. eval cmd="$cmd"
  2130. $show "$cmd"
  2131. $run eval "$cmd" || exit $?
  2132.       done
  2133.       IFS="$save_ifs"
  2134.     fi
  2135.     # Create $newlib
  2136.     if test -f "$output_objdir/$newlib"; then :; else
  2137.       $show "generating import library for `$soname'"
  2138.       save_ifs="$IFS"; IFS='~'
  2139.       cmds=$old_archive_from_expsyms_cmds
  2140.       for cmd in $cmds; do
  2141. IFS="$save_ifs"
  2142. eval cmd="$cmd"
  2143. $show "$cmd"
  2144. $run eval "$cmd" || exit $?
  2145.       done
  2146.       IFS="$save_ifs"
  2147.     fi
  2148.     # make sure the library variables are pointing to the new library
  2149.     dir=$output_objdir
  2150.     linklib=$newlib
  2151.   fi # test -n "$old_archive_from_expsyms_cmds"
  2152.   if test "$linkmode" = prog || test "$mode" != relink; then
  2153.     add_shlibpath=
  2154.     add_dir=
  2155.     add=
  2156.     lib_linked=yes
  2157.     case $hardcode_action in
  2158.     immediate | unsupported)
  2159.       if test "$hardcode_direct" = no; then
  2160. add="$dir/$linklib"
  2161. case $host in
  2162.   *-*-sco3.2v5* ) add_dir="-L$dir" ;;
  2163.   *-*-darwin* )
  2164.     # if the lib is a module then we can not link against
  2165.     # it, someone is ignoring the new warnings I added
  2166.     if /usr/bin/file -L $add 2> /dev/null | $EGREP "bundle" >/dev/null ; then
  2167.       $echo "** Warning, lib $linklib is a module, not a shared library"
  2168.       if test -z "$old_library" ; then
  2169.         $echo
  2170.         $echo "** And there doesn't seem to be a static archive available"
  2171.         $echo "** The link will probably fail, sorry"
  2172.       else
  2173.         add="$dir/$old_library"
  2174.       fi
  2175.     fi
  2176. esac
  2177.       elif test "$hardcode_minus_L" = no; then
  2178. case $host in
  2179. *-*-sunos*) add_shlibpath="$dir" ;;
  2180. esac
  2181. add_dir="-L$dir"
  2182. add="-l$name"
  2183.       elif test "$hardcode_shlibpath_var" = no; then
  2184. add_shlibpath="$dir"
  2185. add="-l$name"
  2186.       else
  2187. lib_linked=no
  2188.       fi
  2189.       ;;
  2190.     relink)
  2191.       if test "$hardcode_direct" = yes; then
  2192. add="$dir/$linklib"
  2193.       elif test "$hardcode_minus_L" = yes; then
  2194. add_dir="-L$dir"
  2195. # Try looking first in the location we're being installed to.
  2196. if test -n "$inst_prefix_dir"; then
  2197.   case "$libdir" in
  2198.     [\/]*)
  2199.       add_dir="$add_dir -L$inst_prefix_dir$libdir"
  2200.       ;;
  2201.   esac
  2202. fi
  2203. add="-l$name"
  2204.       elif test "$hardcode_shlibpath_var" = yes; then
  2205. add_shlibpath="$dir"
  2206. add="-l$name"
  2207.       else
  2208. lib_linked=no
  2209.       fi
  2210.       ;;
  2211.     *) lib_linked=no ;;
  2212.     esac
  2213.     if test "$lib_linked" != yes; then
  2214.       $echo "$modename: configuration error: unsupported hardcode properties"
  2215.       exit $EXIT_FAILURE
  2216.     fi
  2217.     if test -n "$add_shlibpath"; then
  2218.       case :$compile_shlibpath: in
  2219.       *":$add_shlibpath:"*) ;;
  2220.       *) compile_shlibpath="$compile_shlibpath$add_shlibpath:" ;;
  2221.       esac
  2222.     fi
  2223.     if test "$linkmode" = prog; then
  2224.       test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs"
  2225.       test -n "$add" && compile_deplibs="$add $compile_deplibs"
  2226.     else
  2227.       test -n "$add_dir" && deplibs="$add_dir $deplibs"
  2228.       test -n "$add" && deplibs="$add $deplibs"
  2229.       if test "$hardcode_direct" != yes && 
  2230.  test "$hardcode_minus_L" != yes && 
  2231.  test "$hardcode_shlibpath_var" = yes; then
  2232. case :$finalize_shlibpath: in
  2233. *":$libdir:"*) ;;
  2234. *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;
  2235. esac
  2236.       fi
  2237.     fi
  2238.   fi
  2239.   if test "$linkmode" = prog || test "$mode" = relink; then
  2240.     add_shlibpath=
  2241.     add_dir=
  2242.     add=
  2243.     # Finalize command for both is simple: just hardcode it.
  2244.     if test "$hardcode_direct" = yes; then
  2245.       add="$libdir/$linklib"
  2246.     elif test "$hardcode_minus_L" = yes; then
  2247.       add_dir="-L$libdir"
  2248.       add="-l$name"
  2249.     elif test "$hardcode_shlibpath_var" = yes; then
  2250.       case :$finalize_shlibpath: in
  2251.       *":$libdir:"*) ;;
  2252.       *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;
  2253.       esac
  2254.       add="-l$name"
  2255.     elif test "$hardcode_automatic" = yes; then
  2256.       if test -n "$inst_prefix_dir" &&
  2257.  test -f "$inst_prefix_dir$libdir/$linklib" ; then
  2258.         add="$inst_prefix_dir$libdir/$linklib"
  2259.       else
  2260.         add="$libdir/$linklib"
  2261.       fi
  2262.     else
  2263.       # We cannot seem to hardcode it, guess we'll fake it.
  2264.       add_dir="-L$libdir"
  2265.       # Try looking first in the location we're being installed to.
  2266.       if test -n "$inst_prefix_dir"; then
  2267. case "$libdir" in
  2268.   [\/]*)
  2269.     add_dir="$add_dir -L$inst_prefix_dir$libdir"
  2270.     ;;
  2271. esac
  2272.       fi
  2273.       add="-l$name"
  2274.     fi
  2275.     if test "$linkmode" = prog; then
  2276.       test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs"
  2277.       test -n "$add" && finalize_deplibs="$add $finalize_deplibs"
  2278.     else
  2279.       test -n "$add_dir" && deplibs="$add_dir $deplibs"
  2280.       test -n "$add" && deplibs="$add $deplibs"
  2281.     fi
  2282.   fi
  2283. elif test "$linkmode" = prog; then
  2284.   # Here we assume that one of hardcode_direct or hardcode_minus_L
  2285.   # is not unsupported.  This is valid on all known static and
  2286.   # shared platforms.
  2287.   if test "$hardcode_direct" != unsupported; then
  2288.     test -n "$old_library" && linklib="$old_library"
  2289.     compile_deplibs="$dir/$linklib $compile_deplibs"
  2290.     finalize_deplibs="$dir/$linklib $finalize_deplibs"
  2291.   else
  2292.     compile_deplibs="-l$name -L$dir $compile_deplibs"
  2293.     finalize_deplibs="-l$name -L$dir $finalize_deplibs"
  2294.   fi
  2295. elif test "$build_libtool_libs" = yes; then
  2296.   # Not a shared library
  2297.   if test "$deplibs_check_method" != pass_all; then
  2298.     # We're trying link a shared library against a static one
  2299.     # but the system doesn't support it.
  2300.     # Just print a warning and add the library to dependency_libs so
  2301.     # that the program can be linked against the static library.
  2302.     $echo
  2303.     $echo "*** Warning: This system can not link to static lib archive $lib."
  2304.     $echo "*** I have the capability to make that library automatically link in when"
  2305.     $echo "*** you link to this library.  But I can only do this if you have a"
  2306.     $echo "*** shared version of the library, which you do not appear to have."
  2307.     if test "$module" = yes; then
  2308.       $echo "*** But as you try to build a module library, libtool will still create "
  2309.       $echo "*** a static module, that should work as long as the dlopening application"
  2310.       $echo "*** is linked with the -dlopen flag to resolve symbols at runtime."
  2311.       if test -z "$global_symbol_pipe"; then
  2312. $echo
  2313. $echo "*** However, this would only work if libtool was able to extract symbol"
  2314. $echo "*** lists from a program, using `nm' or equivalent, but libtool could"
  2315. $echo "*** not find such a program.  So, this module is probably useless."
  2316. $echo "*** `nm' from GNU binutils and a full rebuild may help."
  2317.       fi
  2318.       if test "$build_old_libs" = no; then
  2319. build_libtool_libs=module
  2320. build_old_libs=yes
  2321.       else
  2322. build_libtool_libs=no
  2323.       fi
  2324.     fi
  2325.   else
  2326.     convenience="$convenience $dir/$old_library"
  2327.     old_convenience="$old_convenience $dir/$old_library"
  2328.     deplibs="$dir/$old_library $deplibs"
  2329.     link_static=yes
  2330.   fi
  2331. fi # link shared/static library?
  2332. if test "$linkmode" = lib; then
  2333.   if test -n "$dependency_libs" &&
  2334.      { test "$hardcode_into_libs" != yes ||
  2335.        test "$build_old_libs" = yes ||
  2336.        test "$link_static" = yes; }; then
  2337.     # Extract -R from dependency_libs
  2338.     temp_deplibs=
  2339.     for libdir in $dependency_libs; do
  2340.       case $libdir in
  2341.       -R*) temp_xrpath=`$echo "X$libdir" | $Xsed -e 's/^-R//'`
  2342.    case " $xrpath " in
  2343.    *" $temp_xrpath "*) ;;
  2344.    *) xrpath="$xrpath $temp_xrpath";;
  2345.    esac;;
  2346.       *) temp_deplibs="$temp_deplibs $libdir";;
  2347.       esac
  2348.     done
  2349.     dependency_libs="$temp_deplibs"
  2350.   fi
  2351.   newlib_search_path="$newlib_search_path $absdir"
  2352.   # Link against this library
  2353.   test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs"
  2354.   # ... and its dependency_libs
  2355.   tmp_libs=
  2356.   for deplib in $dependency_libs; do
  2357.     newdependency_libs="$deplib $newdependency_libs"
  2358.     if test "X$duplicate_deps" = "Xyes" ; then
  2359.       case "$tmp_libs " in
  2360.       *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
  2361.       esac
  2362.     fi
  2363.     tmp_libs="$tmp_libs $deplib"
  2364.   done
  2365.   if test "$link_all_deplibs" != no; then
  2366.     # Add the search paths of all dependency libraries
  2367.     for deplib in $dependency_libs; do
  2368.       case $deplib in
  2369.       -L*) path="$deplib" ;;
  2370.       *.la)
  2371. dir=`$echo "X$deplib" | $Xsed -e 's%/[^/]*$%%'`
  2372. test "X$dir" = "X$deplib" && dir="."
  2373. # We need an absolute path.
  2374. case $dir in
  2375. [\/]* | [A-Za-z]:[\/]*) absdir="$dir" ;;
  2376. *)
  2377.   absdir=`cd "$dir" && pwd`
  2378.   if test -z "$absdir"; then
  2379.     $echo "$modename: warning: cannot determine absolute directory name of `$dir'" 1>&2
  2380.     absdir="$dir"
  2381.   fi
  2382.   ;;
  2383. esac
  2384. if grep "^installed=no" $deplib > /dev/null; then
  2385.   path="$absdir/$objdir"
  2386. else
  2387.   eval libdir=`${SED} -n -e 's/^libdir=(.*)$/1/p' $deplib`
  2388.   if test -z "$libdir"; then
  2389.     $echo "$modename: `$deplib' is not a valid libtool archive" 1>&2
  2390.     exit $EXIT_FAILURE
  2391.   fi
  2392.   if test "$absdir" != "$libdir"; then
  2393.     $echo "$modename: warning: `$deplib' seems to be moved" 1>&2
  2394.   fi
  2395.   path="$absdir"
  2396. fi
  2397. depdepl=
  2398. case $host in
  2399. *-*-darwin*)
  2400.   # we do not want to link against static libs,
  2401.   # but need to link against shared
  2402.   eval deplibrary_names=`${SED} -n -e 's/^library_names=(.*)$/1/p' $deplib`
  2403.   if test -n "$deplibrary_names" ; then
  2404.     for tmp in $deplibrary_names ; do
  2405.       depdepl=$tmp
  2406.     done
  2407.     if test -f "$path/$depdepl" ; then
  2408.       depdepl="$path/$depdepl"
  2409.     fi
  2410.     # do not add paths which are already there
  2411.     case " $newlib_search_path " in
  2412.     *" $path "*) ;;
  2413.     *) newlib_search_path="$newlib_search_path $path";;
  2414.     esac
  2415.   fi
  2416.   path=""
  2417.   ;;
  2418. *)
  2419.   path="-L$path"
  2420.   ;;
  2421. esac
  2422. ;;
  2423.       -l*)
  2424. case $host in
  2425. *-*-darwin*)
  2426.   # Again, we only want to link against shared libraries
  2427.   eval tmp_libs=`$echo "X$deplib" | $Xsed -e "s,^-l,,"`
  2428.   for tmp in $newlib_search_path ; do
  2429.     if test -f "$tmp/lib$tmp_libs.dylib" ; then
  2430.       eval depdepl="$tmp/lib$tmp_libs.dylib"
  2431.       break
  2432.     fi
  2433.   done
  2434.   path=""
  2435.   ;;
  2436. *) continue ;;
  2437. esac
  2438. ;;
  2439.       *) continue ;;
  2440.       esac
  2441.       case " $deplibs " in
  2442.       *" $depdepl "*) ;;
  2443.       *) deplibs="$depdepl $deplibs" ;;
  2444.       esac
  2445.       case " $deplibs " in
  2446.       *" $path "*) ;;
  2447.       *) deplibs="$deplibs $path" ;;
  2448.       esac
  2449.     done
  2450.   fi # link_all_deplibs != no
  2451. fi # linkmode = lib
  2452.       done # for deplib in $libs
  2453.       dependency_libs="$newdependency_libs"
  2454.       if test "$pass" = dlpreopen; then
  2455. # Link the dlpreopened libraries before other libraries
  2456. for deplib in $save_deplibs; do
  2457.   deplibs="$deplib $deplibs"
  2458. done
  2459.       fi
  2460.       if test "$pass" != dlopen; then
  2461. if test "$pass" != conv; then
  2462.   # Make sure lib_search_path contains only unique directories.
  2463.   lib_search_path=
  2464.   for dir in $newlib_search_path; do
  2465.     case "$lib_search_path " in
  2466.     *" $dir "*) ;;
  2467.     *) lib_search_path="$lib_search_path $dir" ;;
  2468.     esac
  2469.   done
  2470.   newlib_search_path=
  2471. fi
  2472. if test "$linkmode,$pass" != "prog,link"; then
  2473.   vars="deplibs"
  2474. else
  2475.   vars="compile_deplibs finalize_deplibs"
  2476. fi
  2477. for var in $vars dependency_libs; do
  2478.   # Add libraries to $var in reverse order
  2479.   eval tmp_libs="$$var"
  2480.   new_libs=
  2481.   for deplib in $tmp_libs; do
  2482.     # FIXME: Pedantically, this is the right thing to do, so
  2483.     #        that some nasty dependency loop isn't accidentally
  2484.     #        broken:
  2485.     #new_libs="$deplib $new_libs"
  2486.     # Pragmatically, this seems to cause very few problems in
  2487.     # practice:
  2488.     case $deplib in
  2489.     -L*) new_libs="$deplib $new_libs" ;;
  2490.     -R*) ;;
  2491.     *)
  2492.       # And here is the reason: when a library appears more
  2493.       # than once as an explicit dependence of a library, or
  2494.       # is implicitly linked in more than once by the
  2495.       # compiler, it is considered special, and multiple
  2496.       # occurrences thereof are not removed.  Compare this
  2497.       # with having the same library being listed as a
  2498.       # dependency of multiple other libraries: in this case,
  2499.       # we know (pedantically, we assume) the library does not
  2500.       # need to be listed more than once, so we keep only the
  2501.       # last copy.  This is not always right, but it is rare
  2502.       # enough that we require users that really mean to play
  2503.       # such unportable linking tricks to link the library
  2504.       # using -Wl,-lname, so that libtool does not consider it
  2505.       # for duplicate removal.
  2506.       case " $specialdeplibs " in
  2507.       *" $deplib "*) new_libs="$deplib $new_libs" ;;
  2508.       *)
  2509. case " $new_libs " in
  2510. *" $deplib "*) ;;
  2511. *) new_libs="$deplib $new_libs" ;;
  2512. esac
  2513. ;;
  2514.       esac
  2515.       ;;
  2516.     esac
  2517.   done
  2518.   tmp_libs=
  2519.   for deplib in $new_libs; do
  2520.     case $deplib in
  2521.     -L*)
  2522.       case " $tmp_libs " in
  2523.       *" $deplib "*) ;;
  2524.       *) tmp_libs="$tmp_libs $deplib" ;;
  2525.       esac
  2526.       ;;
  2527.     *) tmp_libs="$tmp_libs $deplib" ;;
  2528.     esac
  2529.   done
  2530.   eval $var="$tmp_libs"
  2531. done # for var
  2532.       fi
  2533.       # Last step: remove runtime libs from dependency_libs
  2534.       # (they stay in deplibs)
  2535.       tmp_libs=
  2536.       for i in $dependency_libs ; do
  2537. case " $predeps $postdeps $compiler_lib_search_path " in
  2538. *" $i "*)
  2539.   i=""
  2540.   ;;
  2541. esac
  2542. if test -n "$i" ; then
  2543.   tmp_libs="$tmp_libs $i"
  2544. fi
  2545.       done
  2546.       dependency_libs=$tmp_libs
  2547.     done # for pass
  2548.     if test "$linkmode" = prog; then
  2549.       dlfiles="$newdlfiles"
  2550.       dlprefiles="$newdlprefiles"
  2551.     fi
  2552.     case $linkmode in
  2553.     oldlib)
  2554.       if test -n "$deplibs"; then
  2555. $echo "$modename: warning: `-l' and `-L' are ignored for archives" 1>&2
  2556.       fi
  2557.       if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
  2558. $echo "$modename: warning: `-dlopen' is ignored for archives" 1>&2
  2559.       fi
  2560.       if test -n "$rpath"; then
  2561. $echo "$modename: warning: `-rpath' is ignored for archives" 1>&2
  2562.       fi
  2563.       if test -n "$xrpath"; then
  2564. $echo "$modename: warning: `-R' is ignored for archives" 1>&2
  2565.       fi
  2566.       if test -n "$vinfo"; then
  2567. $echo "$modename: warning: `-version-info/-version-number' is ignored for archives" 1>&2
  2568.       fi
  2569.       if test -n "$release"; then
  2570. $echo "$modename: warning: `-release' is ignored for archives" 1>&2
  2571.       fi
  2572.       if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
  2573. $echo "$modename: warning: `-export-symbols' is ignored for archives" 1>&2
  2574.       fi
  2575.       # Now set the variables for building old libraries.
  2576.       build_libtool_libs=no
  2577.       oldlibs="$output"
  2578.       objs="$objs$old_deplibs"
  2579.       ;;
  2580.     lib)
  2581.       # Make sure we only generate libraries of the form `libNAME.la'.
  2582.       case $outputname in
  2583.       lib*)
  2584. name=`$echo "X$outputname" | $Xsed -e 's/.la$//' -e 's/^lib//'`
  2585. eval shared_ext="$shrext_cmds"
  2586. eval libname="$libname_spec"
  2587. ;;
  2588.       *)
  2589. if test "$module" = no; then
  2590.   $echo "$modename: libtool library `$output' must begin with `lib'" 1>&2
  2591.   $echo "$help" 1>&2
  2592.   exit $EXIT_FAILURE
  2593. fi
  2594. if test "$need_lib_prefix" != no; then
  2595.   # Add the "lib" prefix for modules if required
  2596.   name=`$echo "X$outputname" | $Xsed -e 's/.la$//'`
  2597.   eval shared_ext="$shrext_cmds"
  2598.   eval libname="$libname_spec"
  2599. else
  2600.   libname=`$echo "X$outputname" | $Xsed -e 's/.la$//'`
  2601. fi
  2602. ;;
  2603.       esac
  2604.       if test -n "$objs"; then
  2605. if test "$deplibs_check_method" != pass_all; then
  2606.   $echo "$modename: cannot build libtool library `$output' from non-libtool objects on this host:$objs" 2>&1
  2607.   exit $EXIT_FAILURE
  2608. else
  2609.   $echo
  2610.   $echo "*** Warning: Linking the shared library $output against the non-libtool"
  2611.   $echo "*** objects $objs is not portable!"
  2612.   libobjs="$libobjs $objs"
  2613. fi
  2614.       fi
  2615.       if test "$dlself" != no; then
  2616. $echo "$modename: warning: `-dlopen self' is ignored for libtool libraries" 1>&2
  2617.       fi
  2618.       set dummy $rpath
  2619.       if test "$#" -gt 2; then
  2620. $echo "$modename: warning: ignoring multiple `-rpath's for a libtool library" 1>&2
  2621.       fi
  2622.       install_libdir="$2"
  2623.       oldlibs=
  2624.       if test -z "$rpath"; then
  2625. if test "$build_libtool_libs" = yes; then
  2626.   # Building a libtool convenience library.
  2627.   # Some compilers have problems with a `.al' extension so
  2628.   # convenience libraries should have the same extension an
  2629.   # archive normally would.
  2630.   oldlibs="$output_objdir/$libname.$libext $oldlibs"
  2631.   build_libtool_libs=convenience
  2632.   build_old_libs=yes
  2633. fi
  2634. if test -n "$vinfo"; then
  2635.   $echo "$modename: warning: `-version-info/-version-number' is ignored for convenience libraries" 1>&2
  2636. fi
  2637. if test -n "$release"; then
  2638.   $echo "$modename: warning: `-release' is ignored for convenience libraries" 1>&2
  2639. fi
  2640.       else
  2641. # Parse the version information argument.
  2642. save_ifs="$IFS"; IFS=':'
  2643. set dummy $vinfo 0 0 0
  2644. IFS="$save_ifs"
  2645. if test -n "$8"; then
  2646.   $echo "$modename: too many parameters to `-version-info'" 1>&2
  2647.   $echo "$help" 1>&2
  2648.   exit $EXIT_FAILURE
  2649. fi
  2650. # convert absolute version numbers to libtool ages
  2651. # this retains compatibility with .la files and attempts
  2652. # to make the code below a bit more comprehensible
  2653. case $vinfo_number in
  2654. yes)
  2655.   number_major="$2"
  2656.   number_minor="$3"
  2657.   number_revision="$4"
  2658.   #
  2659.   # There are really only two kinds -- those that
  2660.   # use the current revision as the major version
  2661.   # and those that subtract age and use age as
  2662.   # a minor version.  But, then there is irix
  2663.   # which has an extra 1 added just for fun
  2664.   #
  2665.   case $version_type in
  2666.   darwin|linux|osf|windows)
  2667.     current=`expr $number_major + $number_minor`
  2668.     age="$number_minor"
  2669.     revision="$number_revision"
  2670.     ;;
  2671.   freebsd-aout|freebsd-elf|sunos)
  2672.     current="$number_major"
  2673.     revision="$number_minor"
  2674.     age="0"
  2675.     ;;
  2676.   irix|nonstopux)
  2677.     current=`expr $number_major + $number_minor - 1`
  2678.     age="$number_minor"
  2679.     revision="$number_minor"
  2680.     ;;
  2681.   *)
  2682.     $echo "$modename: unknown library version type `$version_type'" 1>&2
  2683.     $echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2
  2684.     exit $EXIT_FAILURE
  2685.     ;;
  2686.   esac
  2687.   ;;
  2688. no)
  2689.   current="$2"
  2690.   revision="$3"
  2691.   age="$4"
  2692.   ;;
  2693. esac
  2694. # Check that each of the things are valid numbers.
  2695. case $current in
  2696. 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;
  2697. *)
  2698.   $echo "$modename: CURRENT `$current' is not a nonnegative integer" 1>&2
  2699.   $echo "$modename: `$vinfo' is not valid version information" 1>&2
  2700.   exit $EXIT_FAILURE
  2701.   ;;
  2702. esac
  2703. case $revision in
  2704. 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;
  2705. *)
  2706.   $echo "$modename: REVISION `$revision' is not a nonnegative integer" 1>&2
  2707.   $echo "$modename: `$vinfo' is not valid version information" 1>&2
  2708.   exit $EXIT_FAILURE
  2709.   ;;
  2710. esac
  2711. case $age in
  2712. 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;
  2713. *)
  2714.   $echo "$modename: AGE `$age' is not a nonnegative integer" 1>&2
  2715.   $echo "$modename: `$vinfo' is not valid version information" 1>&2
  2716.   exit $EXIT_FAILURE
  2717.   ;;
  2718. esac
  2719. if test "$age" -gt "$current"; then
  2720.   $echo "$modename: AGE `$age' is greater than the current interface number `$current'" 1>&2
  2721.   $echo "$modename: `$vinfo' is not valid version information" 1>&2
  2722.   exit $EXIT_FAILURE
  2723. fi
  2724. # Calculate the version variables.
  2725. major=
  2726. versuffix=
  2727. verstring=
  2728. case $version_type in
  2729. none) ;;
  2730. darwin)
  2731.   # Like Linux, but with the current version available in
  2732.   # verstring for coding it into the library header
  2733.   major=.`expr $current - $age`
  2734.   versuffix="$major.$age.$revision"
  2735.   # Darwin ld doesn't like 0 for these options...
  2736.   minor_current=`expr $current + 1`
  2737.   verstring="-compatibility_version $minor_current -current_version $minor_current.$revision"
  2738.   ;;
  2739. freebsd-aout)
  2740.   major=".$current"
  2741.   versuffix=".$current.$revision";
  2742.   ;;
  2743. freebsd-elf)
  2744.   major=".$current"
  2745.   versuffix=".$current";
  2746.   ;;
  2747. irix | nonstopux)
  2748.   major=`expr $current - $age + 1`
  2749.   case $version_type in
  2750.     nonstopux) verstring_prefix=nonstopux ;;
  2751.     *)         verstring_prefix=sgi ;;
  2752.   esac
  2753.   verstring="$verstring_prefix$major.$revision"
  2754.   # Add in all the interfaces that we are compatible with.
  2755.   loop=$revision
  2756.   while test "$loop" -ne 0; do
  2757.     iface=`expr $revision - $loop`
  2758.     loop=`expr $loop - 1`
  2759.     verstring="$verstring_prefix$major.$iface:$verstring"
  2760.   done
  2761.   # Before this point, $major must not contain `.'.
  2762.   major=.$major
  2763.   versuffix="$major.$revision"
  2764.   ;;
  2765. linux)
  2766.   major=.`expr $current - $age`
  2767.   versuffix="$major.$age.$revision"
  2768.   ;;
  2769. osf)
  2770.   major=.`expr $current - $age`
  2771.   versuffix=".$current.$age.$revision"
  2772.   verstring="$current.$age.$revision"
  2773.   # Add in all the interfaces that we are compatible with.
  2774.   loop=$age
  2775.   while test "$loop" -ne 0; do
  2776.     iface=`expr $current - $loop`
  2777.     loop=`expr $loop - 1`
  2778.     verstring="$verstring:${iface}.0"
  2779.   done
  2780.   # Make executables depend on our current version.
  2781.   verstring="$verstring:${current}.0"
  2782.   ;;
  2783. sunos)
  2784.   major=".$current"
  2785.   versuffix=".$current.$revision"
  2786.   ;;
  2787. windows)
  2788.   # Use '-' rather than '.', since we only want one
  2789.   # extension on DOS 8.3 filesystems.
  2790.   major=`expr $current - $age`
  2791.   versuffix="-$major"
  2792.   ;;
  2793. *)
  2794.   $echo "$modename: unknown library version type `$version_type'" 1>&2
  2795.   $echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2
  2796.   exit $EXIT_FAILURE
  2797.   ;;
  2798. esac
  2799. # Clear the version info if we defaulted, and they specified a release.
  2800. if test -z "$vinfo" && test -n "$release"; then
  2801.   major=
  2802.   case $version_type in
  2803.   darwin)
  2804.     # we can't check for "0.0" in archive_cmds due to quoting
  2805.     # problems, so we reset it completely
  2806.     verstring=
  2807.     ;;
  2808.   *)
  2809.     verstring="0.0"
  2810.     ;;
  2811.   esac
  2812.   if test "$need_version" = no; then
  2813.     versuffix=
  2814.   else
  2815.     versuffix=".0.0"
  2816.   fi
  2817. fi
  2818. # Remove version info from name if versioning should be avoided
  2819. if test "$avoid_version" = yes && test "$need_version" = no; then
  2820.   major=
  2821.   versuffix=
  2822.   verstring=""
  2823. fi
  2824. # Check to see if the archive will have undefined symbols.
  2825. if test "$allow_undefined" = yes; then
  2826.   if test "$allow_undefined_flag" = unsupported; then
  2827.     $echo "$modename: warning: undefined symbols not allowed in $host shared libraries" 1>&2
  2828.     build_libtool_libs=no
  2829.     build_old_libs=yes
  2830.   fi
  2831. else
  2832.   # Don't allow undefined symbols.
  2833.   allow_undefined_flag="$no_undefined_flag"
  2834. fi
  2835.       fi
  2836.       if test "$mode" != relink; then
  2837. # Remove our outputs, but don't remove object files since they
  2838. # may have been created when compiling PIC objects.
  2839. removelist=
  2840. tempremovelist=`$echo "$output_objdir/*"`
  2841. for p in $tempremovelist; do
  2842.   case $p in
  2843.     *.$objext)
  2844.        ;;
  2845.     $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*)
  2846.        if test "X$precious_files_regex" != "X"; then
  2847.          if echo $p | $EGREP -e "$precious_files_regex" >/dev/null 2>&1
  2848.          then
  2849.    continue
  2850.  fi
  2851.        fi
  2852.        removelist="$removelist $p"
  2853.        ;;
  2854.     *) ;;
  2855.   esac
  2856. done
  2857. if test -n "$removelist"; then
  2858.   $show "${rm}r $removelist"
  2859.   $run ${rm}r $removelist
  2860. fi
  2861.       fi
  2862.       # Now set the variables for building old libraries.
  2863.       if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then
  2864. oldlibs="$oldlibs $output_objdir/$libname.$libext"
  2865. # Transform .lo files to .o files.
  2866. oldobjs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/.'${libext}'$/d' -e "$lo2o" | $NL2SP`
  2867.       fi
  2868.       # Eliminate all temporary directories.
  2869.       for path in $notinst_path; do
  2870. lib_search_path=`$echo "$lib_search_path " | ${SED} -e 's% $path % %g'`
  2871. deplibs=`$echo "$deplibs " | ${SED} -e 's% -L$path % %g'`
  2872. dependency_libs=`$echo "$dependency_libs " | ${SED} -e 's% -L$path % %g'`
  2873.       done
  2874.       if test -n "$xrpath"; then
  2875. # If the user specified any rpath flags, then add them.
  2876. temp_xrpath=
  2877. for libdir in $xrpath; do
  2878.   temp_xrpath="$temp_xrpath -R$libdir"
  2879.   case "$finalize_rpath " in
  2880.   *" $libdir "*) ;;
  2881.   *) finalize_rpath="$finalize_rpath $libdir" ;;
  2882.   esac
  2883. done
  2884. if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then
  2885.   dependency_libs="$temp_xrpath $dependency_libs"
  2886. fi
  2887.       fi
  2888.       # Make sure dlfiles contains only unique files that won't be dlpreopened
  2889.       old_dlfiles="$dlfiles"
  2890.       dlfiles=
  2891.       for lib in $old_dlfiles; do
  2892. case " $dlprefiles $dlfiles " in
  2893. *" $lib "*) ;;
  2894. *) dlfiles="$dlfiles $lib" ;;
  2895. esac
  2896.       done
  2897.       # Make sure dlprefiles contains only unique files
  2898.       old_dlprefiles="$dlprefiles"
  2899.       dlprefiles=
  2900.       for lib in $old_dlprefiles; do
  2901. case "$dlprefiles " in
  2902. *" $lib "*) ;;
  2903. *) dlprefiles="$dlprefiles $lib" ;;
  2904. esac
  2905.       done
  2906.       if test "$build_libtool_libs" = yes; then
  2907. if test -n "$rpath"; then
  2908.   case $host in
  2909.   *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos*)
  2910.     # these systems don't actually have a c library (as such)!
  2911.     ;;
  2912.   *-*-rhapsody* | *-*-darwin1.[012])
  2913.     # Rhapsody C library is in the System framework
  2914.     deplibs="$deplibs -framework System"
  2915.     ;;
  2916.   *-*-netbsd*)
  2917.     # Don't link with libc until the a.out ld.so is fixed.
  2918.     ;;
  2919.   *-*-openbsd* | *-*-freebsd*)
  2920.     # Do not include libc due to us having libc/libc_r.
  2921.     test "X$arg" = "X-lc" && continue
  2922.     ;;
  2923.     *)
  2924.     # Add libc to deplibs on all other systems if necessary.
  2925.     if test "$build_libtool_need_lc" = "yes"; then
  2926.       deplibs="$deplibs -lc"
  2927.     fi
  2928.     ;;
  2929.   esac
  2930. fi
  2931. # Transform deplibs into only deplibs that can be linked in shared.
  2932. name_save=$name