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