"Fossies" - the Fresh Open Source Software Archive

Member "harminv-1.4.2/ltmain.sh" (17 Mar 2022, 333035 Bytes) of package /linux/privat/harminv-1.4.2.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Bash source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file. See also the latest Fossies "Diffs" side-by-side code changes report for "ltmain.sh": 1.4.1_vs_1.4.2.

    1 #! /usr/bin/env sh
    2 ## DO NOT EDIT - This file generated from ./build-aux/ltmain.in
    3 ##               by inline-source v2019-02-19.15
    4 
    5 # libtool (GNU libtool) 2.4.7
    6 # Provide generalized library-building support services.
    7 # Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
    8 
    9 # Copyright (C) 1996-2019, 2021-2022 Free Software Foundation, Inc.
   10 # This is free software; see the source for copying conditions.  There is NO
   11 # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
   12 
   13 # GNU Libtool is free software; you can redistribute it and/or modify
   14 # it under the terms of the GNU General Public License as published by
   15 # the Free Software Foundation; either version 2 of the License, or
   16 # (at your option) any later version.
   17 #
   18 # As a special exception to the GNU General Public License,
   19 # if you distribute this file as part of a program or library that
   20 # is built using GNU Libtool, you may include this file under the
   21 # same distribution terms that you use for the rest of that program.
   22 #
   23 # GNU Libtool is distributed in the hope that it will be useful, but
   24 # WITHOUT ANY WARRANTY; without even the implied warranty of
   25 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   26 # General Public License for more details.
   27 #
   28 # You should have received a copy of the GNU General Public License
   29 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
   30 
   31 
   32 PROGRAM=libtool
   33 PACKAGE=libtool
   34 VERSION=2.4.7
   35 package_revision=2.4.7
   36 
   37 
   38 ## ------ ##
   39 ## Usage. ##
   40 ## ------ ##
   41 
   42 # Run './libtool --help' for help with using this script from the
   43 # command line.
   44 
   45 
   46 ## ------------------------------- ##
   47 ## User overridable command paths. ##
   48 ## ------------------------------- ##
   49 
   50 # After configure completes, it has a better idea of some of the
   51 # shell tools we need than the defaults used by the functions shared
   52 # with bootstrap, so set those here where they can still be over-
   53 # ridden by the user, but otherwise take precedence.
   54 
   55 : ${AUTOCONF="autoconf"}
   56 : ${AUTOMAKE="automake"}
   57 
   58 
   59 ## -------------------------- ##
   60 ## Source external libraries. ##
   61 ## -------------------------- ##
   62 
   63 # Much of our low-level functionality needs to be sourced from external
   64 # libraries, which are installed to $pkgauxdir.
   65 
   66 # Set a version string for this script.
   67 scriptversion=2019-02-19.15; # UTC
   68 
   69 # General shell script boiler plate, and helper functions.
   70 # Written by Gary V. Vaughan, 2004
   71 
   72 # This is free software.  There is NO warranty; not even for
   73 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
   74 #
   75 # Copyright (C) 2004-2019, 2021 Bootstrap Authors
   76 #
   77 # This file is dual licensed under the terms of the MIT license
   78 # <https://opensource.org/license/MIT>, and GPL version 2 or later
   79 # <http://www.gnu.org/licenses/gpl-2.0.html>.  You must apply one of
   80 # these licenses when using or redistributing this software or any of
   81 # the files within it.  See the URLs above, or the file `LICENSE`
   82 # included in the Bootstrap distribution for the full license texts.
   83 
   84 # Please report bugs or propose patches to:
   85 # <https://github.com/gnulib-modules/bootstrap/issues>
   86 
   87 
   88 ## ------ ##
   89 ## Usage. ##
   90 ## ------ ##
   91 
   92 # Evaluate this file near the top of your script to gain access to
   93 # the functions and variables defined here:
   94 #
   95 #   . `echo "$0" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh
   96 #
   97 # If you need to override any of the default environment variable
   98 # settings, do that before evaluating this file.
   99 
  100 
  101 ## -------------------- ##
  102 ## Shell normalisation. ##
  103 ## -------------------- ##
  104 
  105 # Some shells need a little help to be as Bourne compatible as possible.
  106 # Before doing anything else, make sure all that help has been provided!
  107 
  108 DUALCASE=1; export DUALCASE # for MKS sh
  109 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
  110   emulate sh
  111   NULLCMD=:
  112   # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
  113   # is contrary to our usage.  Disable this feature.
  114   alias -g '${1+"$@"}'='"$@"'
  115   setopt NO_GLOB_SUBST
  116 else
  117   case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac
  118 fi
  119 
  120 # NLS nuisances: We save the old values in case they are required later.
  121 _G_user_locale=
  122 _G_safe_locale=
  123 for _G_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES
  124 do
  125   eval "if test set = \"\${$_G_var+set}\"; then
  126           save_$_G_var=\$$_G_var
  127           $_G_var=C
  128       export $_G_var
  129       _G_user_locale=\"$_G_var=\\\$save_\$_G_var; \$_G_user_locale\"
  130       _G_safe_locale=\"$_G_var=C; \$_G_safe_locale\"
  131     fi"
  132 done
  133 # These NLS vars are set unconditionally (bootstrap issue #24).  Unset those
  134 # in case the environment reset is needed later and the $save_* variant is not
  135 # defined (see the code above).
  136 LC_ALL=C
  137 LANGUAGE=C
  138 export LANGUAGE LC_ALL
  139 
  140 # Make sure IFS has a sensible default
  141 sp=' '
  142 nl='
  143 '
  144 IFS="$sp    $nl"
  145 
  146 # There are apparently some retarded systems that use ';' as a PATH separator!
  147 if test "${PATH_SEPARATOR+set}" != set; then
  148   PATH_SEPARATOR=:
  149   (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
  150     (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
  151       PATH_SEPARATOR=';'
  152   }
  153 fi
  154 
  155 
  156 # func_unset VAR
  157 # --------------
  158 # Portably unset VAR.
  159 # In some shells, an 'unset VAR' statement leaves a non-zero return
  160 # status if VAR is already unset, which might be problematic if the
  161 # statement is used at the end of a function (thus poisoning its return
  162 # value) or when 'set -e' is active (causing even a spurious abort of
  163 # the script in this case).
  164 func_unset ()
  165 {
  166     { eval $1=; (eval unset $1) >/dev/null 2>&1 && eval unset $1 || : ; }
  167 }
  168 
  169 
  170 # Make sure CDPATH doesn't cause `cd` commands to output the target dir.
  171 func_unset CDPATH
  172 
  173 # Make sure ${,E,F}GREP behave sanely.
  174 func_unset GREP_OPTIONS
  175 
  176 
  177 ## ------------------------- ##
  178 ## Locate command utilities. ##
  179 ## ------------------------- ##
  180 
  181 
  182 # func_executable_p FILE
  183 # ----------------------
  184 # Check that FILE is an executable regular file.
  185 func_executable_p ()
  186 {
  187     test -f "$1" && test -x "$1"
  188 }
  189 
  190 
  191 # func_path_progs PROGS_LIST CHECK_FUNC [PATH]
  192 # --------------------------------------------
  193 # Search for either a program that responds to --version with output
  194 # containing "GNU", or else returned by CHECK_FUNC otherwise, by
  195 # trying all the directories in PATH with each of the elements of
  196 # PROGS_LIST.
  197 #
  198 # CHECK_FUNC should accept the path to a candidate program, and
  199 # set $func_check_prog_result if it truncates its output less than
  200 # $_G_path_prog_max characters.
  201 func_path_progs ()
  202 {
  203     _G_progs_list=$1
  204     _G_check_func=$2
  205     _G_PATH=${3-"$PATH"}
  206 
  207     _G_path_prog_max=0
  208     _G_path_prog_found=false
  209     _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:}
  210     for _G_dir in $_G_PATH; do
  211       IFS=$_G_save_IFS
  212       test -z "$_G_dir" && _G_dir=.
  213       for _G_prog_name in $_G_progs_list; do
  214         for _exeext in '' .EXE; do
  215           _G_path_prog=$_G_dir/$_G_prog_name$_exeext
  216           func_executable_p "$_G_path_prog" || continue
  217           case `"$_G_path_prog" --version 2>&1` in
  218             *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;;
  219             *)     $_G_check_func $_G_path_prog
  220            func_path_progs_result=$func_check_prog_result
  221            ;;
  222           esac
  223           $_G_path_prog_found && break 3
  224         done
  225       done
  226     done
  227     IFS=$_G_save_IFS
  228     test -z "$func_path_progs_result" && {
  229       echo "no acceptable sed could be found in \$PATH" >&2
  230       exit 1
  231     }
  232 }
  233 
  234 
  235 # We want to be able to use the functions in this file before configure
  236 # has figured out where the best binaries are kept, which means we have
  237 # to search for them ourselves - except when the results are already set
  238 # where we skip the searches.
  239 
  240 # Unless the user overrides by setting SED, search the path for either GNU
  241 # sed, or the sed that truncates its output the least.
  242 test -z "$SED" && {
  243   _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/
  244   for _G_i in 1 2 3 4 5 6 7; do
  245     _G_sed_script=$_G_sed_script$nl$_G_sed_script
  246   done
  247   echo "$_G_sed_script" 2>/dev/null | sed 99q >conftest.sed
  248   _G_sed_script=
  249 
  250   func_check_prog_sed ()
  251   {
  252     _G_path_prog=$1
  253 
  254     _G_count=0
  255     printf 0123456789 >conftest.in
  256     while :
  257     do
  258       cat conftest.in conftest.in >conftest.tmp
  259       mv conftest.tmp conftest.in
  260       cp conftest.in conftest.nl
  261       echo '' >> conftest.nl
  262       "$_G_path_prog" -f conftest.sed <conftest.nl >conftest.out 2>/dev/null || break
  263       diff conftest.out conftest.nl >/dev/null 2>&1 || break
  264       _G_count=`expr $_G_count + 1`
  265       if test "$_G_count" -gt "$_G_path_prog_max"; then
  266         # Best one so far, save it but keep looking for a better one
  267         func_check_prog_result=$_G_path_prog
  268         _G_path_prog_max=$_G_count
  269       fi
  270       # 10*(2^10) chars as input seems more than enough
  271       test 10 -lt "$_G_count" && break
  272     done
  273     rm -f conftest.in conftest.tmp conftest.nl conftest.out
  274   }
  275 
  276   func_path_progs "sed gsed" func_check_prog_sed "$PATH:/usr/xpg4/bin"
  277   rm -f conftest.sed
  278   SED=$func_path_progs_result
  279 }
  280 
  281 
  282 # Unless the user overrides by setting GREP, search the path for either GNU
  283 # grep, or the grep that truncates its output the least.
  284 test -z "$GREP" && {
  285   func_check_prog_grep ()
  286   {
  287     _G_path_prog=$1
  288 
  289     _G_count=0
  290     _G_path_prog_max=0
  291     printf 0123456789 >conftest.in
  292     while :
  293     do
  294       cat conftest.in conftest.in >conftest.tmp
  295       mv conftest.tmp conftest.in
  296       cp conftest.in conftest.nl
  297       echo 'GREP' >> conftest.nl
  298       "$_G_path_prog" -e 'GREP$' -e '-(cannot match)-' <conftest.nl >conftest.out 2>/dev/null || break
  299       diff conftest.out conftest.nl >/dev/null 2>&1 || break
  300       _G_count=`expr $_G_count + 1`
  301       if test "$_G_count" -gt "$_G_path_prog_max"; then
  302         # Best one so far, save it but keep looking for a better one
  303         func_check_prog_result=$_G_path_prog
  304         _G_path_prog_max=$_G_count
  305       fi
  306       # 10*(2^10) chars as input seems more than enough
  307       test 10 -lt "$_G_count" && break
  308     done
  309     rm -f conftest.in conftest.tmp conftest.nl conftest.out
  310   }
  311 
  312   func_path_progs "grep ggrep" func_check_prog_grep "$PATH:/usr/xpg4/bin"
  313   GREP=$func_path_progs_result
  314 }
  315 
  316 
  317 ## ------------------------------- ##
  318 ## User overridable command paths. ##
  319 ## ------------------------------- ##
  320 
  321 # All uppercase variable names are used for environment variables.  These
  322 # variables can be overridden by the user before calling a script that
  323 # uses them if a suitable command of that name is not already available
  324 # in the command search PATH.
  325 
  326 : ${CP="cp -f"}
  327 : ${ECHO="printf %s\n"}
  328 : ${EGREP="$GREP -E"}
  329 : ${FGREP="$GREP -F"}
  330 : ${LN_S="ln -s"}
  331 : ${MAKE="make"}
  332 : ${MKDIR="mkdir"}
  333 : ${MV="mv -f"}
  334 : ${RM="rm -f"}
  335 : ${SHELL="${CONFIG_SHELL-/bin/sh}"}
  336 
  337 
  338 ## -------------------- ##
  339 ## Useful sed snippets. ##
  340 ## -------------------- ##
  341 
  342 sed_dirname='s|/[^/]*$||'
  343 sed_basename='s|^.*/||'
  344 
  345 # Sed substitution that helps us do robust quoting.  It backslashifies
  346 # metacharacters that are still active within double-quoted strings.
  347 sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
  348 
  349 # Same as above, but do not quote variable references.
  350 sed_double_quote_subst='s/\(["`\\]\)/\\\1/g'
  351 
  352 # Sed substitution that turns a string into a regex matching for the
  353 # string literally.
  354 sed_make_literal_regex='s|[].[^$\\*\/]|\\&|g'
  355 
  356 # Sed substitution that converts a w32 file name or path
  357 # that contains forward slashes, into one that contains
  358 # (escaped) backslashes.  A very naive implementation.
  359 sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g'
  360 
  361 # Re-'\' parameter expansions in output of sed_double_quote_subst that
  362 # were '\'-ed in input to the same.  If an odd number of '\' preceded a
  363 # '$' in input to sed_double_quote_subst, that '$' was protected from
  364 # expansion.  Since each input '\' is now two '\'s, look for any number
  365 # of runs of four '\'s followed by two '\'s and then a '$'.  '\' that '$'.
  366 _G_bs='\\'
  367 _G_bs2='\\\\'
  368 _G_bs4='\\\\\\\\'
  369 _G_dollar='\$'
  370 sed_double_backslash="\
  371   s/$_G_bs4/&\\
  372 /g
  373   s/^$_G_bs2$_G_dollar/$_G_bs&/
  374   s/\\([^$_G_bs]\\)$_G_bs2$_G_dollar/\\1$_G_bs2$_G_bs$_G_dollar/g
  375   s/\n//g"
  376 
  377 # require_check_ifs_backslash
  378 # ---------------------------
  379 # Check if we can use backslash as IFS='\' separator, and set
  380 # $check_ifs_backshlash_broken to ':' or 'false'.
  381 require_check_ifs_backslash=func_require_check_ifs_backslash
  382 func_require_check_ifs_backslash ()
  383 {
  384   _G_save_IFS=$IFS
  385   IFS='\'
  386   _G_check_ifs_backshlash='a\\b'
  387   for _G_i in $_G_check_ifs_backshlash
  388   do
  389   case $_G_i in
  390   a)
  391     check_ifs_backshlash_broken=false
  392     ;;
  393   '')
  394     break
  395     ;;
  396   *)
  397     check_ifs_backshlash_broken=:
  398     break
  399     ;;
  400   esac
  401   done
  402   IFS=$_G_save_IFS
  403   require_check_ifs_backslash=:
  404 }
  405 
  406 
  407 ## ----------------- ##
  408 ## Global variables. ##
  409 ## ----------------- ##
  410 
  411 # Except for the global variables explicitly listed below, the following
  412 # functions in the '^func_' namespace, and the '^require_' namespace
  413 # variables initialised in the 'Resource management' section, sourcing
  414 # this file will not pollute your global namespace with anything
  415 # else. There's no portable way to scope variables in Bourne shell
  416 # though, so actually running these functions will sometimes place
  417 # results into a variable named after the function, and often use
  418 # temporary variables in the '^_G_' namespace. If you are careful to
  419 # avoid using those namespaces casually in your sourcing script, things
  420 # should continue to work as you expect. And, of course, you can freely
  421 # overwrite any of the functions or variables defined here before
  422 # calling anything to customize them.
  423 
  424 EXIT_SUCCESS=0
  425 EXIT_FAILURE=1
  426 EXIT_MISMATCH=63  # $? = 63 is used to indicate version mismatch to missing.
  427 EXIT_SKIP=77      # $? = 77 is used to indicate a skipped test to automake.
  428 
  429 # Allow overriding, eg assuming that you follow the convention of
  430 # putting '$debug_cmd' at the start of all your functions, you can get
  431 # bash to show function call trace with:
  432 #
  433 #    debug_cmd='eval echo "${FUNCNAME[0]} $*" >&2' bash your-script-name
  434 debug_cmd=${debug_cmd-":"}
  435 exit_cmd=:
  436 
  437 # By convention, finish your script with:
  438 #
  439 #    exit $exit_status
  440 #
  441 # so that you can set exit_status to non-zero if you want to indicate
  442 # something went wrong during execution without actually bailing out at
  443 # the point of failure.
  444 exit_status=$EXIT_SUCCESS
  445 
  446 # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh
  447 # is ksh but when the shell is invoked as "sh" and the current value of
  448 # the _XPG environment variable is not equal to 1 (one), the special
  449 # positional parameter $0, within a function call, is the name of the
  450 # function.
  451 progpath=$0
  452 
  453 # The name of this program.
  454 progname=`$ECHO "$progpath" |$SED "$sed_basename"`
  455 
  456 # Make sure we have an absolute progpath for reexecution:
  457 case $progpath in
  458   [\\/]*|[A-Za-z]:\\*) ;;
  459   *[\\/]*)
  460      progdir=`$ECHO "$progpath" |$SED "$sed_dirname"`
  461      progdir=`cd "$progdir" && pwd`
  462      progpath=$progdir/$progname
  463      ;;
  464   *)
  465      _G_IFS=$IFS
  466      IFS=${PATH_SEPARATOR-:}
  467      for progdir in $PATH; do
  468        IFS=$_G_IFS
  469        test -x "$progdir/$progname" && break
  470      done
  471      IFS=$_G_IFS
  472      test -n "$progdir" || progdir=`pwd`
  473      progpath=$progdir/$progname
  474      ;;
  475 esac
  476 
  477 
  478 ## ----------------- ##
  479 ## Standard options. ##
  480 ## ----------------- ##
  481 
  482 # The following options affect the operation of the functions defined
  483 # below, and should be set appropriately depending on run-time para-
  484 # meters passed on the command line.
  485 
  486 opt_dry_run=false
  487 opt_quiet=false
  488 opt_verbose=false
  489 
  490 # Categories 'all' and 'none' are always available.  Append any others
  491 # you will pass as the first argument to func_warning from your own
  492 # code.
  493 warning_categories=
  494 
  495 # By default, display warnings according to 'opt_warning_types'.  Set
  496 # 'warning_func'  to ':' to elide all warnings, or func_fatal_error to
  497 # treat the next displayed warning as a fatal error.
  498 warning_func=func_warn_and_continue
  499 
  500 # Set to 'all' to display all warnings, 'none' to suppress all
  501 # warnings, or a space delimited list of some subset of
  502 # 'warning_categories' to display only the listed warnings.
  503 opt_warning_types=all
  504 
  505 
  506 ## -------------------- ##
  507 ## Resource management. ##
  508 ## -------------------- ##
  509 
  510 # This section contains definitions for functions that each ensure a
  511 # particular resource (a file, or a non-empty configuration variable for
  512 # example) is available, and if appropriate to extract default values
  513 # from pertinent package files. Call them using their associated
  514 # 'require_*' variable to ensure that they are executed, at most, once.
  515 #
  516 # It's entirely deliberate that calling these functions can set
  517 # variables that don't obey the namespace limitations obeyed by the rest
  518 # of this file, in order that that they be as useful as possible to
  519 # callers.
  520 
  521 
  522 # require_term_colors
  523 # -------------------
  524 # Allow display of bold text on terminals that support it.
  525 require_term_colors=func_require_term_colors
  526 func_require_term_colors ()
  527 {
  528     $debug_cmd
  529 
  530     test -t 1 && {
  531       # COLORTERM and USE_ANSI_COLORS environment variables take
  532       # precedence, because most terminfo databases neglect to describe
  533       # whether color sequences are supported.
  534       test -n "${COLORTERM+set}" && : ${USE_ANSI_COLORS="1"}
  535 
  536       if test 1 = "$USE_ANSI_COLORS"; then
  537         # Standard ANSI escape sequences
  538         tc_reset=''
  539         tc_bold='';   tc_standout=''
  540         tc_red='';   tc_green=''
  541         tc_blue='';  tc_cyan=''
  542       else
  543         # Otherwise trust the terminfo database after all.
  544         test -n "`tput sgr0 2>/dev/null`" && {
  545           tc_reset=`tput sgr0`
  546           test -n "`tput bold 2>/dev/null`" && tc_bold=`tput bold`
  547           tc_standout=$tc_bold
  548           test -n "`tput smso 2>/dev/null`" && tc_standout=`tput smso`
  549           test -n "`tput setaf 1 2>/dev/null`" && tc_red=`tput setaf 1`
  550           test -n "`tput setaf 2 2>/dev/null`" && tc_green=`tput setaf 2`
  551           test -n "`tput setaf 4 2>/dev/null`" && tc_blue=`tput setaf 4`
  552           test -n "`tput setaf 5 2>/dev/null`" && tc_cyan=`tput setaf 5`
  553         }
  554       fi
  555     }
  556 
  557     require_term_colors=:
  558 }
  559 
  560 
  561 ## ----------------- ##
  562 ## Function library. ##
  563 ## ----------------- ##
  564 
  565 # This section contains a variety of useful functions to call in your
  566 # scripts. Take note of the portable wrappers for features provided by
  567 # some modern shells, which will fall back to slower equivalents on
  568 # less featureful shells.
  569 
  570 
  571 # func_append VAR VALUE
  572 # ---------------------
  573 # Append VALUE onto the existing contents of VAR.
  574 
  575   # We should try to minimise forks, especially on Windows where they are
  576   # unreasonably slow, so skip the feature probes when bash or zsh are
  577   # being used:
  578   if test set = "${BASH_VERSION+set}${ZSH_VERSION+set}"; then
  579     : ${_G_HAVE_ARITH_OP="yes"}
  580     : ${_G_HAVE_XSI_OPS="yes"}
  581     # The += operator was introduced in bash 3.1
  582     case $BASH_VERSION in
  583       [12].* | 3.0 | 3.0*) ;;
  584       *)
  585         : ${_G_HAVE_PLUSEQ_OP="yes"}
  586         ;;
  587     esac
  588   fi
  589 
  590   # _G_HAVE_PLUSEQ_OP
  591   # Can be empty, in which case the shell is probed, "yes" if += is
  592   # useable or anything else if it does not work.
  593   test -z "$_G_HAVE_PLUSEQ_OP" \
  594     && (eval 'x=a; x+=" b"; test "a b" = "$x"') 2>/dev/null \
  595     && _G_HAVE_PLUSEQ_OP=yes
  596 
  597 if test yes = "$_G_HAVE_PLUSEQ_OP"
  598 then
  599   # This is an XSI compatible shell, allowing a faster implementation...
  600   eval 'func_append ()
  601   {
  602     $debug_cmd
  603 
  604     eval "$1+=\$2"
  605   }'
  606 else
  607   # ...otherwise fall back to using expr, which is often a shell builtin.
  608   func_append ()
  609   {
  610     $debug_cmd
  611 
  612     eval "$1=\$$1\$2"
  613   }
  614 fi
  615 
  616 
  617 # func_append_quoted VAR VALUE
  618 # ----------------------------
  619 # Quote VALUE and append to the end of shell variable VAR, separated
  620 # by a space.
  621 if test yes = "$_G_HAVE_PLUSEQ_OP"; then
  622   eval 'func_append_quoted ()
  623   {
  624     $debug_cmd
  625 
  626     func_quote_arg pretty "$2"
  627     eval "$1+=\\ \$func_quote_arg_result"
  628   }'
  629 else
  630   func_append_quoted ()
  631   {
  632     $debug_cmd
  633 
  634     func_quote_arg pretty "$2"
  635     eval "$1=\$$1\\ \$func_quote_arg_result"
  636   }
  637 fi
  638 
  639 
  640 # func_append_uniq VAR VALUE
  641 # --------------------------
  642 # Append unique VALUE onto the existing contents of VAR, assuming
  643 # entries are delimited by the first character of VALUE.  For example:
  644 #
  645 #   func_append_uniq options " --another-option option-argument"
  646 #
  647 # will only append to $options if " --another-option option-argument "
  648 # is not already present somewhere in $options already (note spaces at
  649 # each end implied by leading space in second argument).
  650 func_append_uniq ()
  651 {
  652     $debug_cmd
  653 
  654     eval _G_current_value='`$ECHO $'$1'`'
  655     _G_delim=`expr "$2" : '\(.\)'`
  656 
  657     case $_G_delim$_G_current_value$_G_delim in
  658       *"$2$_G_delim"*) ;;
  659       *) func_append "$@" ;;
  660     esac
  661 }
  662 
  663 
  664 # func_arith TERM...
  665 # ------------------
  666 # Set func_arith_result to the result of evaluating TERMs.
  667   test -z "$_G_HAVE_ARITH_OP" \
  668     && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \
  669     && _G_HAVE_ARITH_OP=yes
  670 
  671 if test yes = "$_G_HAVE_ARITH_OP"; then
  672   eval 'func_arith ()
  673   {
  674     $debug_cmd
  675 
  676     func_arith_result=$(( $* ))
  677   }'
  678 else
  679   func_arith ()
  680   {
  681     $debug_cmd
  682 
  683     func_arith_result=`expr "$@"`
  684   }
  685 fi
  686 
  687 
  688 # func_basename FILE
  689 # ------------------
  690 # Set func_basename_result to FILE with everything up to and including
  691 # the last / stripped.
  692 if test yes = "$_G_HAVE_XSI_OPS"; then
  693   # If this shell supports suffix pattern removal, then use it to avoid
  694   # forking. Hide the definitions single quotes in case the shell chokes
  695   # on unsupported syntax...
  696   _b='func_basename_result=${1##*/}'
  697   _d='case $1 in
  698         */*) func_dirname_result=${1%/*}$2 ;;
  699         *  ) func_dirname_result=$3        ;;
  700       esac'
  701 
  702 else
  703   # ...otherwise fall back to using sed.
  704   _b='func_basename_result=`$ECHO "$1" |$SED "$sed_basename"`'
  705   _d='func_dirname_result=`$ECHO "$1"  |$SED "$sed_dirname"`
  706       if test "X$func_dirname_result" = "X$1"; then
  707         func_dirname_result=$3
  708       else
  709         func_append func_dirname_result "$2"
  710       fi'
  711 fi
  712 
  713 eval 'func_basename ()
  714 {
  715     $debug_cmd
  716 
  717     '"$_b"'
  718 }'
  719 
  720 
  721 # func_dirname FILE APPEND NONDIR_REPLACEMENT
  722 # -------------------------------------------
  723 # Compute the dirname of FILE.  If nonempty, add APPEND to the result,
  724 # otherwise set result to NONDIR_REPLACEMENT.
  725 eval 'func_dirname ()
  726 {
  727     $debug_cmd
  728 
  729     '"$_d"'
  730 }'
  731 
  732 
  733 # func_dirname_and_basename FILE APPEND NONDIR_REPLACEMENT
  734 # --------------------------------------------------------
  735 # Perform func_basename and func_dirname in a single function
  736 # call:
  737 #   dirname:  Compute the dirname of FILE.  If nonempty,
  738 #             add APPEND to the result, otherwise set result
  739 #             to NONDIR_REPLACEMENT.
  740 #             value returned in "$func_dirname_result"
  741 #   basename: Compute filename of FILE.
  742 #             value retuned in "$func_basename_result"
  743 # For efficiency, we do not delegate to the functions above but instead
  744 # duplicate the functionality here.
  745 eval 'func_dirname_and_basename ()
  746 {
  747     $debug_cmd
  748 
  749     '"$_b"'
  750     '"$_d"'
  751 }'
  752 
  753 
  754 # func_echo ARG...
  755 # ----------------
  756 # Echo program name prefixed message.
  757 func_echo ()
  758 {
  759     $debug_cmd
  760 
  761     _G_message=$*
  762 
  763     func_echo_IFS=$IFS
  764     IFS=$nl
  765     for _G_line in $_G_message; do
  766       IFS=$func_echo_IFS
  767       $ECHO "$progname: $_G_line"
  768     done
  769     IFS=$func_echo_IFS
  770 }
  771 
  772 
  773 # func_echo_all ARG...
  774 # --------------------
  775 # Invoke $ECHO with all args, space-separated.
  776 func_echo_all ()
  777 {
  778     $ECHO "$*"
  779 }
  780 
  781 
  782 # func_echo_infix_1 INFIX ARG...
  783 # ------------------------------
  784 # Echo program name, followed by INFIX on the first line, with any
  785 # additional lines not showing INFIX.
  786 func_echo_infix_1 ()
  787 {
  788     $debug_cmd
  789 
  790     $require_term_colors
  791 
  792     _G_infix=$1; shift
  793     _G_indent=$_G_infix
  794     _G_prefix="$progname: $_G_infix: "
  795     _G_message=$*
  796 
  797     # Strip color escape sequences before counting printable length
  798     for _G_tc in "$tc_reset" "$tc_bold" "$tc_standout" "$tc_red" "$tc_green" "$tc_blue" "$tc_cyan"
  799     do
  800       test -n "$_G_tc" && {
  801         _G_esc_tc=`$ECHO "$_G_tc" | $SED "$sed_make_literal_regex"`
  802         _G_indent=`$ECHO "$_G_indent" | $SED "s|$_G_esc_tc||g"`
  803       }
  804     done
  805     _G_indent="$progname: "`echo "$_G_indent" | $SED 's|.| |g'`"  " ## exclude from sc_prohibit_nested_quotes
  806 
  807     func_echo_infix_1_IFS=$IFS
  808     IFS=$nl
  809     for _G_line in $_G_message; do
  810       IFS=$func_echo_infix_1_IFS
  811       $ECHO "$_G_prefix$tc_bold$_G_line$tc_reset" >&2
  812       _G_prefix=$_G_indent
  813     done
  814     IFS=$func_echo_infix_1_IFS
  815 }
  816 
  817 
  818 # func_error ARG...
  819 # -----------------
  820 # Echo program name prefixed message to standard error.
  821 func_error ()
  822 {
  823     $debug_cmd
  824 
  825     $require_term_colors
  826 
  827     func_echo_infix_1 "  $tc_standout${tc_red}error$tc_reset" "$*" >&2
  828 }
  829 
  830 
  831 # func_fatal_error ARG...
  832 # -----------------------
  833 # Echo program name prefixed message to standard error, and exit.
  834 func_fatal_error ()
  835 {
  836     $debug_cmd
  837 
  838     func_error "$*"
  839     exit $EXIT_FAILURE
  840 }
  841 
  842 
  843 # func_grep EXPRESSION FILENAME
  844 # -----------------------------
  845 # Check whether EXPRESSION matches any line of FILENAME, without output.
  846 func_grep ()
  847 {
  848     $debug_cmd
  849 
  850     $GREP "$1" "$2" >/dev/null 2>&1
  851 }
  852 
  853 
  854 # func_len STRING
  855 # ---------------
  856 # Set func_len_result to the length of STRING. STRING may not
  857 # start with a hyphen.
  858   test -z "$_G_HAVE_XSI_OPS" \
  859     && (eval 'x=a/b/c;
  860       test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \
  861     && _G_HAVE_XSI_OPS=yes
  862 
  863 if test yes = "$_G_HAVE_XSI_OPS"; then
  864   eval 'func_len ()
  865   {
  866     $debug_cmd
  867 
  868     func_len_result=${#1}
  869   }'
  870 else
  871   func_len ()
  872   {
  873     $debug_cmd
  874 
  875     func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len`
  876   }
  877 fi
  878 
  879 
  880 # func_mkdir_p DIRECTORY-PATH
  881 # ---------------------------
  882 # Make sure the entire path to DIRECTORY-PATH is available.
  883 func_mkdir_p ()
  884 {
  885     $debug_cmd
  886 
  887     _G_directory_path=$1
  888     _G_dir_list=
  889 
  890     if test -n "$_G_directory_path" && test : != "$opt_dry_run"; then
  891 
  892       # Protect directory names starting with '-'
  893       case $_G_directory_path in
  894         -*) _G_directory_path=./$_G_directory_path ;;
  895       esac
  896 
  897       # While some portion of DIR does not yet exist...
  898       while test ! -d "$_G_directory_path"; do
  899         # ...make a list in topmost first order.  Use a colon delimited
  900     # list incase some portion of path contains whitespace.
  901         _G_dir_list=$_G_directory_path:$_G_dir_list
  902 
  903         # If the last portion added has no slash in it, the list is done
  904         case $_G_directory_path in */*) ;; *) break ;; esac
  905 
  906         # ...otherwise throw away the child directory and loop
  907         _G_directory_path=`$ECHO "$_G_directory_path" | $SED -e "$sed_dirname"`
  908       done
  909       _G_dir_list=`$ECHO "$_G_dir_list" | $SED 's|:*$||'`
  910 
  911       func_mkdir_p_IFS=$IFS; IFS=:
  912       for _G_dir in $_G_dir_list; do
  913     IFS=$func_mkdir_p_IFS
  914         # mkdir can fail with a 'File exist' error if two processes
  915         # try to create one of the directories concurrently.  Don't
  916         # stop in that case!
  917         $MKDIR "$_G_dir" 2>/dev/null || :
  918       done
  919       IFS=$func_mkdir_p_IFS
  920 
  921       # Bail out if we (or some other process) failed to create a directory.
  922       test -d "$_G_directory_path" || \
  923         func_fatal_error "Failed to create '$1'"
  924     fi
  925 }
  926 
  927 
  928 # func_mktempdir [BASENAME]
  929 # -------------------------
  930 # Make a temporary directory that won't clash with other running
  931 # libtool processes, and avoids race conditions if possible.  If
  932 # given, BASENAME is the basename for that directory.
  933 func_mktempdir ()
  934 {
  935     $debug_cmd
  936 
  937     _G_template=${TMPDIR-/tmp}/${1-$progname}
  938 
  939     if test : = "$opt_dry_run"; then
  940       # Return a directory name, but don't create it in dry-run mode
  941       _G_tmpdir=$_G_template-$$
  942     else
  943 
  944       # If mktemp works, use that first and foremost
  945       _G_tmpdir=`mktemp -d "$_G_template-XXXXXXXX" 2>/dev/null`
  946 
  947       if test ! -d "$_G_tmpdir"; then
  948         # Failing that, at least try and use $RANDOM to avoid a race
  949         _G_tmpdir=$_G_template-${RANDOM-0}$$
  950 
  951         func_mktempdir_umask=`umask`
  952         umask 0077
  953         $MKDIR "$_G_tmpdir"
  954         umask $func_mktempdir_umask
  955       fi
  956 
  957       # If we're not in dry-run mode, bomb out on failure
  958       test -d "$_G_tmpdir" || \
  959         func_fatal_error "cannot create temporary directory '$_G_tmpdir'"
  960     fi
  961 
  962     $ECHO "$_G_tmpdir"
  963 }
  964 
  965 
  966 # func_normal_abspath PATH
  967 # ------------------------
  968 # Remove doubled-up and trailing slashes, "." path components,
  969 # and cancel out any ".." path components in PATH after making
  970 # it an absolute path.
  971 func_normal_abspath ()
  972 {
  973     $debug_cmd
  974 
  975     # These SED scripts presuppose an absolute path with a trailing slash.
  976     _G_pathcar='s|^/\([^/]*\).*$|\1|'
  977     _G_pathcdr='s|^/[^/]*||'
  978     _G_removedotparts=':dotsl
  979         s|/\./|/|g
  980         t dotsl
  981         s|/\.$|/|'
  982     _G_collapseslashes='s|/\{1,\}|/|g'
  983     _G_finalslash='s|/*$|/|'
  984 
  985     # Start from root dir and reassemble the path.
  986     func_normal_abspath_result=
  987     func_normal_abspath_tpath=$1
  988     func_normal_abspath_altnamespace=
  989     case $func_normal_abspath_tpath in
  990       "")
  991         # Empty path, that just means $cwd.
  992         func_stripname '' '/' "`pwd`"
  993         func_normal_abspath_result=$func_stripname_result
  994         return
  995         ;;
  996       # The next three entries are used to spot a run of precisely
  997       # two leading slashes without using negated character classes;
  998       # we take advantage of case's first-match behaviour.
  999       ///*)
 1000         # Unusual form of absolute path, do nothing.
 1001         ;;
 1002       //*)
 1003         # Not necessarily an ordinary path; POSIX reserves leading '//'
 1004         # and for example Cygwin uses it to access remote file shares
 1005         # over CIFS/SMB, so we conserve a leading double slash if found.
 1006         func_normal_abspath_altnamespace=/
 1007         ;;
 1008       /*)
 1009         # Absolute path, do nothing.
 1010         ;;
 1011       *)
 1012         # Relative path, prepend $cwd.
 1013         func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath
 1014         ;;
 1015     esac
 1016 
 1017     # Cancel out all the simple stuff to save iterations.  We also want
 1018     # the path to end with a slash for ease of parsing, so make sure
 1019     # there is one (and only one) here.
 1020     func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \
 1021           -e "$_G_removedotparts" -e "$_G_collapseslashes" -e "$_G_finalslash"`
 1022     while :; do
 1023       # Processed it all yet?
 1024       if test / = "$func_normal_abspath_tpath"; then
 1025         # If we ascended to the root using ".." the result may be empty now.
 1026         if test -z "$func_normal_abspath_result"; then
 1027           func_normal_abspath_result=/
 1028         fi
 1029         break
 1030       fi
 1031       func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \
 1032           -e "$_G_pathcar"`
 1033       func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \
 1034           -e "$_G_pathcdr"`
 1035       # Figure out what to do with it
 1036       case $func_normal_abspath_tcomponent in
 1037         "")
 1038           # Trailing empty path component, ignore it.
 1039           ;;
 1040         ..)
 1041           # Parent dir; strip last assembled component from result.
 1042           func_dirname "$func_normal_abspath_result"
 1043           func_normal_abspath_result=$func_dirname_result
 1044           ;;
 1045         *)
 1046           # Actual path component, append it.
 1047           func_append func_normal_abspath_result "/$func_normal_abspath_tcomponent"
 1048           ;;
 1049       esac
 1050     done
 1051     # Restore leading double-slash if one was found on entry.
 1052     func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result
 1053 }
 1054 
 1055 
 1056 # func_notquiet ARG...
 1057 # --------------------
 1058 # Echo program name prefixed message only when not in quiet mode.
 1059 func_notquiet ()
 1060 {
 1061     $debug_cmd
 1062 
 1063     $opt_quiet || func_echo ${1+"$@"}
 1064 
 1065     # A bug in bash halts the script if the last line of a function
 1066     # fails when set -e is in force, so we need another command to
 1067     # work around that:
 1068     :
 1069 }
 1070 
 1071 
 1072 # func_relative_path SRCDIR DSTDIR
 1073 # --------------------------------
 1074 # Set func_relative_path_result to the relative path from SRCDIR to DSTDIR.
 1075 func_relative_path ()
 1076 {
 1077     $debug_cmd
 1078 
 1079     func_relative_path_result=
 1080     func_normal_abspath "$1"
 1081     func_relative_path_tlibdir=$func_normal_abspath_result
 1082     func_normal_abspath "$2"
 1083     func_relative_path_tbindir=$func_normal_abspath_result
 1084 
 1085     # Ascend the tree starting from libdir
 1086     while :; do
 1087       # check if we have found a prefix of bindir
 1088       case $func_relative_path_tbindir in
 1089         $func_relative_path_tlibdir)
 1090           # found an exact match
 1091           func_relative_path_tcancelled=
 1092           break
 1093           ;;
 1094         $func_relative_path_tlibdir*)
 1095           # found a matching prefix
 1096           func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir"
 1097           func_relative_path_tcancelled=$func_stripname_result
 1098           if test -z "$func_relative_path_result"; then
 1099             func_relative_path_result=.
 1100           fi
 1101           break
 1102           ;;
 1103         *)
 1104           func_dirname $func_relative_path_tlibdir
 1105           func_relative_path_tlibdir=$func_dirname_result
 1106           if test -z "$func_relative_path_tlibdir"; then
 1107             # Have to descend all the way to the root!
 1108             func_relative_path_result=../$func_relative_path_result
 1109             func_relative_path_tcancelled=$func_relative_path_tbindir
 1110             break
 1111           fi
 1112           func_relative_path_result=../$func_relative_path_result
 1113           ;;
 1114       esac
 1115     done
 1116 
 1117     # Now calculate path; take care to avoid doubling-up slashes.
 1118     func_stripname '' '/' "$func_relative_path_result"
 1119     func_relative_path_result=$func_stripname_result
 1120     func_stripname '/' '/' "$func_relative_path_tcancelled"
 1121     if test -n "$func_stripname_result"; then
 1122       func_append func_relative_path_result "/$func_stripname_result"
 1123     fi
 1124 
 1125     # Normalisation. If bindir is libdir, return '.' else relative path.
 1126     if test -n "$func_relative_path_result"; then
 1127       func_stripname './' '' "$func_relative_path_result"
 1128       func_relative_path_result=$func_stripname_result
 1129     fi
 1130 
 1131     test -n "$func_relative_path_result" || func_relative_path_result=.
 1132 
 1133     :
 1134 }
 1135 
 1136 
 1137 # func_quote_portable EVAL ARG
 1138 # ----------------------------
 1139 # Internal function to portably implement func_quote_arg.  Note that we still
 1140 # keep attention to performance here so we as much as possible try to avoid
 1141 # calling sed binary (so far O(N) complexity as long as func_append is O(1)).
 1142 func_quote_portable ()
 1143 {
 1144     $debug_cmd
 1145 
 1146     $require_check_ifs_backslash
 1147 
 1148     func_quote_portable_result=$2
 1149 
 1150     # one-time-loop (easy break)
 1151     while true
 1152     do
 1153       if $1; then
 1154         func_quote_portable_result=`$ECHO "$2" | $SED \
 1155           -e "$sed_double_quote_subst" -e "$sed_double_backslash"`
 1156         break
 1157       fi
 1158 
 1159       # Quote for eval.
 1160       case $func_quote_portable_result in
 1161         *[\\\`\"\$]*)
 1162           # Fallback to sed for $func_check_bs_ifs_broken=:, or when the string
 1163           # contains the shell wildcard characters.
 1164           case $check_ifs_backshlash_broken$func_quote_portable_result in
 1165             :*|*[\[\*\?]*)
 1166               func_quote_portable_result=`$ECHO "$func_quote_portable_result" \
 1167                   | $SED "$sed_quote_subst"`
 1168               break
 1169               ;;
 1170           esac
 1171 
 1172           func_quote_portable_old_IFS=$IFS
 1173           for _G_char in '\' '`' '"' '$'
 1174           do
 1175             # STATE($1) PREV($2) SEPARATOR($3)
 1176             set start "" ""
 1177             func_quote_portable_result=dummy"$_G_char$func_quote_portable_result$_G_char"dummy
 1178             IFS=$_G_char
 1179             for _G_part in $func_quote_portable_result
 1180             do
 1181               case $1 in
 1182               quote)
 1183                 func_append func_quote_portable_result "$3$2"
 1184                 set quote "$_G_part" "\\$_G_char"
 1185                 ;;
 1186               start)
 1187                 set first "" ""
 1188                 func_quote_portable_result=
 1189                 ;;
 1190               first)
 1191                 set quote "$_G_part" ""
 1192                 ;;
 1193               esac
 1194             done
 1195           done
 1196           IFS=$func_quote_portable_old_IFS
 1197           ;;
 1198         *) ;;
 1199       esac
 1200       break
 1201     done
 1202 
 1203     func_quote_portable_unquoted_result=$func_quote_portable_result
 1204     case $func_quote_portable_result in
 1205       # double-quote args containing shell metacharacters to delay
 1206       # word splitting, command substitution and variable expansion
 1207       # for a subsequent eval.
 1208       # many bourne shells cannot handle close brackets correctly
 1209       # in scan sets, so we specify it separately.
 1210       *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
 1211         func_quote_portable_result=\"$func_quote_portable_result\"
 1212         ;;
 1213     esac
 1214 }
 1215 
 1216 
 1217 # func_quotefast_eval ARG
 1218 # -----------------------
 1219 # Quote one ARG (internal).  This is equivalent to 'func_quote_arg eval ARG',
 1220 # but optimized for speed.  Result is stored in $func_quotefast_eval.
 1221 if test xyes = `(x=; printf -v x %q yes; echo x"$x") 2>/dev/null`; then
 1222   printf -v _GL_test_printf_tilde %q '~'
 1223   if test '\~' = "$_GL_test_printf_tilde"; then
 1224     func_quotefast_eval ()
 1225     {
 1226       printf -v func_quotefast_eval_result %q "$1"
 1227     }
 1228   else
 1229     # Broken older Bash implementations.  Make those faster too if possible.
 1230     func_quotefast_eval ()
 1231     {
 1232       case $1 in
 1233         '~'*)
 1234           func_quote_portable false "$1"
 1235           func_quotefast_eval_result=$func_quote_portable_result
 1236           ;;
 1237         *)
 1238           printf -v func_quotefast_eval_result %q "$1"
 1239           ;;
 1240       esac
 1241     }
 1242   fi
 1243 else
 1244   func_quotefast_eval ()
 1245   {
 1246     func_quote_portable false "$1"
 1247     func_quotefast_eval_result=$func_quote_portable_result
 1248   }
 1249 fi
 1250 
 1251 
 1252 # func_quote_arg MODEs ARG
 1253 # ------------------------
 1254 # Quote one ARG to be evaled later.  MODEs argument may contain zero or more
 1255 # specifiers listed below separated by ',' character.  This function returns two
 1256 # values:
 1257 #   i) func_quote_arg_result
 1258 #      double-quoted (when needed), suitable for a subsequent eval
 1259 #  ii) func_quote_arg_unquoted_result
 1260 #      has all characters that are still active within double
 1261 #      quotes backslashified.  Available only if 'unquoted' is specified.
 1262 #
 1263 # Available modes:
 1264 # ----------------
 1265 # 'eval' (default)
 1266 #       - escape shell special characters
 1267 # 'expand'
 1268 #       - the same as 'eval';  but do not quote variable references
 1269 # 'pretty'
 1270 #       - request aesthetic output, i.e. '"a b"' instead of 'a\ b'.  This might
 1271 #         be used later in func_quote to get output like: 'echo "a b"' instead
 1272 #         of 'echo a\ b'.  This is slower than default on some shells.
 1273 # 'unquoted'
 1274 #       - produce also $func_quote_arg_unquoted_result which does not contain
 1275 #         wrapping double-quotes.
 1276 #
 1277 # Examples for 'func_quote_arg pretty,unquoted string':
 1278 #
 1279 #   string      | *_result              | *_unquoted_result
 1280 #   ------------+-----------------------+-------------------
 1281 #   "           | \"                    | \"
 1282 #   a b         | "a b"                 | a b
 1283 #   "a b"       | "\"a b\""             | \"a b\"
 1284 #   *           | "*"                   | *
 1285 #   z="${x-$y}" | "z=\"\${x-\$y}\""     | z=\"\${x-\$y}\"
 1286 #
 1287 # Examples for 'func_quote_arg pretty,unquoted,expand string':
 1288 #
 1289 #   string        |   *_result          |  *_unquoted_result
 1290 #   --------------+---------------------+--------------------
 1291 #   z="${x-$y}"   | "z=\"${x-$y}\""     | z=\"${x-$y}\"
 1292 func_quote_arg ()
 1293 {
 1294     _G_quote_expand=false
 1295     case ,$1, in
 1296       *,expand,*)
 1297         _G_quote_expand=:
 1298         ;;
 1299     esac
 1300 
 1301     case ,$1, in
 1302       *,pretty,*|*,expand,*|*,unquoted,*)
 1303         func_quote_portable $_G_quote_expand "$2"
 1304         func_quote_arg_result=$func_quote_portable_result
 1305         func_quote_arg_unquoted_result=$func_quote_portable_unquoted_result
 1306         ;;
 1307       *)
 1308         # Faster quote-for-eval for some shells.
 1309         func_quotefast_eval "$2"
 1310         func_quote_arg_result=$func_quotefast_eval_result
 1311         ;;
 1312     esac
 1313 }
 1314 
 1315 
 1316 # func_quote MODEs ARGs...
 1317 # ------------------------
 1318 # Quote all ARGs to be evaled later and join them into single command.  See
 1319 # func_quote_arg's description for more info.
 1320 func_quote ()
 1321 {
 1322     $debug_cmd
 1323     _G_func_quote_mode=$1 ; shift
 1324     func_quote_result=
 1325     while test 0 -lt $#; do
 1326       func_quote_arg "$_G_func_quote_mode" "$1"
 1327       if test -n "$func_quote_result"; then
 1328         func_append func_quote_result " $func_quote_arg_result"
 1329       else
 1330         func_append func_quote_result "$func_quote_arg_result"
 1331       fi
 1332       shift
 1333     done
 1334 }
 1335 
 1336 
 1337 # func_stripname PREFIX SUFFIX NAME
 1338 # ---------------------------------
 1339 # strip PREFIX and SUFFIX from NAME, and store in func_stripname_result.
 1340 # PREFIX and SUFFIX must not contain globbing or regex special
 1341 # characters, hashes, percent signs, but SUFFIX may contain a leading
 1342 # dot (in which case that matches only a dot).
 1343 if test yes = "$_G_HAVE_XSI_OPS"; then
 1344   eval 'func_stripname ()
 1345   {
 1346     $debug_cmd
 1347 
 1348     # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are
 1349     # positional parameters, so assign one to ordinary variable first.
 1350     func_stripname_result=$3
 1351     func_stripname_result=${func_stripname_result#"$1"}
 1352     func_stripname_result=${func_stripname_result%"$2"}
 1353   }'
 1354 else
 1355   func_stripname ()
 1356   {
 1357     $debug_cmd
 1358 
 1359     case $2 in
 1360       .*) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%\\\\$2\$%%"`;;
 1361       *)  func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%$2\$%%"`;;
 1362     esac
 1363   }
 1364 fi
 1365 
 1366 
 1367 # func_show_eval CMD [FAIL_EXP]
 1368 # -----------------------------
 1369 # Unless opt_quiet is true, then output CMD.  Then, if opt_dryrun is
 1370 # not true, evaluate CMD.  If the evaluation of CMD fails, and FAIL_EXP
 1371 # is given, then evaluate it.
 1372 func_show_eval ()
 1373 {
 1374     $debug_cmd
 1375 
 1376     _G_cmd=$1
 1377     _G_fail_exp=${2-':'}
 1378 
 1379     func_quote_arg pretty,expand "$_G_cmd"
 1380     eval "func_notquiet $func_quote_arg_result"
 1381 
 1382     $opt_dry_run || {
 1383       eval "$_G_cmd"
 1384       _G_status=$?
 1385       if test 0 -ne "$_G_status"; then
 1386     eval "(exit $_G_status); $_G_fail_exp"
 1387       fi
 1388     }
 1389 }
 1390 
 1391 
 1392 # func_show_eval_locale CMD [FAIL_EXP]
 1393 # ------------------------------------
 1394 # Unless opt_quiet is true, then output CMD.  Then, if opt_dryrun is
 1395 # not true, evaluate CMD.  If the evaluation of CMD fails, and FAIL_EXP
 1396 # is given, then evaluate it.  Use the saved locale for evaluation.
 1397 func_show_eval_locale ()
 1398 {
 1399     $debug_cmd
 1400 
 1401     _G_cmd=$1
 1402     _G_fail_exp=${2-':'}
 1403 
 1404     $opt_quiet || {
 1405       func_quote_arg expand,pretty "$_G_cmd"
 1406       eval "func_echo $func_quote_arg_result"
 1407     }
 1408 
 1409     $opt_dry_run || {
 1410       eval "$_G_user_locale
 1411         $_G_cmd"
 1412       _G_status=$?
 1413       eval "$_G_safe_locale"
 1414       if test 0 -ne "$_G_status"; then
 1415     eval "(exit $_G_status); $_G_fail_exp"
 1416       fi
 1417     }
 1418 }
 1419 
 1420 
 1421 # func_tr_sh
 1422 # ----------
 1423 # Turn $1 into a string suitable for a shell variable name.
 1424 # Result is stored in $func_tr_sh_result.  All characters
 1425 # not in the set a-zA-Z0-9_ are replaced with '_'. Further,
 1426 # if $1 begins with a digit, a '_' is prepended as well.
 1427 func_tr_sh ()
 1428 {
 1429     $debug_cmd
 1430 
 1431     case $1 in
 1432     [0-9]* | *[!a-zA-Z0-9_]*)
 1433       func_tr_sh_result=`$ECHO "$1" | $SED -e 's/^\([0-9]\)/_\1/' -e 's/[^a-zA-Z0-9_]/_/g'`
 1434       ;;
 1435     * )
 1436       func_tr_sh_result=$1
 1437       ;;
 1438     esac
 1439 }
 1440 
 1441 
 1442 # func_verbose ARG...
 1443 # -------------------
 1444 # Echo program name prefixed message in verbose mode only.
 1445 func_verbose ()
 1446 {
 1447     $debug_cmd
 1448 
 1449     $opt_verbose && func_echo "$*"
 1450 
 1451     :
 1452 }
 1453 
 1454 
 1455 # func_warn_and_continue ARG...
 1456 # -----------------------------
 1457 # Echo program name prefixed warning message to standard error.
 1458 func_warn_and_continue ()
 1459 {
 1460     $debug_cmd
 1461 
 1462     $require_term_colors
 1463 
 1464     func_echo_infix_1 "${tc_red}warning$tc_reset" "$*" >&2
 1465 }
 1466 
 1467 
 1468 # func_warning CATEGORY ARG...
 1469 # ----------------------------
 1470 # Echo program name prefixed warning message to standard error. Warning
 1471 # messages can be filtered according to CATEGORY, where this function
 1472 # elides messages where CATEGORY is not listed in the global variable
 1473 # 'opt_warning_types'.
 1474 func_warning ()
 1475 {
 1476     $debug_cmd
 1477 
 1478     # CATEGORY must be in the warning_categories list!
 1479     case " $warning_categories " in
 1480       *" $1 "*) ;;
 1481       *) func_internal_error "invalid warning category '$1'" ;;
 1482     esac
 1483 
 1484     _G_category=$1
 1485     shift
 1486 
 1487     case " $opt_warning_types " in
 1488       *" $_G_category "*) $warning_func ${1+"$@"} ;;
 1489     esac
 1490 }
 1491 
 1492 
 1493 # func_sort_ver VER1 VER2
 1494 # -----------------------
 1495 # 'sort -V' is not generally available.
 1496 # Note this deviates from the version comparison in automake
 1497 # in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a
 1498 # but this should suffice as we won't be specifying old
 1499 # version formats or redundant trailing .0 in bootstrap.conf.
 1500 # If we did want full compatibility then we should probably
 1501 # use m4_version_compare from autoconf.
 1502 func_sort_ver ()
 1503 {
 1504     $debug_cmd
 1505 
 1506     printf '%s\n%s\n' "$1" "$2" \
 1507       | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n
 1508 }
 1509 
 1510 # func_lt_ver PREV CURR
 1511 # ---------------------
 1512 # Return true if PREV and CURR are in the correct order according to
 1513 # func_sort_ver, otherwise false.  Use it like this:
 1514 #
 1515 #  func_lt_ver "$prev_ver" "$proposed_ver" || func_fatal_error "..."
 1516 func_lt_ver ()
 1517 {
 1518     $debug_cmd
 1519 
 1520     test "x$1" = x`func_sort_ver "$1" "$2" | $SED 1q`
 1521 }
 1522 
 1523 
 1524 # Local variables:
 1525 # mode: shell-script
 1526 # sh-indentation: 2
 1527 # eval: (add-hook 'before-save-hook 'time-stamp)
 1528 # time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC"
 1529 # time-stamp-time-zone: "UTC"
 1530 # End:
 1531 #! /bin/sh
 1532 
 1533 # A portable, pluggable option parser for Bourne shell.
 1534 # Written by Gary V. Vaughan, 2010
 1535 
 1536 # This is free software.  There is NO warranty; not even for
 1537 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 1538 #
 1539 # Copyright (C) 2010-2019, 2021 Bootstrap Authors
 1540 #
 1541 # This file is dual licensed under the terms of the MIT license
 1542 # <https://opensource.org/license/MIT>, and GPL version 2 or later
 1543 # <http://www.gnu.org/licenses/gpl-2.0.html>.  You must apply one of
 1544 # these licenses when using or redistributing this software or any of
 1545 # the files within it.  See the URLs above, or the file `LICENSE`
 1546 # included in the Bootstrap distribution for the full license texts.
 1547 
 1548 # Please report bugs or propose patches to:
 1549 # <https://github.com/gnulib-modules/bootstrap/issues>
 1550 
 1551 # Set a version string for this script.
 1552 scriptversion=2019-02-19.15; # UTC
 1553 
 1554 
 1555 ## ------ ##
 1556 ## Usage. ##
 1557 ## ------ ##
 1558 
 1559 # This file is a library for parsing options in your shell scripts along
 1560 # with assorted other useful supporting features that you can make use
 1561 # of too.
 1562 #
 1563 # For the simplest scripts you might need only:
 1564 #
 1565 #   #!/bin/sh
 1566 #   . relative/path/to/funclib.sh
 1567 #   . relative/path/to/options-parser
 1568 #   scriptversion=1.0
 1569 #   func_options ${1+"$@"}
 1570 #   eval set dummy "$func_options_result"; shift
 1571 #   ...rest of your script...
 1572 #
 1573 # In order for the '--version' option to work, you will need to have a
 1574 # suitably formatted comment like the one at the top of this file
 1575 # starting with '# Written by ' and ending with '# Copyright'.
 1576 #
 1577 # For '-h' and '--help' to work, you will also need a one line
 1578 # description of your script's purpose in a comment directly above the
 1579 # '# Written by ' line, like the one at the top of this file.
 1580 #
 1581 # The default options also support '--debug', which will turn on shell
 1582 # execution tracing (see the comment above debug_cmd below for another
 1583 # use), and '--verbose' and the func_verbose function to allow your script
 1584 # to display verbose messages only when your user has specified
 1585 # '--verbose'.
 1586 #
 1587 # After sourcing this file, you can plug in processing for additional
 1588 # options by amending the variables from the 'Configuration' section
 1589 # below, and following the instructions in the 'Option parsing'
 1590 # section further down.
 1591 
 1592 ## -------------- ##
 1593 ## Configuration. ##
 1594 ## -------------- ##
 1595 
 1596 # You should override these variables in your script after sourcing this
 1597 # file so that they reflect the customisations you have added to the
 1598 # option parser.
 1599 
 1600 # The usage line for option parsing errors and the start of '-h' and
 1601 # '--help' output messages. You can embed shell variables for delayed
 1602 # expansion at the time the message is displayed, but you will need to
 1603 # quote other shell meta-characters carefully to prevent them being
 1604 # expanded when the contents are evaled.
 1605 usage='$progpath [OPTION]...'
 1606 
 1607 # Short help message in response to '-h' and '--help'.  Add to this or
 1608 # override it after sourcing this library to reflect the full set of
 1609 # options your script accepts.
 1610 usage_message="\
 1611        --debug        enable verbose shell tracing
 1612    -W, --warnings=CATEGORY
 1613                       report the warnings falling in CATEGORY [all]
 1614    -v, --verbose      verbosely report processing
 1615        --version      print version information and exit
 1616    -h, --help         print short or long help message and exit
 1617 "
 1618 
 1619 # Additional text appended to 'usage_message' in response to '--help'.
 1620 long_help_message="
 1621 Warning categories include:
 1622        'all'          show all warnings
 1623        'none'         turn off all the warnings
 1624        'error'        warnings are treated as fatal errors"
 1625 
 1626 # Help message printed before fatal option parsing errors.
 1627 fatal_help="Try '\$progname --help' for more information."
 1628 
 1629 
 1630 
 1631 ## ------------------------- ##
 1632 ## Hook function management. ##
 1633 ## ------------------------- ##
 1634 
 1635 # This section contains functions for adding, removing, and running hooks
 1636 # in the main code.  A hook is just a list of function names that can be
 1637 # run in order later on.
 1638 
 1639 # func_hookable FUNC_NAME
 1640 # -----------------------
 1641 # Declare that FUNC_NAME will run hooks added with
 1642 # 'func_add_hook FUNC_NAME ...'.
 1643 func_hookable ()
 1644 {
 1645     $debug_cmd
 1646 
 1647     func_append hookable_fns " $1"
 1648 }
 1649 
 1650 
 1651 # func_add_hook FUNC_NAME HOOK_FUNC
 1652 # ---------------------------------
 1653 # Request that FUNC_NAME call HOOK_FUNC before it returns.  FUNC_NAME must
 1654 # first have been declared "hookable" by a call to 'func_hookable'.
 1655 func_add_hook ()
 1656 {
 1657     $debug_cmd
 1658 
 1659     case " $hookable_fns " in
 1660       *" $1 "*) ;;
 1661       *) func_fatal_error "'$1' does not accept hook functions." ;;
 1662     esac
 1663 
 1664     eval func_append ${1}_hooks '" $2"'
 1665 }
 1666 
 1667 
 1668 # func_remove_hook FUNC_NAME HOOK_FUNC
 1669 # ------------------------------------
 1670 # Remove HOOK_FUNC from the list of hook functions to be called by
 1671 # FUNC_NAME.
 1672 func_remove_hook ()
 1673 {
 1674     $debug_cmd
 1675 
 1676     eval ${1}_hooks='`$ECHO "\$'$1'_hooks" |$SED "s| '$2'||"`'
 1677 }
 1678 
 1679 
 1680 # func_propagate_result FUNC_NAME_A FUNC_NAME_B
 1681 # ---------------------------------------------
 1682 # If the *_result variable of FUNC_NAME_A _is set_, assign its value to
 1683 # *_result variable of FUNC_NAME_B.
 1684 func_propagate_result ()
 1685 {
 1686     $debug_cmd
 1687 
 1688     func_propagate_result_result=:
 1689     if eval "test \"\${${1}_result+set}\" = set"
 1690     then
 1691       eval "${2}_result=\$${1}_result"
 1692     else
 1693       func_propagate_result_result=false
 1694     fi
 1695 }
 1696 
 1697 
 1698 # func_run_hooks FUNC_NAME [ARG]...
 1699 # ---------------------------------
 1700 # Run all hook functions registered to FUNC_NAME.
 1701 # It's assumed that the list of hook functions contains nothing more
 1702 # than a whitespace-delimited list of legal shell function names, and
 1703 # no effort is wasted trying to catch shell meta-characters or preserve
 1704 # whitespace.
 1705 func_run_hooks ()
 1706 {
 1707     $debug_cmd
 1708 
 1709     case " $hookable_fns " in
 1710       *" $1 "*) ;;
 1711       *) func_fatal_error "'$1' does not support hook functions." ;;
 1712     esac
 1713 
 1714     eval _G_hook_fns=\$$1_hooks; shift
 1715 
 1716     for _G_hook in $_G_hook_fns; do
 1717       func_unset "${_G_hook}_result"
 1718       eval $_G_hook '${1+"$@"}'
 1719       func_propagate_result $_G_hook func_run_hooks
 1720       if $func_propagate_result_result; then
 1721         eval set dummy "$func_run_hooks_result"; shift
 1722       fi
 1723     done
 1724 }
 1725 
 1726 
 1727 
 1728 ## --------------- ##
 1729 ## Option parsing. ##
 1730 ## --------------- ##
 1731 
 1732 # In order to add your own option parsing hooks, you must accept the
 1733 # full positional parameter list from your hook function.  You may remove
 1734 # or edit any options that you action, and then pass back the remaining
 1735 # unprocessed options in '<hooked_function_name>_result', escaped
 1736 # suitably for 'eval'.
 1737 #
 1738 # The '<hooked_function_name>_result' variable is automatically unset
 1739 # before your hook gets called; for best performance, only set the
 1740 # *_result variable when necessary (i.e. don't call the 'func_quote'
 1741 # function unnecessarily because it can be an expensive operation on some
 1742 # machines).
 1743 #
 1744 # Like this:
 1745 #
 1746 #    my_options_prep ()
 1747 #    {
 1748 #        $debug_cmd
 1749 #
 1750 #        # Extend the existing usage message.
 1751 #        usage_message=$usage_message'
 1752 #      -s, --silent       don'\''t print informational messages
 1753 #    '
 1754 #        # No change in '$@' (ignored completely by this hook).  Leave
 1755 #        # my_options_prep_result variable intact.
 1756 #    }
 1757 #    func_add_hook func_options_prep my_options_prep
 1758 #
 1759 #
 1760 #    my_silent_option ()
 1761 #    {
 1762 #        $debug_cmd
 1763 #
 1764 #        args_changed=false
 1765 #
 1766 #        # Note that, for efficiency, we parse as many options as we can
 1767 #        # recognise in a loop before passing the remainder back to the
 1768 #        # caller on the first unrecognised argument we encounter.
 1769 #        while test $# -gt 0; do
 1770 #          opt=$1; shift
 1771 #          case $opt in
 1772 #            --silent|-s) opt_silent=:
 1773 #                         args_changed=:
 1774 #                         ;;
 1775 #            # Separate non-argument short options:
 1776 #            -s*)         func_split_short_opt "$_G_opt"
 1777 #                         set dummy "$func_split_short_opt_name" \
 1778 #                             "-$func_split_short_opt_arg" ${1+"$@"}
 1779 #                         shift
 1780 #                         args_changed=:
 1781 #                         ;;
 1782 #            *)           # Make sure the first unrecognised option "$_G_opt"
 1783 #                         # is added back to "$@" in case we need it later,
 1784 #                         # if $args_changed was set to 'true'.
 1785 #                         set dummy "$_G_opt" ${1+"$@"}; shift; break ;;
 1786 #          esac
 1787 #        done
 1788 #
 1789 #        # Only call 'func_quote' here if we processed at least one argument.
 1790 #        if $args_changed; then
 1791 #          func_quote eval ${1+"$@"}
 1792 #          my_silent_option_result=$func_quote_result
 1793 #        fi
 1794 #    }
 1795 #    func_add_hook func_parse_options my_silent_option
 1796 #
 1797 #
 1798 #    my_option_validation ()
 1799 #    {
 1800 #        $debug_cmd
 1801 #
 1802 #        $opt_silent && $opt_verbose && func_fatal_help "\
 1803 #    '--silent' and '--verbose' options are mutually exclusive."
 1804 #    }
 1805 #    func_add_hook func_validate_options my_option_validation
 1806 #
 1807 # You'll also need to manually amend $usage_message to reflect the extra
 1808 # options you parse.  It's preferable to append if you can, so that
 1809 # multiple option parsing hooks can be added safely.
 1810 
 1811 
 1812 # func_options_finish [ARG]...
 1813 # ----------------------------
 1814 # Finishing the option parse loop (call 'func_options' hooks ATM).
 1815 func_options_finish ()
 1816 {
 1817     $debug_cmd
 1818 
 1819     func_run_hooks func_options ${1+"$@"}
 1820     func_propagate_result func_run_hooks func_options_finish
 1821 }
 1822 
 1823 
 1824 # func_options [ARG]...
 1825 # ---------------------
 1826 # All the functions called inside func_options are hookable. See the
 1827 # individual implementations for details.
 1828 func_hookable func_options
 1829 func_options ()
 1830 {
 1831     $debug_cmd
 1832 
 1833     _G_options_quoted=false
 1834 
 1835     for my_func in options_prep parse_options validate_options options_finish
 1836     do
 1837       func_unset func_${my_func}_result
 1838       func_unset func_run_hooks_result
 1839       eval func_$my_func '${1+"$@"}'
 1840       func_propagate_result func_$my_func func_options
 1841       if $func_propagate_result_result; then
 1842         eval set dummy "$func_options_result"; shift
 1843         _G_options_quoted=:
 1844       fi
 1845     done
 1846 
 1847     $_G_options_quoted || {
 1848       # As we (func_options) are top-level options-parser function and
 1849       # nobody quoted "$@" for us yet, we need to do it explicitly for
 1850       # caller.
 1851       func_quote eval ${1+"$@"}
 1852       func_options_result=$func_quote_result
 1853     }
 1854 }
 1855 
 1856 
 1857 # func_options_prep [ARG]...
 1858 # --------------------------
 1859 # All initialisations required before starting the option parse loop.
 1860 # Note that when calling hook functions, we pass through the list of
 1861 # positional parameters.  If a hook function modifies that list, and
 1862 # needs to propagate that back to rest of this script, then the complete
 1863 # modified list must be put in 'func_run_hooks_result' before returning.
 1864 func_hookable func_options_prep
 1865 func_options_prep ()
 1866 {
 1867     $debug_cmd
 1868 
 1869     # Option defaults:
 1870     opt_verbose=false
 1871     opt_warning_types=
 1872 
 1873     func_run_hooks func_options_prep ${1+"$@"}
 1874     func_propagate_result func_run_hooks func_options_prep
 1875 }
 1876 
 1877 
 1878 # func_parse_options [ARG]...
 1879 # ---------------------------
 1880 # The main option parsing loop.
 1881 func_hookable func_parse_options
 1882 func_parse_options ()
 1883 {
 1884     $debug_cmd
 1885 
 1886     _G_parse_options_requote=false
 1887     # this just eases exit handling
 1888     while test $# -gt 0; do
 1889       # Defer to hook functions for initial option parsing, so they
 1890       # get priority in the event of reusing an option name.
 1891       func_run_hooks func_parse_options ${1+"$@"}
 1892       func_propagate_result func_run_hooks func_parse_options
 1893       if $func_propagate_result_result; then
 1894         eval set dummy "$func_parse_options_result"; shift
 1895         # Even though we may have changed "$@", we passed the "$@" array
 1896         # down into the hook and it quoted it for us (because we are in
 1897         # this if-branch).  No need to quote it again.
 1898         _G_parse_options_requote=false
 1899       fi
 1900 
 1901       # Break out of the loop if we already parsed every option.
 1902       test $# -gt 0 || break
 1903 
 1904       # We expect that one of the options parsed in this function matches
 1905       # and thus we remove _G_opt from "$@" and need to re-quote.
 1906       _G_match_parse_options=:
 1907       _G_opt=$1
 1908       shift
 1909       case $_G_opt in
 1910         --debug|-x)   debug_cmd='set -x'
 1911                       func_echo "enabling shell trace mode" >&2
 1912                       $debug_cmd
 1913                       ;;
 1914 
 1915         --no-warnings|--no-warning|--no-warn)
 1916                       set dummy --warnings none ${1+"$@"}
 1917                       shift
 1918               ;;
 1919 
 1920         --warnings|--warning|-W)
 1921                       if test $# = 0 && func_missing_arg $_G_opt; then
 1922                         _G_parse_options_requote=:
 1923                         break
 1924                       fi
 1925                       case " $warning_categories $1" in
 1926                         *" $1 "*)
 1927                           # trailing space prevents matching last $1 above
 1928                           func_append_uniq opt_warning_types " $1"
 1929                           ;;
 1930                         *all)
 1931                           opt_warning_types=$warning_categories
 1932                           ;;
 1933                         *none)
 1934                           opt_warning_types=none
 1935                           warning_func=:
 1936                           ;;
 1937                         *error)
 1938                           opt_warning_types=$warning_categories
 1939                           warning_func=func_fatal_error
 1940                           ;;
 1941                         *)
 1942                           func_fatal_error \
 1943                              "unsupported warning category: '$1'"
 1944                           ;;
 1945                       esac
 1946                       shift
 1947                       ;;
 1948 
 1949         --verbose|-v) opt_verbose=: ;;
 1950         --version)    func_version ;;
 1951         -\?|-h)       func_usage ;;
 1952         --help)       func_help ;;
 1953 
 1954     # Separate optargs to long options (plugins may need this):
 1955     --*=*)        func_split_equals "$_G_opt"
 1956                   set dummy "$func_split_equals_lhs" \
 1957                           "$func_split_equals_rhs" ${1+"$@"}
 1958                       shift
 1959                       ;;
 1960 
 1961        # Separate optargs to short options:
 1962         -W*)
 1963                       func_split_short_opt "$_G_opt"
 1964                       set dummy "$func_split_short_opt_name" \
 1965                           "$func_split_short_opt_arg" ${1+"$@"}
 1966                       shift
 1967                       ;;
 1968 
 1969         # Separate non-argument short options:
 1970         -\?*|-h*|-v*|-x*)
 1971                       func_split_short_opt "$_G_opt"
 1972                       set dummy "$func_split_short_opt_name" \
 1973                           "-$func_split_short_opt_arg" ${1+"$@"}
 1974                       shift
 1975                       ;;
 1976 
 1977         --)           _G_parse_options_requote=: ; break ;;
 1978         -*)           func_fatal_help "unrecognised option: '$_G_opt'" ;;
 1979         *)            set dummy "$_G_opt" ${1+"$@"}; shift
 1980                       _G_match_parse_options=false
 1981                       break
 1982                       ;;
 1983       esac
 1984 
 1985       if $_G_match_parse_options; then
 1986         _G_parse_options_requote=:
 1987       fi
 1988     done
 1989 
 1990     if $_G_parse_options_requote; then
 1991       # save modified positional parameters for caller
 1992       func_quote eval ${1+"$@"}
 1993       func_parse_options_result=$func_quote_result
 1994     fi
 1995 }
 1996 
 1997 
 1998 # func_validate_options [ARG]...
 1999 # ------------------------------
 2000 # Perform any sanity checks on option settings and/or unconsumed
 2001 # arguments.
 2002 func_hookable func_validate_options
 2003 func_validate_options ()
 2004 {
 2005     $debug_cmd
 2006 
 2007     # Display all warnings if -W was not given.
 2008     test -n "$opt_warning_types" || opt_warning_types=" $warning_categories"
 2009 
 2010     func_run_hooks func_validate_options ${1+"$@"}
 2011     func_propagate_result func_run_hooks func_validate_options
 2012 
 2013     # Bail if the options were screwed!
 2014     $exit_cmd $EXIT_FAILURE
 2015 }
 2016 
 2017 
 2018 
 2019 ## ----------------- ##
 2020 ## Helper functions. ##
 2021 ## ----------------- ##
 2022 
 2023 # This section contains the helper functions used by the rest of the
 2024 # hookable option parser framework in ascii-betical order.
 2025 
 2026 
 2027 # func_fatal_help ARG...
 2028 # ----------------------
 2029 # Echo program name prefixed message to standard error, followed by
 2030 # a help hint, and exit.
 2031 func_fatal_help ()
 2032 {
 2033     $debug_cmd
 2034 
 2035     eval \$ECHO \""Usage: $usage"\"
 2036     eval \$ECHO \""$fatal_help"\"
 2037     func_error ${1+"$@"}
 2038     exit $EXIT_FAILURE
 2039 }
 2040 
 2041 
 2042 # func_help
 2043 # ---------
 2044 # Echo long help message to standard output and exit.
 2045 func_help ()
 2046 {
 2047     $debug_cmd
 2048 
 2049     func_usage_message
 2050     $ECHO "$long_help_message"
 2051     exit 0
 2052 }
 2053 
 2054 
 2055 # func_missing_arg ARGNAME
 2056 # ------------------------
 2057 # Echo program name prefixed message to standard error and set global
 2058 # exit_cmd.
 2059 func_missing_arg ()
 2060 {
 2061     $debug_cmd
 2062 
 2063     func_error "Missing argument for '$1'."
 2064     exit_cmd=exit
 2065 }
 2066 
 2067 
 2068 # func_split_equals STRING
 2069 # ------------------------
 2070 # Set func_split_equals_lhs and func_split_equals_rhs shell variables
 2071 # after splitting STRING at the '=' sign.
 2072 test -z "$_G_HAVE_XSI_OPS" \
 2073     && (eval 'x=a/b/c;
 2074       test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \
 2075     && _G_HAVE_XSI_OPS=yes
 2076 
 2077 if test yes = "$_G_HAVE_XSI_OPS"
 2078 then
 2079   # This is an XSI compatible shell, allowing a faster implementation...
 2080   eval 'func_split_equals ()
 2081   {
 2082       $debug_cmd
 2083 
 2084       func_split_equals_lhs=${1%%=*}
 2085       func_split_equals_rhs=${1#*=}
 2086       if test "x$func_split_equals_lhs" = "x$1"; then
 2087         func_split_equals_rhs=
 2088       fi
 2089   }'
 2090 else
 2091   # ...otherwise fall back to using expr, which is often a shell builtin.
 2092   func_split_equals ()
 2093   {
 2094       $debug_cmd
 2095 
 2096       func_split_equals_lhs=`expr "x$1" : 'x\([^=]*\)'`
 2097       func_split_equals_rhs=
 2098       test "x$func_split_equals_lhs=" = "x$1" \
 2099         || func_split_equals_rhs=`expr "x$1" : 'x[^=]*=\(.*\)$'`
 2100   }
 2101 fi #func_split_equals
 2102 
 2103 
 2104 # func_split_short_opt SHORTOPT
 2105 # -----------------------------
 2106 # Set func_split_short_opt_name and func_split_short_opt_arg shell
 2107 # variables after splitting SHORTOPT after the 2nd character.
 2108 if test yes = "$_G_HAVE_XSI_OPS"
 2109 then
 2110   # This is an XSI compatible shell, allowing a faster implementation...
 2111   eval 'func_split_short_opt ()
 2112   {
 2113       $debug_cmd
 2114 
 2115       func_split_short_opt_arg=${1#??}
 2116       func_split_short_opt_name=${1%"$func_split_short_opt_arg"}
 2117   }'
 2118 else
 2119   # ...otherwise fall back to using expr, which is often a shell builtin.
 2120   func_split_short_opt ()
 2121   {
 2122       $debug_cmd
 2123 
 2124       func_split_short_opt_name=`expr "x$1" : 'x\(-.\)'`
 2125       func_split_short_opt_arg=`expr "x$1" : 'x-.\(.*\)$'`
 2126   }
 2127 fi #func_split_short_opt
 2128 
 2129 
 2130 # func_usage
 2131 # ----------
 2132 # Echo short help message to standard output and exit.
 2133 func_usage ()
 2134 {
 2135     $debug_cmd
 2136 
 2137     func_usage_message
 2138     $ECHO "Run '$progname --help |${PAGER-more}' for full usage"
 2139     exit 0
 2140 }
 2141 
 2142 
 2143 # func_usage_message
 2144 # ------------------
 2145 # Echo short help message to standard output.
 2146 func_usage_message ()
 2147 {
 2148     $debug_cmd
 2149 
 2150     eval \$ECHO \""Usage: $usage"\"
 2151     echo
 2152     $SED -n 's|^# ||
 2153         /^Written by/{
 2154           x;p;x
 2155         }
 2156     h
 2157     /^Written by/q' < "$progpath"
 2158     echo
 2159     eval \$ECHO \""$usage_message"\"
 2160 }
 2161 
 2162 
 2163 # func_version
 2164 # ------------
 2165 # Echo version message to standard output and exit.
 2166 # The version message is extracted from the calling file's header
 2167 # comments, with leading '# ' stripped:
 2168 #   1. First display the progname and version
 2169 #   2. Followed by the header comment line matching  /^# Written by /
 2170 #   3. Then a blank line followed by the first following line matching
 2171 #      /^# Copyright /
 2172 #   4. Immediately followed by any lines between the previous matches,
 2173 #      except lines preceding the intervening completely blank line.
 2174 # For example, see the header comments of this file.
 2175 func_version ()
 2176 {
 2177     $debug_cmd
 2178 
 2179     printf '%s\n' "$progname $scriptversion"
 2180     $SED -n '
 2181         /^# Written by /!b
 2182         s|^# ||; p; n
 2183 
 2184         :fwd2blnk
 2185         /./ {
 2186           n
 2187           b fwd2blnk
 2188         }
 2189         p; n
 2190 
 2191         :holdwrnt
 2192         s|^# ||
 2193         s|^# *$||
 2194         /^Copyright /!{
 2195           /./H
 2196           n
 2197           b holdwrnt
 2198         }
 2199 
 2200         s|\((C)\)[ 0-9,-]*[ ,-]\([1-9][0-9]* \)|\1 \2|
 2201         G
 2202         s|\(\n\)\n*|\1|g
 2203         p; q' < "$progpath"
 2204 
 2205     exit $?
 2206 }
 2207 
 2208 
 2209 # Local variables:
 2210 # mode: shell-script
 2211 # sh-indentation: 2
 2212 # eval: (add-hook 'before-save-hook 'time-stamp)
 2213 # time-stamp-pattern: "30/scriptversion=%:y-%02m-%02d.%02H; # UTC"
 2214 # time-stamp-time-zone: "UTC"
 2215 # End:
 2216 
 2217 # Set a version string.
 2218 scriptversion='(GNU libtool) 2.4.7'
 2219 
 2220 
 2221 # func_echo ARG...
 2222 # ----------------
 2223 # Libtool also displays the current mode in messages, so override
 2224 # funclib.sh func_echo with this custom definition.
 2225 func_echo ()
 2226 {
 2227     $debug_cmd
 2228 
 2229     _G_message=$*
 2230 
 2231     func_echo_IFS=$IFS
 2232     IFS=$nl
 2233     for _G_line in $_G_message; do
 2234       IFS=$func_echo_IFS
 2235       $ECHO "$progname${opt_mode+: $opt_mode}: $_G_line"
 2236     done
 2237     IFS=$func_echo_IFS
 2238 }
 2239 
 2240 
 2241 # func_warning ARG...
 2242 # -------------------
 2243 # Libtool warnings are not categorized, so override funclib.sh
 2244 # func_warning with this simpler definition.
 2245 func_warning ()
 2246 {
 2247     $debug_cmd
 2248 
 2249     $warning_func ${1+"$@"}
 2250 }
 2251 
 2252 
 2253 ## ---------------- ##
 2254 ## Options parsing. ##
 2255 ## ---------------- ##
 2256 
 2257 # Hook in the functions to make sure our own options are parsed during
 2258 # the option parsing loop.
 2259 
 2260 usage='$progpath [OPTION]... [MODE-ARG]...'
 2261 
 2262 # Short help message in response to '-h'.
 2263 usage_message="Options:
 2264        --config             show all configuration variables
 2265        --debug              enable verbose shell tracing
 2266    -n, --dry-run            display commands without modifying any files
 2267        --features           display basic configuration information and exit
 2268        --mode=MODE          use operation mode MODE
 2269        --no-warnings        equivalent to '-Wnone'
 2270        --preserve-dup-deps  don't remove duplicate dependency libraries
 2271        --quiet, --silent    don't print informational messages
 2272        --tag=TAG            use configuration variables from tag TAG
 2273    -v, --verbose            print more informational messages than default
 2274        --version            print version information
 2275    -W, --warnings=CATEGORY  report the warnings falling in CATEGORY [all]
 2276    -h, --help, --help-all   print short, long, or detailed help message
 2277 "
 2278 
 2279 # Additional text appended to 'usage_message' in response to '--help'.
 2280 func_help ()
 2281 {
 2282     $debug_cmd
 2283 
 2284     func_usage_message
 2285     $ECHO "$long_help_message
 2286 
 2287 MODE must be one of the following:
 2288 
 2289        clean           remove files from the build directory
 2290        compile         compile a source file into a libtool object
 2291        execute         automatically set library path, then run a program
 2292        finish          complete the installation of libtool libraries
 2293        install         install libraries or executables
 2294        link            create a library or an executable
 2295        uninstall       remove libraries from an installed directory
 2296 
 2297 MODE-ARGS vary depending on the MODE.  When passed as first option,
 2298 '--mode=MODE' may be abbreviated as 'MODE' or a unique abbreviation of that.
 2299 Try '$progname --help --mode=MODE' for a more detailed description of MODE.
 2300 
 2301 When reporting a bug, please describe a test case to reproduce it and
 2302 include the following information:
 2303 
 2304        host-triplet:   $host
 2305        shell:          $SHELL
 2306        compiler:       $LTCC
 2307        compiler flags: $LTCFLAGS
 2308        linker:         $LD (gnu? $with_gnu_ld)
 2309        version:        $progname (GNU libtool) 2.4.7
 2310        automake:       `($AUTOMAKE --version) 2>/dev/null |$SED 1q`
 2311        autoconf:       `($AUTOCONF --version) 2>/dev/null |$SED 1q`
 2312 
 2313 Report bugs to <bug-libtool@gnu.org>.
 2314 GNU libtool home page: <http://www.gnu.org/software/libtool/>.
 2315 General help using GNU software: <http://www.gnu.org/gethelp/>."
 2316     exit 0
 2317 }
 2318 
 2319 
 2320 # func_lo2o OBJECT-NAME
 2321 # ---------------------
 2322 # Transform OBJECT-NAME from a '.lo' suffix to the platform specific
 2323 # object suffix.
 2324 
 2325 lo2o=s/\\.lo\$/.$objext/
 2326 o2lo=s/\\.$objext\$/.lo/
 2327 
 2328 if test yes = "$_G_HAVE_XSI_OPS"; then
 2329   eval 'func_lo2o ()
 2330   {
 2331     case $1 in
 2332       *.lo) func_lo2o_result=${1%.lo}.$objext ;;
 2333       *   ) func_lo2o_result=$1               ;;
 2334     esac
 2335   }'
 2336 
 2337   # func_xform LIBOBJ-OR-SOURCE
 2338   # ---------------------------
 2339   # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise)
 2340   # suffix to a '.lo' libtool-object suffix.
 2341   eval 'func_xform ()
 2342   {
 2343     func_xform_result=${1%.*}.lo
 2344   }'
 2345 else
 2346   # ...otherwise fall back to using sed.
 2347   func_lo2o ()
 2348   {
 2349     func_lo2o_result=`$ECHO "$1" | $SED "$lo2o"`
 2350   }
 2351 
 2352   func_xform ()
 2353   {
 2354     func_xform_result=`$ECHO "$1" | $SED 's|\.[^.]*$|.lo|'`
 2355   }
 2356 fi
 2357 
 2358 
 2359 # func_fatal_configuration ARG...
 2360 # -------------------------------
 2361 # Echo program name prefixed message to standard error, followed by
 2362 # a configuration failure hint, and exit.
 2363 func_fatal_configuration ()
 2364 {
 2365     func_fatal_error ${1+"$@"} \
 2366       "See the $PACKAGE documentation for more information." \
 2367       "Fatal configuration error."
 2368 }
 2369 
 2370 
 2371 # func_config
 2372 # -----------
 2373 # Display the configuration for all the tags in this script.
 2374 func_config ()
 2375 {
 2376     re_begincf='^# ### BEGIN LIBTOOL'
 2377     re_endcf='^# ### END LIBTOOL'
 2378 
 2379     # Default configuration.
 2380     $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath"
 2381 
 2382     # Now print the configurations for the tags.
 2383     for tagname in $taglist; do
 2384       $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath"
 2385     done
 2386 
 2387     exit $?
 2388 }
 2389 
 2390 
 2391 # func_features
 2392 # -------------
 2393 # Display the features supported by this script.
 2394 func_features ()
 2395 {
 2396     echo "host: $host"
 2397     if test yes = "$build_libtool_libs"; then
 2398       echo "enable shared libraries"
 2399     else
 2400       echo "disable shared libraries"
 2401     fi
 2402     if test yes = "$build_old_libs"; then
 2403       echo "enable static libraries"
 2404     else
 2405       echo "disable static libraries"
 2406     fi
 2407 
 2408     exit $?
 2409 }
 2410 
 2411 
 2412 # func_enable_tag TAGNAME
 2413 # -----------------------
 2414 # Verify that TAGNAME is valid, and either flag an error and exit, or
 2415 # enable the TAGNAME tag.  We also add TAGNAME to the global $taglist
 2416 # variable here.
 2417 func_enable_tag ()
 2418 {
 2419     # Global variable:
 2420     tagname=$1
 2421 
 2422     re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$"
 2423     re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$"
 2424     sed_extractcf=/$re_begincf/,/$re_endcf/p
 2425 
 2426     # Validate tagname.
 2427     case $tagname in
 2428       *[!-_A-Za-z0-9,/]*)
 2429         func_fatal_error "invalid tag name: $tagname"
 2430         ;;
 2431     esac
 2432 
 2433     # Don't test for the "default" C tag, as we know it's
 2434     # there but not specially marked.
 2435     case $tagname in
 2436         CC) ;;
 2437     *)
 2438         if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then
 2439       taglist="$taglist $tagname"
 2440 
 2441       # Evaluate the configuration.  Be careful to quote the path
 2442       # and the sed script, to avoid splitting on whitespace, but
 2443       # also don't use non-portable quotes within backquotes within
 2444       # quotes we have to do it in 2 steps:
 2445       extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"`
 2446       eval "$extractedcf"
 2447         else
 2448       func_error "ignoring unknown tag $tagname"
 2449         fi
 2450         ;;
 2451     esac
 2452 }
 2453 
 2454 
 2455 # func_check_version_match
 2456 # ------------------------
 2457 # Ensure that we are using m4 macros, and libtool script from the same
 2458 # release of libtool.
 2459 func_check_version_match ()
 2460 {
 2461     if test "$package_revision" != "$macro_revision"; then
 2462       if test "$VERSION" != "$macro_version"; then
 2463         if test -z "$macro_version"; then
 2464           cat >&2 <<_LT_EOF
 2465 $progname: Version mismatch error.  This is $PACKAGE $VERSION, but the
 2466 $progname: definition of this LT_INIT comes from an older release.
 2467 $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION
 2468 $progname: and run autoconf again.
 2469 _LT_EOF
 2470         else
 2471           cat >&2 <<_LT_EOF
 2472 $progname: Version mismatch error.  This is $PACKAGE $VERSION, but the
 2473 $progname: definition of this LT_INIT comes from $PACKAGE $macro_version.
 2474 $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION
 2475 $progname: and run autoconf again.
 2476 _LT_EOF
 2477         fi
 2478       else
 2479         cat >&2 <<_LT_EOF
 2480 $progname: Version mismatch error.  This is $PACKAGE $VERSION, revision $package_revision,
 2481 $progname: but the definition of this LT_INIT comes from revision $macro_revision.
 2482 $progname: You should recreate aclocal.m4 with macros from revision $package_revision
 2483 $progname: of $PACKAGE $VERSION and run autoconf again.
 2484 _LT_EOF
 2485       fi
 2486 
 2487       exit $EXIT_MISMATCH
 2488     fi
 2489 }
 2490 
 2491 
 2492 # libtool_options_prep [ARG]...
 2493 # -----------------------------
 2494 # Preparation for options parsed by libtool.
 2495 libtool_options_prep ()
 2496 {
 2497     $debug_mode
 2498 
 2499     # Option defaults:
 2500     opt_config=false
 2501     opt_dlopen=
 2502     opt_dry_run=false
 2503     opt_help=false
 2504     opt_mode=
 2505     opt_preserve_dup_deps=false
 2506     opt_quiet=false
 2507 
 2508     nonopt=
 2509     preserve_args=
 2510 
 2511     _G_rc_lt_options_prep=:
 2512 
 2513     # Shorthand for --mode=foo, only valid as the first argument
 2514     case $1 in
 2515     clean|clea|cle|cl)
 2516       shift; set dummy --mode clean ${1+"$@"}; shift
 2517       ;;
 2518     compile|compil|compi|comp|com|co|c)
 2519       shift; set dummy --mode compile ${1+"$@"}; shift
 2520       ;;
 2521     execute|execut|execu|exec|exe|ex|e)
 2522       shift; set dummy --mode execute ${1+"$@"}; shift
 2523       ;;
 2524     finish|finis|fini|fin|fi|f)
 2525       shift; set dummy --mode finish ${1+"$@"}; shift
 2526       ;;
 2527     install|instal|insta|inst|ins|in|i)
 2528       shift; set dummy --mode install ${1+"$@"}; shift
 2529       ;;
 2530     link|lin|li|l)
 2531       shift; set dummy --mode link ${1+"$@"}; shift
 2532       ;;
 2533     uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u)
 2534       shift; set dummy --mode uninstall ${1+"$@"}; shift
 2535       ;;
 2536     *)
 2537       _G_rc_lt_options_prep=false
 2538       ;;
 2539     esac
 2540 
 2541     if $_G_rc_lt_options_prep; then
 2542       # Pass back the list of options.
 2543       func_quote eval ${1+"$@"}
 2544       libtool_options_prep_result=$func_quote_result
 2545     fi
 2546 }
 2547 func_add_hook func_options_prep libtool_options_prep
 2548 
 2549 
 2550 # libtool_parse_options [ARG]...
 2551 # ---------------------------------
 2552 # Provide handling for libtool specific options.
 2553 libtool_parse_options ()
 2554 {
 2555     $debug_cmd
 2556 
 2557     _G_rc_lt_parse_options=false
 2558 
 2559     # Perform our own loop to consume as many options as possible in
 2560     # each iteration.
 2561     while test $# -gt 0; do
 2562       _G_match_lt_parse_options=:
 2563       _G_opt=$1
 2564       shift
 2565       case $_G_opt in
 2566         --dry-run|--dryrun|-n)
 2567                         opt_dry_run=:
 2568                         ;;
 2569 
 2570         --config)       func_config ;;
 2571 
 2572         --dlopen|-dlopen)
 2573                         opt_dlopen="${opt_dlopen+$opt_dlopen
 2574 }$1"
 2575                         shift
 2576                         ;;
 2577 
 2578         --preserve-dup-deps)
 2579                         opt_preserve_dup_deps=: ;;
 2580 
 2581         --features)     func_features ;;
 2582 
 2583         --finish)       set dummy --mode finish ${1+"$@"}; shift ;;
 2584 
 2585         --help)         opt_help=: ;;
 2586 
 2587         --help-all)     opt_help=': help-all' ;;
 2588 
 2589         --mode)         test $# = 0 && func_missing_arg $_G_opt && break
 2590                         opt_mode=$1
 2591                         case $1 in
 2592                           # Valid mode arguments:
 2593                           clean|compile|execute|finish|install|link|relink|uninstall) ;;
 2594 
 2595                           # Catch anything else as an error
 2596                           *) func_error "invalid argument for $_G_opt"
 2597                              exit_cmd=exit
 2598                              break
 2599                              ;;
 2600                         esac
 2601                         shift
 2602                         ;;
 2603 
 2604         --no-silent|--no-quiet)
 2605                         opt_quiet=false
 2606                         func_append preserve_args " $_G_opt"
 2607                         ;;
 2608 
 2609         --no-warnings|--no-warning|--no-warn)
 2610                         opt_warning=false
 2611                         func_append preserve_args " $_G_opt"
 2612                         ;;
 2613 
 2614         --no-verbose)
 2615                         opt_verbose=false
 2616                         func_append preserve_args " $_G_opt"
 2617                         ;;
 2618 
 2619         --silent|--quiet)
 2620                         opt_quiet=:
 2621                         opt_verbose=false
 2622                         func_append preserve_args " $_G_opt"
 2623                         ;;
 2624 
 2625         --tag)          test $# = 0 && func_missing_arg $_G_opt && break
 2626                         opt_tag=$1
 2627                         func_append preserve_args " $_G_opt $1"
 2628                         func_enable_tag "$1"
 2629                         shift
 2630                         ;;
 2631 
 2632         --verbose|-v)   opt_quiet=false
 2633                         opt_verbose=:
 2634                         func_append preserve_args " $_G_opt"
 2635                         ;;
 2636 
 2637         # An option not handled by this hook function:
 2638         *)              set dummy "$_G_opt" ${1+"$@"} ; shift
 2639                         _G_match_lt_parse_options=false
 2640                         break
 2641                         ;;
 2642       esac
 2643       $_G_match_lt_parse_options && _G_rc_lt_parse_options=:
 2644     done
 2645 
 2646     if $_G_rc_lt_parse_options; then
 2647       # save modified positional parameters for caller
 2648       func_quote eval ${1+"$@"}
 2649       libtool_parse_options_result=$func_quote_result
 2650     fi
 2651 }
 2652 func_add_hook func_parse_options libtool_parse_options
 2653 
 2654 
 2655 
 2656 # libtool_validate_options [ARG]...
 2657 # ---------------------------------
 2658 # Perform any sanity checks on option settings and/or unconsumed
 2659 # arguments.
 2660 libtool_validate_options ()
 2661 {
 2662     # save first non-option argument
 2663     if test 0 -lt $#; then
 2664       nonopt=$1
 2665       shift
 2666     fi
 2667 
 2668     # preserve --debug
 2669     test : = "$debug_cmd" || func_append preserve_args " --debug"
 2670 
 2671     case $host in
 2672       # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452
 2673       # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788
 2674       *cygwin* | *mingw* | *pw32* | *cegcc* | *solaris2* | *os2*)
 2675         # don't eliminate duplications in $postdeps and $predeps
 2676         opt_duplicate_compiler_generated_deps=:
 2677         ;;
 2678       *)
 2679         opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps
 2680         ;;
 2681     esac
 2682 
 2683     $opt_help || {
 2684       # Sanity checks first:
 2685       func_check_version_match
 2686 
 2687       test yes != "$build_libtool_libs" \
 2688         && test yes != "$build_old_libs" \
 2689         && func_fatal_configuration "not configured to build any kind of library"
 2690 
 2691       # Darwin sucks
 2692       eval std_shrext=\"$shrext_cmds\"
 2693 
 2694       # Only execute mode is allowed to have -dlopen flags.
 2695       if test -n "$opt_dlopen" && test execute != "$opt_mode"; then
 2696         func_error "unrecognized option '-dlopen'"
 2697         $ECHO "$help" 1>&2
 2698         exit $EXIT_FAILURE
 2699       fi
 2700 
 2701       # Change the help message to a mode-specific one.
 2702       generic_help=$help
 2703       help="Try '$progname --help --mode=$opt_mode' for more information."
 2704     }
 2705 
 2706     # Pass back the unparsed argument list
 2707     func_quote eval ${1+"$@"}
 2708     libtool_validate_options_result=$func_quote_result
 2709 }
 2710 func_add_hook func_validate_options libtool_validate_options
 2711 
 2712 
 2713 # Process options as early as possible so that --help and --version
 2714 # can return quickly.
 2715 func_options ${1+"$@"}
 2716 eval set dummy "$func_options_result"; shift
 2717 
 2718 
 2719 
 2720 ## ----------- ##
 2721 ##    Main.    ##
 2722 ## ----------- ##
 2723 
 2724 magic='%%%MAGIC variable%%%'
 2725 magic_exe='%%%MAGIC EXE variable%%%'
 2726 
 2727 # Global variables.
 2728 extracted_archives=
 2729 extracted_serial=0
 2730 
 2731 # If this variable is set in any of the actions, the command in it
 2732 # will be execed at the end.  This prevents here-documents from being
 2733 # left over by shells.
 2734 exec_cmd=
 2735 
 2736 
 2737 # A function that is used when there is no print builtin or printf.
 2738 func_fallback_echo ()
 2739 {
 2740   eval 'cat <<_LTECHO_EOF
 2741 $1
 2742 _LTECHO_EOF'
 2743 }
 2744 
 2745 # func_generated_by_libtool
 2746 # True iff stdin has been generated by Libtool. This function is only
 2747 # a basic sanity check; it will hardly flush out determined imposters.
 2748 func_generated_by_libtool_p ()
 2749 {
 2750   $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1
 2751 }
 2752 
 2753 # func_lalib_p file
 2754 # True iff FILE is a libtool '.la' library or '.lo' object file.
 2755 # This function is only a basic sanity check; it will hardly flush out
 2756 # determined imposters.
 2757 func_lalib_p ()
 2758 {
 2759     test -f "$1" &&
 2760       $SED -e 4q "$1" 2>/dev/null | func_generated_by_libtool_p
 2761 }
 2762 
 2763 # func_lalib_unsafe_p file
 2764 # True iff FILE is a libtool '.la' library or '.lo' object file.
 2765 # This function implements the same check as func_lalib_p without
 2766 # resorting to external programs.  To this end, it redirects stdin and
 2767 # closes it afterwards, without saving the original file descriptor.
 2768 # As a safety measure, use it only where a negative result would be
 2769 # fatal anyway.  Works if 'file' does not exist.
 2770 func_lalib_unsafe_p ()
 2771 {
 2772     lalib_p=no
 2773     if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then
 2774     for lalib_p_l in 1 2 3 4
 2775     do
 2776         read lalib_p_line
 2777         case $lalib_p_line in
 2778         \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;;
 2779         esac
 2780     done
 2781     exec 0<&5 5<&-
 2782     fi
 2783     test yes = "$lalib_p"
 2784 }
 2785 
 2786 # func_ltwrapper_script_p file
 2787 # True iff FILE is a libtool wrapper script
 2788 # This function is only a basic sanity check; it will hardly flush out
 2789 # determined imposters.
 2790 func_ltwrapper_script_p ()
 2791 {
 2792     test -f "$1" &&
 2793       $lt_truncate_bin < "$1" 2>/dev/null | func_generated_by_libtool_p
 2794 }
 2795 
 2796 # func_ltwrapper_executable_p file
 2797 # True iff FILE is a libtool wrapper executable
 2798 # This function is only a basic sanity check; it will hardly flush out
 2799 # determined imposters.
 2800 func_ltwrapper_executable_p ()
 2801 {
 2802     func_ltwrapper_exec_suffix=
 2803     case $1 in
 2804     *.exe) ;;
 2805     *) func_ltwrapper_exec_suffix=.exe ;;
 2806     esac
 2807     $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1
 2808 }
 2809 
 2810 # func_ltwrapper_scriptname file
 2811 # Assumes file is an ltwrapper_executable
 2812 # uses $file to determine the appropriate filename for a
 2813 # temporary ltwrapper_script.
 2814 func_ltwrapper_scriptname ()
 2815 {
 2816     func_dirname_and_basename "$1" "" "."
 2817     func_stripname '' '.exe' "$func_basename_result"
 2818     func_ltwrapper_scriptname_result=$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper
 2819 }
 2820 
 2821 # func_ltwrapper_p file
 2822 # True iff FILE is a libtool wrapper script or wrapper executable
 2823 # This function is only a basic sanity check; it will hardly flush out
 2824 # determined imposters.
 2825 func_ltwrapper_p ()
 2826 {
 2827     func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1"
 2828 }
 2829 
 2830 
 2831 # func_execute_cmds commands fail_cmd
 2832 # Execute tilde-delimited COMMANDS.
 2833 # If FAIL_CMD is given, eval that upon failure.
 2834 # FAIL_CMD may read-access the current command in variable CMD!
 2835 func_execute_cmds ()
 2836 {
 2837     $debug_cmd
 2838 
 2839     save_ifs=$IFS; IFS='~'
 2840     for cmd in $1; do
 2841       IFS=$sp$nl
 2842       eval cmd=\"$cmd\"
 2843       IFS=$save_ifs
 2844       func_show_eval "$cmd" "${2-:}"
 2845     done
 2846     IFS=$save_ifs
 2847 }
 2848 
 2849 
 2850 # func_source file
 2851 # Source FILE, adding directory component if necessary.
 2852 # Note that it is not necessary on cygwin/mingw to append a dot to
 2853 # FILE even if both FILE and FILE.exe exist: automatic-append-.exe
 2854 # behavior happens only for exec(3), not for open(2)!  Also, sourcing
 2855 # 'FILE.' does not work on cygwin managed mounts.
 2856 func_source ()
 2857 {
 2858     $debug_cmd
 2859 
 2860     case $1 in
 2861     */* | *\\*) . "$1" ;;
 2862     *)      . "./$1" ;;
 2863     esac
 2864 }
 2865 
 2866 
 2867 # func_resolve_sysroot PATH
 2868 # Replace a leading = in PATH with a sysroot.  Store the result into
 2869 # func_resolve_sysroot_result
 2870 func_resolve_sysroot ()
 2871 {
 2872   func_resolve_sysroot_result=$1
 2873   case $func_resolve_sysroot_result in
 2874   =*)
 2875     func_stripname '=' '' "$func_resolve_sysroot_result"
 2876     func_resolve_sysroot_result=$lt_sysroot$func_stripname_result
 2877     ;;
 2878   esac
 2879 }
 2880 
 2881 # func_replace_sysroot PATH
 2882 # If PATH begins with the sysroot, replace it with = and
 2883 # store the result into func_replace_sysroot_result.
 2884 func_replace_sysroot ()
 2885 {
 2886   case $lt_sysroot:$1 in
 2887   ?*:"$lt_sysroot"*)
 2888     func_stripname "$lt_sysroot" '' "$1"
 2889     func_replace_sysroot_result='='$func_stripname_result
 2890     ;;
 2891   *)
 2892     # Including no sysroot.
 2893     func_replace_sysroot_result=$1
 2894     ;;
 2895   esac
 2896 }
 2897 
 2898 # func_infer_tag arg
 2899 # Infer tagged configuration to use if any are available and
 2900 # if one wasn't chosen via the "--tag" command line option.
 2901 # Only attempt this if the compiler in the base compile
 2902 # command doesn't match the default compiler.
 2903 # arg is usually of the form 'gcc ...'
 2904 func_infer_tag ()
 2905 {
 2906     $debug_cmd
 2907 
 2908     if test -n "$available_tags" && test -z "$tagname"; then
 2909       CC_quoted=
 2910       for arg in $CC; do
 2911     func_append_quoted CC_quoted "$arg"
 2912       done
 2913       CC_expanded=`func_echo_all $CC`
 2914       CC_quoted_expanded=`func_echo_all $CC_quoted`
 2915       case $@ in
 2916       # Blanks in the command may have been stripped by the calling shell,
 2917       # but not from the CC environment variable when configure was run.
 2918       " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \
 2919       " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;;
 2920       # Blanks at the start of $base_compile will cause this to fail
 2921       # if we don't check for them as well.
 2922       *)
 2923     for z in $available_tags; do
 2924       if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then
 2925         # Evaluate the configuration.
 2926         eval "`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`"
 2927         CC_quoted=
 2928         for arg in $CC; do
 2929           # Double-quote args containing other shell metacharacters.
 2930           func_append_quoted CC_quoted "$arg"
 2931         done
 2932         CC_expanded=`func_echo_all $CC`
 2933         CC_quoted_expanded=`func_echo_all $CC_quoted`
 2934         case "$@ " in
 2935         " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \
 2936         " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*)
 2937           # The compiler in the base compile command matches
 2938           # the one in the tagged configuration.
 2939           # Assume this is the tagged configuration we want.
 2940           tagname=$z
 2941           break
 2942           ;;
 2943         esac
 2944       fi
 2945     done
 2946     # If $tagname still isn't set, then no tagged configuration
 2947     # was found and let the user know that the "--tag" command
 2948     # line option must be used.
 2949     if test -z "$tagname"; then
 2950       func_echo "unable to infer tagged configuration"
 2951       func_fatal_error "specify a tag with '--tag'"
 2952 #   else
 2953 #     func_verbose "using $tagname tagged configuration"
 2954     fi
 2955     ;;
 2956       esac
 2957     fi
 2958 }
 2959 
 2960 
 2961 
 2962 # func_write_libtool_object output_name pic_name nonpic_name
 2963 # Create a libtool object file (analogous to a ".la" file),
 2964 # but don't create it if we're doing a dry run.
 2965 func_write_libtool_object ()
 2966 {
 2967     write_libobj=$1
 2968     if test yes = "$build_libtool_libs"; then
 2969       write_lobj=\'$2\'
 2970     else
 2971       write_lobj=none
 2972     fi
 2973 
 2974     if test yes = "$build_old_libs"; then
 2975       write_oldobj=\'$3\'
 2976     else
 2977       write_oldobj=none
 2978     fi
 2979 
 2980     $opt_dry_run || {
 2981       cat >${write_libobj}T <<EOF
 2982 # $write_libobj - a libtool object file
 2983 # Generated by $PROGRAM (GNU $PACKAGE) $VERSION
 2984 #
 2985 # Please DO NOT delete this file!
 2986 # It is necessary for linking the library.
 2987 
 2988 # Name of the PIC object.
 2989 pic_object=$write_lobj
 2990 
 2991 # Name of the non-PIC object
 2992 non_pic_object=$write_oldobj
 2993 
 2994 EOF
 2995       $MV "${write_libobj}T" "$write_libobj"
 2996     }
 2997 }
 2998 
 2999 
 3000 ##################################################
 3001 # FILE NAME AND PATH CONVERSION HELPER FUNCTIONS #
 3002 ##################################################
 3003 
 3004 # func_convert_core_file_wine_to_w32 ARG
 3005 # Helper function used by file name conversion functions when $build is *nix,
 3006 # and $host is mingw, cygwin, or some other w32 environment. Relies on a
 3007 # correctly configured wine environment available, with the winepath program
 3008 # in $build's $PATH.
 3009 #
 3010 # ARG is the $build file name to be converted to w32 format.
 3011 # Result is available in $func_convert_core_file_wine_to_w32_result, and will
 3012 # be empty on error (or when ARG is empty)
 3013 func_convert_core_file_wine_to_w32 ()
 3014 {
 3015   $debug_cmd
 3016 
 3017   func_convert_core_file_wine_to_w32_result=$1
 3018   if test -n "$1"; then
 3019     # Unfortunately, winepath does not exit with a non-zero error code, so we
 3020     # are forced to check the contents of stdout. On the other hand, if the
 3021     # command is not found, the shell will set an exit code of 127 and print
 3022     # *an error message* to stdout. So we must check for both error code of
 3023     # zero AND non-empty stdout, which explains the odd construction:
 3024     func_convert_core_file_wine_to_w32_tmp=`winepath -w "$1" 2>/dev/null`
 3025     if test "$?" -eq 0 && test -n "$func_convert_core_file_wine_to_w32_tmp"; then
 3026       func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" |
 3027         $SED -e "$sed_naive_backslashify"`
 3028     else
 3029       func_convert_core_file_wine_to_w32_result=
 3030     fi
 3031   fi
 3032 }
 3033 # end: func_convert_core_file_wine_to_w32
 3034 
 3035 
 3036 # func_convert_core_path_wine_to_w32 ARG
 3037 # Helper function used by path conversion functions when $build is *nix, and
 3038 # $host is mingw, cygwin, or some other w32 environment. Relies on a correctly
 3039 # configured wine environment available, with the winepath program in $build's
 3040 # $PATH. Assumes ARG has no leading or trailing path separator characters.
 3041 #
 3042 # ARG is path to be converted from $build format to win32.
 3043 # Result is available in $func_convert_core_path_wine_to_w32_result.
 3044 # Unconvertible file (directory) names in ARG are skipped; if no directory names
 3045 # are convertible, then the result may be empty.
 3046 func_convert_core_path_wine_to_w32 ()
 3047 {
 3048   $debug_cmd
 3049 
 3050   # unfortunately, winepath doesn't convert paths, only file names
 3051   func_convert_core_path_wine_to_w32_result=
 3052   if test -n "$1"; then
 3053     oldIFS=$IFS
 3054     IFS=:
 3055     for func_convert_core_path_wine_to_w32_f in $1; do
 3056       IFS=$oldIFS
 3057       func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f"
 3058       if test -n "$func_convert_core_file_wine_to_w32_result"; then
 3059         if test -z "$func_convert_core_path_wine_to_w32_result"; then
 3060           func_convert_core_path_wine_to_w32_result=$func_convert_core_file_wine_to_w32_result
 3061         else
 3062           func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result"
 3063         fi
 3064       fi
 3065     done
 3066     IFS=$oldIFS
 3067   fi
 3068 }
 3069 # end: func_convert_core_path_wine_to_w32
 3070 
 3071 
 3072 # func_cygpath ARGS...
 3073 # Wrapper around calling the cygpath program via LT_CYGPATH. This is used when
 3074 # when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2)
 3075 # $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or
 3076 # (2), returns the Cygwin file name or path in func_cygpath_result (input
 3077 # file name or path is assumed to be in w32 format, as previously converted
 3078 # from $build's *nix or MSYS format). In case (3), returns the w32 file name
 3079 # or path in func_cygpath_result (input file name or path is assumed to be in
 3080 # Cygwin format). Returns an empty string on error.
 3081 #
 3082 # ARGS are passed to cygpath, with the last one being the file name or path to
 3083 # be converted.
 3084 #
 3085 # Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH
 3086 # environment variable; do not put it in $PATH.
 3087 func_cygpath ()
 3088 {
 3089   $debug_cmd
 3090 
 3091   if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then
 3092     func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null`
 3093     if test "$?" -ne 0; then
 3094       # on failure, ensure result is empty
 3095       func_cygpath_result=
 3096     fi
 3097   else
 3098     func_cygpath_result=
 3099     func_error "LT_CYGPATH is empty or specifies non-existent file: '$LT_CYGPATH'"
 3100   fi
 3101 }
 3102 #end: func_cygpath
 3103 
 3104 
 3105 # func_convert_core_msys_to_w32 ARG
 3106 # Convert file name or path ARG from MSYS format to w32 format.  Return
 3107 # result in func_convert_core_msys_to_w32_result.
 3108 func_convert_core_msys_to_w32 ()
 3109 {
 3110   $debug_cmd
 3111 
 3112   # awkward: cmd appends spaces to result
 3113   func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null |
 3114     $SED -e 's/[ ]*$//' -e "$sed_naive_backslashify"`
 3115 }
 3116 #end: func_convert_core_msys_to_w32
 3117 
 3118 
 3119 # func_convert_file_check ARG1 ARG2
 3120 # Verify that ARG1 (a file name in $build format) was converted to $host
 3121 # format in ARG2. Otherwise, emit an error message, but continue (resetting
 3122 # func_to_host_file_result to ARG1).
 3123 func_convert_file_check ()
 3124 {
 3125   $debug_cmd
 3126 
 3127   if test -z "$2" && test -n "$1"; then
 3128     func_error "Could not determine host file name corresponding to"
 3129     func_error "  '$1'"
 3130     func_error "Continuing, but uninstalled executables may not work."
 3131     # Fallback:
 3132     func_to_host_file_result=$1
 3133   fi
 3134 }
 3135 # end func_convert_file_check
 3136 
 3137 
 3138 # func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH
 3139 # Verify that FROM_PATH (a path in $build format) was converted to $host
 3140 # format in TO_PATH. Otherwise, emit an error message, but continue, resetting
 3141 # func_to_host_file_result to a simplistic fallback value (see below).
 3142 func_convert_path_check ()
 3143 {
 3144   $debug_cmd
 3145 
 3146   if test -z "$4" && test -n "$3"; then
 3147     func_error "Could not determine the host path corresponding to"
 3148     func_error "  '$3'"
 3149     func_error "Continuing, but uninstalled executables may not work."
 3150     # Fallback.  This is a deliberately simplistic "conversion" and
 3151     # should not be "improved".  See libtool.info.
 3152     if test "x$1" != "x$2"; then
 3153       lt_replace_pathsep_chars="s|$1|$2|g"
 3154       func_to_host_path_result=`echo "$3" |
 3155         $SED -e "$lt_replace_pathsep_chars"`
 3156     else
 3157       func_to_host_path_result=$3
 3158     fi
 3159   fi
 3160 }
 3161 # end func_convert_path_check
 3162 
 3163 
 3164 # func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG
 3165 # Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT
 3166 # and appending REPL if ORIG matches BACKPAT.
 3167 func_convert_path_front_back_pathsep ()
 3168 {
 3169   $debug_cmd
 3170 
 3171   case $4 in
 3172   $1 ) func_to_host_path_result=$3$func_to_host_path_result
 3173     ;;
 3174   esac
 3175   case $4 in
 3176   $2 ) func_append func_to_host_path_result "$3"
 3177     ;;
 3178   esac
 3179 }
 3180 # end func_convert_path_front_back_pathsep
 3181 
 3182 
 3183 ##################################################
 3184 # $build to $host FILE NAME CONVERSION FUNCTIONS #
 3185 ##################################################
 3186 # invoked via '$to_host_file_cmd ARG'
 3187 #
 3188 # In each case, ARG is the path to be converted from $build to $host format.
 3189 # Result will be available in $func_to_host_file_result.
 3190 
 3191 
 3192 # func_to_host_file ARG
 3193 # Converts the file name ARG from $build format to $host format. Return result
 3194 # in func_to_host_file_result.
 3195 func_to_host_file ()
 3196 {
 3197   $debug_cmd
 3198 
 3199   $to_host_file_cmd "$1"
 3200 }
 3201 # end func_to_host_file
 3202 
 3203 
 3204 # func_to_tool_file ARG LAZY
 3205 # converts the file name ARG from $build format to toolchain format. Return
 3206 # result in func_to_tool_file_result.  If the conversion in use is listed
 3207 # in (the comma separated) LAZY, no conversion takes place.
 3208 func_to_tool_file ()
 3209 {
 3210   $debug_cmd
 3211 
 3212   case ,$2, in
 3213     *,"$to_tool_file_cmd",*)
 3214       func_to_tool_file_result=$1
 3215       ;;
 3216     *)
 3217       $to_tool_file_cmd "$1"
 3218       func_to_tool_file_result=$func_to_host_file_result
 3219       ;;
 3220   esac
 3221 }
 3222 # end func_to_tool_file
 3223 
 3224 
 3225 # func_convert_file_noop ARG
 3226 # Copy ARG to func_to_host_file_result.
 3227 func_convert_file_noop ()
 3228 {
 3229   func_to_host_file_result=$1
 3230 }
 3231 # end func_convert_file_noop
 3232 
 3233 
 3234 # func_convert_file_msys_to_w32 ARG
 3235 # Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic
 3236 # conversion to w32 is not available inside the cwrapper.  Returns result in
 3237 # func_to_host_file_result.
 3238 func_convert_file_msys_to_w32 ()
 3239 {
 3240   $debug_cmd
 3241 
 3242   func_to_host_file_result=$1
 3243   if test -n "$1"; then
 3244     func_convert_core_msys_to_w32 "$1"
 3245     func_to_host_file_result=$func_convert_core_msys_to_w32_result
 3246   fi
 3247   func_convert_file_check "$1" "$func_to_host_file_result"
 3248 }
 3249 # end func_convert_file_msys_to_w32
 3250 
 3251 
 3252 # func_convert_file_cygwin_to_w32 ARG
 3253 # Convert file name ARG from Cygwin to w32 format.  Returns result in
 3254 # func_to_host_file_result.
 3255 func_convert_file_cygwin_to_w32 ()
 3256 {
 3257   $debug_cmd
 3258 
 3259   func_to_host_file_result=$1
 3260   if test -n "$1"; then
 3261     # because $build is cygwin, we call "the" cygpath in $PATH; no need to use
 3262     # LT_CYGPATH in this case.
 3263     func_to_host_file_result=`cygpath -m "$1"`
 3264   fi
 3265   func_convert_file_check "$1" "$func_to_host_file_result"
 3266 }
 3267 # end func_convert_file_cygwin_to_w32
 3268 
 3269 
 3270 # func_convert_file_nix_to_w32 ARG
 3271 # Convert file name ARG from *nix to w32 format.  Requires a wine environment
 3272 # and a working winepath. Returns result in func_to_host_file_result.
 3273 func_convert_file_nix_to_w32 ()
 3274 {
 3275   $debug_cmd
 3276 
 3277   func_to_host_file_result=$1
 3278   if test -n "$1"; then
 3279     func_convert_core_file_wine_to_w32 "$1"
 3280     func_to_host_file_result=$func_convert_core_file_wine_to_w32_result
 3281   fi
 3282   func_convert_file_check "$1" "$func_to_host_file_result"
 3283 }
 3284 # end func_convert_file_nix_to_w32
 3285 
 3286 
 3287 # func_convert_file_msys_to_cygwin ARG
 3288 # Convert file name ARG from MSYS to Cygwin format.  Requires LT_CYGPATH set.
 3289 # Returns result in func_to_host_file_result.
 3290 func_convert_file_msys_to_cygwin ()
 3291 {
 3292   $debug_cmd
 3293 
 3294   func_to_host_file_result=$1
 3295   if test -n "$1"; then
 3296     func_convert_core_msys_to_w32 "$1"
 3297     func_cygpath -u "$func_convert_core_msys_to_w32_result"
 3298     func_to_host_file_result=$func_cygpath_result
 3299   fi
 3300   func_convert_file_check "$1" "$func_to_host_file_result"
 3301 }
 3302 # end func_convert_file_msys_to_cygwin
 3303 
 3304 
 3305 # func_convert_file_nix_to_cygwin ARG
 3306 # Convert file name ARG from *nix to Cygwin format.  Requires Cygwin installed
 3307 # in a wine environment, working winepath, and LT_CYGPATH set.  Returns result
 3308 # in func_to_host_file_result.
 3309 func_convert_file_nix_to_cygwin ()
 3310 {
 3311   $debug_cmd
 3312 
 3313   func_to_host_file_result=$1
 3314   if test -n "$1"; then
 3315     # convert from *nix to w32, then use cygpath to convert from w32 to cygwin.
 3316     func_convert_core_file_wine_to_w32 "$1"
 3317     func_cygpath -u "$func_convert_core_file_wine_to_w32_result"
 3318     func_to_host_file_result=$func_cygpath_result
 3319   fi
 3320   func_convert_file_check "$1" "$func_to_host_file_result"
 3321 }
 3322 # end func_convert_file_nix_to_cygwin
 3323 
 3324 
 3325 #############################################
 3326 # $build to $host PATH CONVERSION FUNCTIONS #
 3327 #############################################
 3328 # invoked via '$to_host_path_cmd ARG'
 3329 #
 3330 # In each case, ARG is the path to be converted from $build to $host format.
 3331 # The result will be available in $func_to_host_path_result.
 3332 #
 3333 # Path separators are also converted from $build format to $host format.  If
 3334 # ARG begins or ends with a path separator character, it is preserved (but
 3335 # converted to $host format) on output.
 3336 #
 3337 # All path conversion functions are named using the following convention:
 3338 #   file name conversion function    : func_convert_file_X_to_Y ()
 3339 #   path conversion function         : func_convert_path_X_to_Y ()
 3340 # where, for any given $build/$host combination the 'X_to_Y' value is the
 3341 # same.  If conversion functions are added for new $build/$host combinations,
 3342 # the two new functions must follow this pattern, or func_init_to_host_path_cmd
 3343 # will break.
 3344 
 3345 
 3346 # func_init_to_host_path_cmd
 3347 # Ensures that function "pointer" variable $to_host_path_cmd is set to the
 3348 # appropriate value, based on the value of $to_host_file_cmd.
 3349 to_host_path_cmd=
 3350 func_init_to_host_path_cmd ()
 3351 {
 3352   $debug_cmd
 3353 
 3354   if test -z "$to_host_path_cmd"; then
 3355     func_stripname 'func_convert_file_' '' "$to_host_file_cmd"
 3356     to_host_path_cmd=func_convert_path_$func_stripname_result
 3357   fi
 3358 }
 3359 
 3360 
 3361 # func_to_host_path ARG
 3362 # Converts the path ARG from $build format to $host format. Return result
 3363 # in func_to_host_path_result.
 3364 func_to_host_path ()
 3365 {
 3366   $debug_cmd
 3367 
 3368   func_init_to_host_path_cmd
 3369   $to_host_path_cmd "$1"
 3370 }
 3371 # end func_to_host_path
 3372 
 3373 
 3374 # func_convert_path_noop ARG
 3375 # Copy ARG to func_to_host_path_result.
 3376 func_convert_path_noop ()
 3377 {
 3378   func_to_host_path_result=$1
 3379 }
 3380 # end func_convert_path_noop
 3381 
 3382 
 3383 # func_convert_path_msys_to_w32 ARG
 3384 # Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic
 3385 # conversion to w32 is not available inside the cwrapper.  Returns result in
 3386 # func_to_host_path_result.
 3387 func_convert_path_msys_to_w32 ()
 3388 {
 3389   $debug_cmd
 3390 
 3391   func_to_host_path_result=$1
 3392   if test -n "$1"; then
 3393     # Remove leading and trailing path separator characters from ARG.  MSYS
 3394     # behavior is inconsistent here; cygpath turns them into '.;' and ';.';
 3395     # and winepath ignores them completely.
 3396     func_stripname : : "$1"
 3397     func_to_host_path_tmp1=$func_stripname_result
 3398     func_convert_core_msys_to_w32 "$func_to_host_path_tmp1"
 3399     func_to_host_path_result=$func_convert_core_msys_to_w32_result
 3400     func_convert_path_check : ";" \
 3401       "$func_to_host_path_tmp1" "$func_to_host_path_result"
 3402     func_convert_path_front_back_pathsep ":*" "*:" ";" "$1"
 3403   fi
 3404 }
 3405 # end func_convert_path_msys_to_w32
 3406 
 3407 
 3408 # func_convert_path_cygwin_to_w32 ARG
 3409 # Convert path ARG from Cygwin to w32 format.  Returns result in
 3410 # func_to_host_file_result.
 3411 func_convert_path_cygwin_to_w32 ()
 3412 {
 3413   $debug_cmd
 3414 
 3415   func_to_host_path_result=$1
 3416   if test -n "$1"; then
 3417     # See func_convert_path_msys_to_w32:
 3418     func_stripname : : "$1"
 3419     func_to_host_path_tmp1=$func_stripname_result
 3420     func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"`
 3421     func_convert_path_check : ";" \
 3422       "$func_to_host_path_tmp1" "$func_to_host_path_result"
 3423     func_convert_path_front_back_pathsep ":*" "*:" ";" "$1"
 3424   fi
 3425 }
 3426 # end func_convert_path_cygwin_to_w32
 3427 
 3428 
 3429 # func_convert_path_nix_to_w32 ARG
 3430 # Convert path ARG from *nix to w32 format.  Requires a wine environment and
 3431 # a working winepath.  Returns result in func_to_host_file_result.
 3432 func_convert_path_nix_to_w32 ()
 3433 {
 3434   $debug_cmd
 3435 
 3436   func_to_host_path_result=$1
 3437   if test -n "$1"; then
 3438     # See func_convert_path_msys_to_w32:
 3439     func_stripname : : "$1"
 3440     func_to_host_path_tmp1=$func_stripname_result
 3441     func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1"
 3442     func_to_host_path_result=$func_convert_core_path_wine_to_w32_result
 3443     func_convert_path_check : ";" \
 3444       "$func_to_host_path_tmp1" "$func_to_host_path_result"
 3445     func_convert_path_front_back_pathsep ":*" "*:" ";" "$1"
 3446   fi
 3447 }
 3448 # end func_convert_path_nix_to_w32
 3449 
 3450 
 3451 # func_convert_path_msys_to_cygwin ARG
 3452 # Convert path ARG from MSYS to Cygwin format.  Requires LT_CYGPATH set.
 3453 # Returns result in func_to_host_file_result.
 3454 func_convert_path_msys_to_cygwin ()
 3455 {
 3456   $debug_cmd
 3457 
 3458   func_to_host_path_result=$1
 3459   if test -n "$1"; then
 3460     # See func_convert_path_msys_to_w32:
 3461     func_stripname : : "$1"
 3462     func_to_host_path_tmp1=$func_stripname_result
 3463     func_convert_core_msys_to_w32 "$func_to_host_path_tmp1"
 3464     func_cygpath -u -p "$func_convert_core_msys_to_w32_result"
 3465     func_to_host_path_result=$func_cygpath_result
 3466     func_convert_path_check : : \
 3467       "$func_to_host_path_tmp1" "$func_to_host_path_result"
 3468     func_convert_path_front_back_pathsep ":*" "*:" : "$1"
 3469   fi
 3470 }
 3471 # end func_convert_path_msys_to_cygwin
 3472 
 3473 
 3474 # func_convert_path_nix_to_cygwin ARG
 3475 # Convert path ARG from *nix to Cygwin format.  Requires Cygwin installed in a
 3476 # a wine environment, working winepath, and LT_CYGPATH set.  Returns result in
 3477 # func_to_host_file_result.
 3478 func_convert_path_nix_to_cygwin ()
 3479 {
 3480   $debug_cmd
 3481 
 3482   func_to_host_path_result=$1
 3483   if test -n "$1"; then
 3484     # Remove leading and trailing path separator characters from
 3485     # ARG. msys behavior is inconsistent here, cygpath turns them
 3486     # into '.;' and ';.', and winepath ignores them completely.
 3487     func_stripname : : "$1"
 3488     func_to_host_path_tmp1=$func_stripname_result
 3489     func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1"
 3490     func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result"
 3491     func_to_host_path_result=$func_cygpath_result
 3492     func_convert_path_check : : \
 3493       "$func_to_host_path_tmp1" "$func_to_host_path_result"
 3494     func_convert_path_front_back_pathsep ":*" "*:" : "$1"
 3495   fi
 3496 }
 3497 # end func_convert_path_nix_to_cygwin
 3498 
 3499 
 3500 # func_dll_def_p FILE
 3501 # True iff FILE is a Windows DLL '.def' file.
 3502 # Keep in sync with _LT_DLL_DEF_P in libtool.m4
 3503 func_dll_def_p ()
 3504 {
 3505   $debug_cmd
 3506 
 3507   func_dll_def_p_tmp=`$SED -n \
 3508     -e 's/^[     ]*//' \
 3509     -e '/^\(;.*\)*$/d' \
 3510     -e 's/^\(EXPORTS\|LIBRARY\)\([   ].*\)*$/DEF/p' \
 3511     -e q \
 3512     "$1"`
 3513   test DEF = "$func_dll_def_p_tmp"
 3514 }
 3515 
 3516 
 3517 # func_mode_compile arg...
 3518 func_mode_compile ()
 3519 {
 3520     $debug_cmd
 3521 
 3522     # Get the compilation command and the source file.
 3523     base_compile=
 3524     srcfile=$nonopt  #  always keep a non-empty value in "srcfile"
 3525     suppress_opt=yes
 3526     suppress_output=
 3527     arg_mode=normal
 3528     libobj=
 3529     later=
 3530     pie_flag=
 3531 
 3532     for arg
 3533     do
 3534       case $arg_mode in
 3535       arg  )
 3536     # do not "continue".  Instead, add this to base_compile
 3537     lastarg=$arg
 3538     arg_mode=normal
 3539     ;;
 3540 
 3541       target )
 3542     libobj=$arg
 3543     arg_mode=normal
 3544     continue
 3545     ;;
 3546 
 3547       normal )
 3548     # Accept any command-line options.
 3549     case $arg in
 3550     -o)
 3551       test -n "$libobj" && \
 3552         func_fatal_error "you cannot specify '-o' more than once"
 3553       arg_mode=target
 3554       continue
 3555       ;;
 3556 
 3557     -pie | -fpie | -fPIE)
 3558           func_append pie_flag " $arg"
 3559       continue
 3560       ;;
 3561 
 3562     -shared | -static | -prefer-pic | -prefer-non-pic)
 3563       func_append later " $arg"
 3564       continue
 3565       ;;
 3566 
 3567     -no-suppress)
 3568       suppress_opt=no
 3569       continue
 3570       ;;
 3571 
 3572     -Xcompiler)
 3573       arg_mode=arg  #  the next one goes into the "base_compile" arg list
 3574       continue      #  The current "srcfile" will either be retained or
 3575       ;;            #  replaced later.  I would guess that would be a bug.
 3576 
 3577     -Wc,*)
 3578       func_stripname '-Wc,' '' "$arg"
 3579       args=$func_stripname_result
 3580       lastarg=
 3581       save_ifs=$IFS; IFS=,
 3582       for arg in $args; do
 3583         IFS=$save_ifs
 3584         func_append_quoted lastarg "$arg"
 3585       done
 3586       IFS=$save_ifs
 3587       func_stripname ' ' '' "$lastarg"
 3588       lastarg=$func_stripname_result
 3589 
 3590       # Add the arguments to base_compile.
 3591       func_append base_compile " $lastarg"
 3592       continue
 3593       ;;
 3594 
 3595     *)
 3596       # Accept the current argument as the source file.
 3597       # The previous "srcfile" becomes the current argument.
 3598       #
 3599       lastarg=$srcfile
 3600       srcfile=$arg
 3601       ;;
 3602     esac  #  case $arg
 3603     ;;
 3604       esac    #  case $arg_mode
 3605 
 3606       # Aesthetically quote the previous argument.
 3607       func_append_quoted base_compile "$lastarg"
 3608     done # for arg
 3609 
 3610     case $arg_mode in
 3611     arg)
 3612       func_fatal_error "you must specify an argument for -Xcompile"
 3613       ;;
 3614     target)
 3615       func_fatal_error "you must specify a target with '-o'"
 3616       ;;
 3617     *)
 3618       # Get the name of the library object.
 3619       test -z "$libobj" && {
 3620     func_basename "$srcfile"
 3621     libobj=$func_basename_result
 3622       }
 3623       ;;
 3624     esac
 3625 
 3626     # Recognize several different file suffixes.
 3627     # If the user specifies -o file.o, it is replaced with file.lo
 3628     case $libobj in
 3629     *.[cCFSifmso] | \
 3630     *.ada | *.adb | *.ads | *.asm | \
 3631     *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \
 3632     *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup)
 3633       func_xform "$libobj"
 3634       libobj=$func_xform_result
 3635       ;;
 3636     esac
 3637 
 3638     case $libobj in
 3639     *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;;
 3640     *)
 3641       func_fatal_error "cannot determine name of library object from '$libobj'"
 3642       ;;
 3643     esac
 3644 
 3645     func_infer_tag $base_compile
 3646 
 3647     for arg in $later; do
 3648       case $arg in
 3649       -shared)
 3650     test yes = "$build_libtool_libs" \
 3651       || func_fatal_configuration "cannot build a shared library"
 3652     build_old_libs=no
 3653     continue
 3654     ;;
 3655 
 3656       -static)
 3657     build_libtool_libs=no
 3658     build_old_libs=yes
 3659     continue
 3660     ;;
 3661 
 3662       -prefer-pic)
 3663     pic_mode=yes
 3664     continue
 3665     ;;
 3666 
 3667       -prefer-non-pic)
 3668     pic_mode=no
 3669     continue
 3670     ;;
 3671       esac
 3672     done
 3673 
 3674     func_quote_arg pretty "$libobj"
 3675     test "X$libobj" != "X$func_quote_arg_result" \
 3676       && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"'    &()|`$[]' \
 3677       && func_warning "libobj name '$libobj' may not contain shell special characters."
 3678     func_dirname_and_basename "$obj" "/" ""
 3679     objname=$func_basename_result
 3680     xdir=$func_dirname_result
 3681     lobj=$xdir$objdir/$objname
 3682 
 3683     test -z "$base_compile" && \
 3684       func_fatal_help "you must specify a compilation command"
 3685 
 3686     # Delete any leftover library objects.
 3687     if test yes = "$build_old_libs"; then
 3688       removelist="$obj $lobj $libobj ${libobj}T"
 3689     else
 3690       removelist="$lobj $libobj ${libobj}T"
 3691     fi
 3692 
 3693     # On Cygwin there's no "real" PIC flag so we must build both object types
 3694     case $host_os in
 3695     cygwin* | mingw* | pw32* | os2* | cegcc*)
 3696       pic_mode=default
 3697       ;;
 3698     esac
 3699     if test no = "$pic_mode" && test pass_all != "$deplibs_check_method"; then
 3700       # non-PIC code in shared libraries is not supported
 3701       pic_mode=default
 3702     fi
 3703 
 3704     # Calculate the filename of the output object if compiler does
 3705     # not support -o with -c
 3706     if test no = "$compiler_c_o"; then
 3707       output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.$objext
 3708       lockfile=$output_obj.lock
 3709     else
 3710       output_obj=
 3711       need_locks=no
 3712       lockfile=
 3713     fi
 3714 
 3715     # Lock this critical section if it is needed
 3716     # We use this script file to make the link, it avoids creating a new file
 3717     if test yes = "$need_locks"; then
 3718       until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do
 3719     func_echo "Waiting for $lockfile to be removed"
 3720     sleep 2
 3721       done
 3722     elif test warn = "$need_locks"; then
 3723       if test -f "$lockfile"; then
 3724     $ECHO "\
 3725 *** ERROR, $lockfile exists and contains:
 3726 `cat $lockfile 2>/dev/null`
 3727 
 3728 This indicates that another process is trying to use the same
 3729 temporary object file, and libtool could not work around it because
 3730 your compiler does not support '-c' and '-o' together.  If you
 3731 repeat this compilation, it may succeed, by chance, but you had better
 3732 avoid parallel builds (make -j) in this platform, or get a better
 3733 compiler."
 3734 
 3735     $opt_dry_run || $RM $removelist
 3736     exit $EXIT_FAILURE
 3737       fi
 3738       func_append removelist " $output_obj"
 3739       $ECHO "$srcfile" > "$lockfile"
 3740     fi
 3741 
 3742     $opt_dry_run || $RM $removelist
 3743     func_append removelist " $lockfile"
 3744     trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15
 3745 
 3746     func_to_tool_file "$srcfile" func_convert_file_msys_to_w32
 3747     srcfile=$func_to_tool_file_result
 3748     func_quote_arg pretty "$srcfile"
 3749     qsrcfile=$func_quote_arg_result
 3750 
 3751     # Only build a PIC object if we are building libtool libraries.
 3752     if test yes = "$build_libtool_libs"; then
 3753       # Without this assignment, base_compile gets emptied.
 3754       fbsd_hideous_sh_bug=$base_compile
 3755 
 3756       if test no != "$pic_mode"; then
 3757     command="$base_compile $qsrcfile $pic_flag"
 3758       else
 3759     # Don't build PIC code
 3760     command="$base_compile $qsrcfile"
 3761       fi
 3762 
 3763       func_mkdir_p "$xdir$objdir"
 3764 
 3765       if test -z "$output_obj"; then
 3766     # Place PIC objects in $objdir
 3767     func_append command " -o $lobj"
 3768       fi
 3769 
 3770       func_show_eval_locale "$command"  \
 3771           'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE'
 3772 
 3773       if test warn = "$need_locks" &&
 3774      test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
 3775     $ECHO "\
 3776 *** ERROR, $lockfile contains:
 3777 `cat $lockfile 2>/dev/null`
 3778 
 3779 but it should contain:
 3780 $srcfile
 3781 
 3782 This indicates that another process is trying to use the same
 3783 temporary object file, and libtool could not work around it because
 3784 your compiler does not support '-c' and '-o' together.  If you
 3785 repeat this compilation, it may succeed, by chance, but you had better
 3786 avoid parallel builds (make -j) in this platform, or get a better
 3787 compiler."
 3788 
 3789     $opt_dry_run || $RM $removelist
 3790     exit $EXIT_FAILURE
 3791       fi
 3792 
 3793       # Just move the object if needed, then go on to compile the next one
 3794       if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then
 3795     func_show_eval '$MV "$output_obj" "$lobj"' \
 3796       'error=$?; $opt_dry_run || $RM $removelist; exit $error'
 3797       fi
 3798 
 3799       # Allow error messages only from the first compilation.
 3800       if test yes = "$suppress_opt"; then
 3801     suppress_output=' >/dev/null 2>&1'
 3802       fi
 3803     fi
 3804 
 3805     # Only build a position-dependent object if we build old libraries.
 3806     if test yes = "$build_old_libs"; then
 3807       if test yes != "$pic_mode"; then
 3808     # Don't build PIC code
 3809     command="$base_compile $qsrcfile$pie_flag"
 3810       else
 3811     command="$base_compile $qsrcfile $pic_flag"
 3812       fi
 3813       if test yes = "$compiler_c_o"; then
 3814     func_append command " -o $obj"
 3815       fi
 3816 
 3817       # Suppress compiler output if we already did a PIC compilation.
 3818       func_append command "$suppress_output"
 3819       func_show_eval_locale "$command" \
 3820         '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE'
 3821 
 3822       if test warn = "$need_locks" &&
 3823      test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
 3824     $ECHO "\
 3825 *** ERROR, $lockfile contains:
 3826 `cat $lockfile 2>/dev/null`
 3827 
 3828 but it should contain:
 3829 $srcfile
 3830 
 3831 This indicates that another process is trying to use the same
 3832 temporary object file, and libtool could not work around it because
 3833 your compiler does not support '-c' and '-o' together.  If you
 3834 repeat this compilation, it may succeed, by chance, but you had better
 3835 avoid parallel builds (make -j) in this platform, or get a better
 3836 compiler."
 3837 
 3838     $opt_dry_run || $RM $removelist
 3839     exit $EXIT_FAILURE
 3840       fi
 3841 
 3842       # Just move the object if needed
 3843       if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then
 3844     func_show_eval '$MV "$output_obj" "$obj"' \
 3845       'error=$?; $opt_dry_run || $RM $removelist; exit $error'
 3846       fi
 3847     fi
 3848 
 3849     $opt_dry_run || {
 3850       func_write_libtool_object "$libobj" "$objdir/$objname" "$objname"
 3851 
 3852       # Unlock the critical section if it was locked
 3853       if test no != "$need_locks"; then
 3854     removelist=$lockfile
 3855         $RM "$lockfile"
 3856       fi
 3857     }
 3858 
 3859     exit $EXIT_SUCCESS
 3860 }
 3861 
 3862 $opt_help || {
 3863   test compile = "$opt_mode" && func_mode_compile ${1+"$@"}
 3864 }
 3865 
 3866 func_mode_help ()
 3867 {
 3868     # We need to display help for each of the modes.
 3869     case $opt_mode in
 3870       "")
 3871         # Generic help is extracted from the usage comments
 3872         # at the start of this file.
 3873         func_help
 3874         ;;
 3875 
 3876       clean)
 3877         $ECHO \
 3878 "Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE...
 3879 
 3880 Remove files from the build directory.
 3881 
 3882 RM is the name of the program to use to delete files associated with each FILE
 3883 (typically '/bin/rm').  RM-OPTIONS are options (such as '-f') to be passed
 3884 to RM.
 3885 
 3886 If FILE is a libtool library, object or program, all the files associated
 3887 with it are deleted. Otherwise, only FILE itself is deleted using RM."
 3888         ;;
 3889 
 3890       compile)
 3891       $ECHO \
 3892 "Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE
 3893 
 3894 Compile a source file into a libtool library object.
 3895 
 3896 This mode accepts the following additional options:
 3897 
 3898   -o OUTPUT-FILE    set the output file name to OUTPUT-FILE
 3899   -no-suppress      do not suppress compiler output for multiple passes
 3900   -prefer-pic       try to build PIC objects only
 3901   -prefer-non-pic   try to build non-PIC objects only
 3902   -shared           do not build a '.o' file suitable for static linking
 3903   -static           only build a '.o' file suitable for static linking
 3904   -Wc,FLAG
 3905   -Xcompiler FLAG   pass FLAG directly to the compiler
 3906 
 3907 COMPILE-COMMAND is a command to be used in creating a 'standard' object file
 3908 from the given SOURCEFILE.
 3909 
 3910 The output file name is determined by removing the directory component from
 3911 SOURCEFILE, then substituting the C source code suffix '.c' with the
 3912 library object suffix, '.lo'."
 3913         ;;
 3914 
 3915       execute)
 3916         $ECHO \
 3917 "Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]...
 3918 
 3919 Automatically set library path, then run a program.
 3920 
 3921 This mode accepts the following additional options:
 3922 
 3923   -dlopen FILE      add the directory containing FILE to the library path
 3924 
 3925 This mode sets the library path environment variable according to '-dlopen'
 3926 flags.
 3927 
 3928 If any of the ARGS are libtool executable wrappers, then they are translated
 3929 into their corresponding uninstalled binary, and any of their required library
 3930 directories are added to the library path.
 3931 
 3932 Then, COMMAND is executed, with ARGS as arguments."
 3933         ;;
 3934 
 3935       finish)
 3936         $ECHO \
 3937 "Usage: $progname [OPTION]... --mode=finish [LIBDIR]...
 3938 
 3939 Complete the installation of libtool libraries.
 3940 
 3941 Each LIBDIR is a directory that contains libtool libraries.
 3942 
 3943 The commands that this mode executes may require superuser privileges.  Use
 3944 the '--dry-run' option if you just want to see what would be executed."
 3945         ;;
 3946 
 3947       install)
 3948         $ECHO \
 3949 "Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND...
 3950 
 3951 Install executables or libraries.
 3952 
 3953 INSTALL-COMMAND is the installation command.  The first component should be
 3954 either the 'install' or 'cp' program.
 3955 
 3956 The following components of INSTALL-COMMAND are treated specially:
 3957 
 3958   -inst-prefix-dir PREFIX-DIR  Use PREFIX-DIR as a staging area for installation
 3959 
 3960 The rest of the components are interpreted as arguments to that command (only
 3961 BSD-compatible install options are recognized)."
 3962         ;;
 3963 
 3964       link)
 3965         $ECHO \
 3966 "Usage: $progname [OPTION]... --mode=link LINK-COMMAND...
 3967 
 3968 Link object files or libraries together to form another library, or to
 3969 create an executable program.
 3970 
 3971 LINK-COMMAND is a command using the C compiler that you would use to create
 3972 a program from several object files.
 3973 
 3974 The following components of LINK-COMMAND are treated specially:
 3975 
 3976   -all-static       do not do any dynamic linking at all
 3977   -avoid-version    do not add a version suffix if possible
 3978   -bindir BINDIR    specify path to binaries directory (for systems where
 3979                     libraries must be found in the PATH setting at runtime)
 3980   -dlopen FILE      '-dlpreopen' FILE if it cannot be dlopened at runtime
 3981   -dlpreopen FILE   link in FILE and add its symbols to lt_preloaded_symbols
 3982   -export-dynamic   allow symbols from OUTPUT-FILE to be resolved with dlsym(3)
 3983   -export-symbols SYMFILE
 3984                     try to export only the symbols listed in SYMFILE
 3985   -export-symbols-regex REGEX
 3986                     try to export only the symbols matching REGEX
 3987   -LLIBDIR          search LIBDIR for required installed libraries
 3988   -lNAME            OUTPUT-FILE requires the installed library libNAME
 3989   -module           build a library that can dlopened
 3990   -no-fast-install  disable the fast-install mode
 3991   -no-install       link a not-installable executable
 3992   -no-undefined     declare that a library does not refer to external symbols
 3993   -o OUTPUT-FILE    create OUTPUT-FILE from the specified objects
 3994   -objectlist FILE  use a list of object files found in FILE to specify objects
 3995   -os2dllname NAME  force a short DLL name on OS/2 (no effect on other OSes)
 3996   -precious-files-regex REGEX
 3997                     don't remove output files matching REGEX
 3998   -release RELEASE  specify package release information
 3999   -rpath LIBDIR     the created library will eventually be installed in LIBDIR
 4000   -R[ ]LIBDIR       add LIBDIR to the runtime path of programs and libraries
 4001   -shared           only do dynamic linking of libtool libraries
 4002   -shrext SUFFIX    override the standard shared library file extension
 4003   -static           do not do any dynamic linking of uninstalled libtool libraries
 4004   -static-libtool-libs
 4005                     do not do any dynamic linking of libtool libraries
 4006   -version-info CURRENT[:REVISION[:AGE]]
 4007                     specify library version info [each variable defaults to 0]
 4008   -weak LIBNAME     declare that the target provides the LIBNAME interface
 4009   -Wc,FLAG
 4010   -Xcompiler FLAG   pass linker-specific FLAG directly to the compiler
 4011   -Wa,FLAG
 4012   -Xassembler FLAG  pass linker-specific FLAG directly to the assembler
 4013   -Wl,FLAG
 4014   -Xlinker FLAG     pass linker-specific FLAG directly to the linker
 4015   -XCClinker FLAG   pass link-specific FLAG to the compiler driver (CC)
 4016 
 4017 All other options (arguments beginning with '-') are ignored.
 4018 
 4019 Every other argument is treated as a filename.  Files ending in '.la' are
 4020 treated as uninstalled libtool libraries, other files are standard or library
 4021 object files.
 4022 
 4023 If the OUTPUT-FILE ends in '.la', then a libtool library is created,
 4024 only library objects ('.lo' files) may be specified, and '-rpath' is
 4025 required, except when creating a convenience library.
 4026 
 4027 If OUTPUT-FILE ends in '.a' or '.lib', then a standard library is created
 4028 using 'ar' and 'ranlib', or on Windows using 'lib'.
 4029 
 4030 If OUTPUT-FILE ends in '.lo' or '.$objext', then a reloadable object file
 4031 is created, otherwise an executable program is created."
 4032         ;;
 4033 
 4034       uninstall)
 4035         $ECHO \
 4036 "Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...
 4037 
 4038 Remove libraries from an installation directory.
 4039 
 4040 RM is the name of the program to use to delete files associated with each FILE
 4041 (typically '/bin/rm').  RM-OPTIONS are options (such as '-f') to be passed
 4042 to RM.
 4043 
 4044 If FILE is a libtool library, all the files associated with it are deleted.
 4045 Otherwise, only FILE itself is deleted using RM."
 4046         ;;
 4047 
 4048       *)
 4049         func_fatal_help "invalid operation mode '$opt_mode'"
 4050         ;;
 4051     esac
 4052 
 4053     echo
 4054     $ECHO "Try '$progname --help' for more information about other modes."
 4055 }
 4056 
 4057 # Now that we've collected a possible --mode arg, show help if necessary
 4058 if $opt_help; then
 4059   if test : = "$opt_help"; then
 4060     func_mode_help
 4061   else
 4062     {
 4063       func_help noexit
 4064       for opt_mode in compile link execute install finish uninstall clean; do
 4065     func_mode_help
 4066       done
 4067     } | $SED -n '1p; 2,$s/^Usage:/  or: /p'
 4068     {
 4069       func_help noexit
 4070       for opt_mode in compile link execute install finish uninstall clean; do
 4071     echo
 4072     func_mode_help
 4073       done
 4074     } |
 4075     $SED '1d
 4076       /^When reporting/,/^Report/{
 4077     H
 4078     d
 4079       }
 4080       $x
 4081       /information about other modes/d
 4082       /more detailed .*MODE/d
 4083       s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/'
 4084   fi
 4085   exit $?
 4086 fi
 4087 
 4088 
 4089 # func_mode_execute arg...
 4090 func_mode_execute ()
 4091 {
 4092     $debug_cmd
 4093 
 4094     # The first argument is the command name.
 4095     cmd=$nonopt
 4096     test -z "$cmd" && \
 4097       func_fatal_help "you must specify a COMMAND"
 4098 
 4099     # Handle -dlopen flags immediately.
 4100     for file in $opt_dlopen; do
 4101       test -f "$file" \
 4102     || func_fatal_help "'$file' is not a file"
 4103 
 4104       dir=
 4105       case $file in
 4106       *.la)
 4107     func_resolve_sysroot "$file"
 4108     file=$func_resolve_sysroot_result
 4109 
 4110     # Check to see that this really is a libtool archive.
 4111     func_lalib_unsafe_p "$file" \
 4112       || func_fatal_help "'$lib' is not a valid libtool archive"
 4113 
 4114     # Read the libtool library.
 4115     dlname=
 4116     library_names=
 4117     func_source "$file"
 4118 
 4119     # Skip this library if it cannot be dlopened.
 4120     if test -z "$dlname"; then
 4121       # Warn if it was a shared library.
 4122       test -n "$library_names" && \
 4123         func_warning "'$file' was not linked with '-export-dynamic'"
 4124       continue
 4125     fi
 4126 
 4127     func_dirname "$file" "" "."
 4128     dir=$func_dirname_result
 4129 
 4130     if test -f "$dir/$objdir/$dlname"; then
 4131       func_append dir "/$objdir"
 4132     else
 4133       if test ! -f "$dir/$dlname"; then
 4134         func_fatal_error "cannot find '$dlname' in '$dir' or '$dir/$objdir'"
 4135       fi
 4136     fi
 4137     ;;
 4138 
 4139       *.lo)
 4140     # Just add the directory containing the .lo file.
 4141     func_dirname "$file" "" "."
 4142     dir=$func_dirname_result
 4143     ;;
 4144 
 4145       *)
 4146     func_warning "'-dlopen' is ignored for non-libtool libraries and objects"
 4147     continue
 4148     ;;
 4149       esac
 4150 
 4151       # Get the absolute pathname.
 4152       absdir=`cd "$dir" && pwd`
 4153       test -n "$absdir" && dir=$absdir
 4154 
 4155       # Now add the directory to shlibpath_var.
 4156       if eval "test -z \"\$$shlibpath_var\""; then
 4157     eval "$shlibpath_var=\"\$dir\""
 4158       else
 4159     eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\""
 4160       fi
 4161     done
 4162 
 4163     # This variable tells wrapper scripts just to set shlibpath_var
 4164     # rather than running their programs.
 4165     libtool_execute_magic=$magic
 4166 
 4167     # Check if any of the arguments is a wrapper script.
 4168     args=
 4169     for file
 4170     do
 4171       case $file in
 4172       -* | *.la | *.lo ) ;;
 4173       *)
 4174     # Do a test to see if this is really a libtool program.
 4175     if func_ltwrapper_script_p "$file"; then
 4176       func_source "$file"
 4177       # Transform arg to wrapped name.
 4178       file=$progdir/$program
 4179     elif func_ltwrapper_executable_p "$file"; then
 4180       func_ltwrapper_scriptname "$file"
 4181       func_source "$func_ltwrapper_scriptname_result"
 4182       # Transform arg to wrapped name.
 4183       file=$progdir/$program
 4184     fi
 4185     ;;
 4186       esac
 4187       # Quote arguments (to preserve shell metacharacters).
 4188       func_append_quoted args "$file"
 4189     done
 4190 
 4191     if $opt_dry_run; then
 4192       # Display what would be done.
 4193       if test -n "$shlibpath_var"; then
 4194     eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\""
 4195     echo "export $shlibpath_var"
 4196       fi
 4197       $ECHO "$cmd$args"
 4198       exit $EXIT_SUCCESS
 4199     else
 4200       if test -n "$shlibpath_var"; then
 4201     # Export the shlibpath_var.
 4202     eval "export $shlibpath_var"
 4203       fi
 4204 
 4205       # Restore saved environment variables
 4206       for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES
 4207       do
 4208     eval "if test \"\${save_$lt_var+set}\" = set; then
 4209                 $lt_var=\$save_$lt_var; export $lt_var
 4210           else
 4211         $lt_unset $lt_var
 4212           fi"
 4213       done
 4214 
 4215       # Now prepare to actually exec the command.
 4216       exec_cmd=\$cmd$args
 4217     fi
 4218 }
 4219 
 4220 test execute = "$opt_mode" && func_mode_execute ${1+"$@"}
 4221 
 4222 
 4223 # func_mode_finish arg...
 4224 func_mode_finish ()
 4225 {
 4226     $debug_cmd
 4227 
 4228     libs=
 4229     libdirs=
 4230     admincmds=
 4231 
 4232     for opt in "$nonopt" ${1+"$@"}
 4233     do
 4234       if test -d "$opt"; then
 4235     func_append libdirs " $opt"
 4236 
 4237       elif test -f "$opt"; then
 4238     if func_lalib_unsafe_p "$opt"; then
 4239       func_append libs " $opt"
 4240     else
 4241       func_warning "'$opt' is not a valid libtool archive"
 4242     fi
 4243 
 4244       else
 4245     func_fatal_error "invalid argument '$opt'"
 4246       fi
 4247     done
 4248 
 4249     if test -n "$libs"; then
 4250       if test -n "$lt_sysroot"; then
 4251         sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"`
 4252         sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;"
 4253       else
 4254         sysroot_cmd=
 4255       fi
 4256 
 4257       # Remove sysroot references
 4258       if $opt_dry_run; then
 4259         for lib in $libs; do
 4260           echo "removing references to $lt_sysroot and '=' prefixes from $lib"
 4261         done
 4262       else
 4263         tmpdir=`func_mktempdir`
 4264         for lib in $libs; do
 4265       $SED -e "$sysroot_cmd s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \
 4266         > $tmpdir/tmp-la
 4267       mv -f $tmpdir/tmp-la $lib
 4268     done
 4269         ${RM}r "$tmpdir"
 4270       fi
 4271     fi
 4272 
 4273     if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
 4274       for libdir in $libdirs; do
 4275     if test -n "$finish_cmds"; then
 4276       # Do each command in the finish commands.
 4277       func_execute_cmds "$finish_cmds" 'admincmds="$admincmds
 4278 '"$cmd"'"'
 4279     fi
 4280     if test -n "$finish_eval"; then
 4281       # Do the single finish_eval.
 4282       eval cmds=\"$finish_eval\"
 4283       $opt_dry_run || eval "$cmds" || func_append admincmds "
 4284        $cmds"
 4285     fi
 4286       done
 4287     fi
 4288 
 4289     # Exit here if they wanted silent mode.
 4290     $opt_quiet && exit $EXIT_SUCCESS
 4291 
 4292     if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
 4293       echo "----------------------------------------------------------------------"
 4294       echo "Libraries have been installed in:"
 4295       for libdir in $libdirs; do
 4296     $ECHO "   $libdir"
 4297       done
 4298       echo
 4299       echo "If you ever happen to want to link against installed libraries"
 4300       echo "in a given directory, LIBDIR, you must either use libtool, and"
 4301       echo "specify the full pathname of the library, or use the '-LLIBDIR'"
 4302       echo "flag during linking and do at least one of the following:"
 4303       if test -n "$shlibpath_var"; then
 4304     echo "   - add LIBDIR to the '$shlibpath_var' environment variable"
 4305     echo "     during execution"
 4306       fi
 4307       if test -n "$runpath_var"; then
 4308     echo "   - add LIBDIR to the '$runpath_var' environment variable"
 4309     echo "     during linking"
 4310       fi
 4311       if test -n "$hardcode_libdir_flag_spec"; then
 4312     libdir=LIBDIR
 4313     eval flag=\"$hardcode_libdir_flag_spec\"
 4314 
 4315     $ECHO "   - use the '$flag' linker flag"
 4316       fi
 4317       if test -n "$admincmds"; then
 4318     $ECHO "   - have your system administrator run these commands:$admincmds"
 4319       fi
 4320       if test -f /etc/ld.so.conf; then
 4321     echo "   - have your system administrator add LIBDIR to '/etc/ld.so.conf'"
 4322       fi
 4323       echo
 4324 
 4325       echo "See any operating system documentation about shared libraries for"
 4326       case $host in
 4327     solaris2.[6789]|solaris2.1[0-9])
 4328       echo "more information, such as the ld(1), crle(1) and ld.so(8) manual"
 4329       echo "pages."
 4330       ;;
 4331     *)
 4332       echo "more information, such as the ld(1) and ld.so(8) manual pages."
 4333       ;;
 4334       esac
 4335       echo "----------------------------------------------------------------------"
 4336     fi
 4337     exit $EXIT_SUCCESS
 4338 }
 4339 
 4340 test finish = "$opt_mode" && func_mode_finish ${1+"$@"}
 4341 
 4342 
 4343 # func_mode_install arg...
 4344 func_mode_install ()
 4345 {
 4346     $debug_cmd
 4347 
 4348     # There may be an optional sh(1) argument at the beginning of
 4349     # install_prog (especially on Windows NT).
 4350     if test "$SHELL" = "$nonopt" || test /bin/sh = "$nonopt" ||
 4351        # Allow the use of GNU shtool's install command.
 4352        case $nonopt in *shtool*) :;; *) false;; esac
 4353     then
 4354       # Aesthetically quote it.
 4355       func_quote_arg pretty "$nonopt"
 4356       install_prog="$func_quote_arg_result "
 4357       arg=$1
 4358       shift
 4359     else
 4360       install_prog=
 4361       arg=$nonopt
 4362     fi
 4363 
 4364     # The real first argument should be the name of the installation program.
 4365     # Aesthetically quote it.
 4366     func_quote_arg pretty "$arg"
 4367     func_append install_prog "$func_quote_arg_result"
 4368     install_shared_prog=$install_prog
 4369     case " $install_prog " in
 4370       *[\\\ /]cp\ *) install_cp=: ;;
 4371       *) install_cp=false ;;
 4372     esac
 4373 
 4374     # We need to accept at least all the BSD install flags.
 4375     dest=
 4376     files=
 4377     opts=
 4378     prev=
 4379     install_type=
 4380     isdir=false
 4381     stripme=
 4382     no_mode=:
 4383     for arg
 4384     do
 4385       arg2=
 4386       if test -n "$dest"; then
 4387     func_append files " $dest"
 4388     dest=$arg
 4389     continue
 4390       fi
 4391 
 4392       case $arg in
 4393       -d) isdir=: ;;
 4394       -f)
 4395     if $install_cp; then :; else
 4396       prev=$arg
 4397     fi
 4398     ;;
 4399       -g | -m | -o)
 4400     prev=$arg
 4401     ;;
 4402       -s)
 4403     stripme=" -s"
 4404     continue
 4405     ;;
 4406       -*)
 4407     ;;
 4408       *)
 4409     # If the previous option needed an argument, then skip it.
 4410     if test -n "$prev"; then
 4411       if test X-m = "X$prev" && test -n "$install_override_mode"; then
 4412         arg2=$install_override_mode
 4413         no_mode=false
 4414       fi
 4415       prev=
 4416     else
 4417       dest=$arg
 4418       continue
 4419     fi
 4420     ;;
 4421       esac
 4422 
 4423       # Aesthetically quote the argument.
 4424       func_quote_arg pretty "$arg"
 4425       func_append install_prog " $func_quote_arg_result"
 4426       if test -n "$arg2"; then
 4427     func_quote_arg pretty "$arg2"
 4428       fi
 4429       func_append install_shared_prog " $func_quote_arg_result"
 4430     done
 4431 
 4432     test -z "$install_prog" && \
 4433       func_fatal_help "you must specify an install program"
 4434 
 4435     test -n "$prev" && \
 4436       func_fatal_help "the '$prev' option requires an argument"
 4437 
 4438     if test -n "$install_override_mode" && $no_mode; then
 4439       if $install_cp; then :; else
 4440     func_quote_arg pretty "$install_override_mode"
 4441     func_append install_shared_prog " -m $func_quote_arg_result"
 4442       fi
 4443     fi
 4444 
 4445     if test -z "$files"; then
 4446       if test -z "$dest"; then
 4447     func_fatal_help "no file or destination specified"
 4448       else
 4449     func_fatal_help "you must specify a destination"
 4450       fi
 4451     fi
 4452 
 4453     # Strip any trailing slash from the destination.
 4454     func_stripname '' '/' "$dest"
 4455     dest=$func_stripname_result
 4456 
 4457     # Check to see that the destination is a directory.
 4458     test -d "$dest" && isdir=:
 4459     if $isdir; then
 4460       destdir=$dest
 4461       destname=
 4462     else
 4463       func_dirname_and_basename "$dest" "" "."
 4464       destdir=$func_dirname_result
 4465       destname=$func_basename_result
 4466 
 4467       # Not a directory, so check to see that there is only one file specified.
 4468       set dummy $files; shift
 4469       test "$#" -gt 1 && \
 4470     func_fatal_help "'$dest' is not a directory"
 4471     fi
 4472     case $destdir in
 4473     [\\/]* | [A-Za-z]:[\\/]*) ;;
 4474     *)
 4475       for file in $files; do
 4476     case $file in
 4477     *.lo) ;;
 4478     *)
 4479       func_fatal_help "'$destdir' must be an absolute directory name"
 4480       ;;
 4481     esac
 4482       done
 4483       ;;
 4484     esac
 4485 
 4486     # This variable tells wrapper scripts just to set variables rather
 4487     # than running their programs.
 4488     libtool_install_magic=$magic
 4489 
 4490     staticlibs=
 4491     future_libdirs=
 4492     current_libdirs=
 4493     for file in $files; do
 4494 
 4495       # Do each installation.
 4496       case $file in
 4497       *.$libext)
 4498     # Do the static libraries later.
 4499     func_append staticlibs " $file"
 4500     ;;
 4501 
 4502       *.la)
 4503     func_resolve_sysroot "$file"
 4504     file=$func_resolve_sysroot_result
 4505 
 4506     # Check to see that this really is a libtool archive.
 4507     func_lalib_unsafe_p "$file" \
 4508       || func_fatal_help "'$file' is not a valid libtool archive"
 4509 
 4510     library_names=
 4511     old_library=
 4512     relink_command=
 4513     func_source "$file"
 4514 
 4515     # Add the libdir to current_libdirs if it is the destination.
 4516     if test "X$destdir" = "X$libdir"; then
 4517       case "$current_libdirs " in
 4518       *" $libdir "*) ;;
 4519       *) func_append current_libdirs " $libdir" ;;
 4520       esac
 4521     else
 4522       # Note the libdir as a future libdir.
 4523       case "$future_libdirs " in
 4524       *" $libdir "*) ;;
 4525       *) func_append future_libdirs " $libdir" ;;
 4526       esac
 4527     fi
 4528 
 4529     func_dirname "$file" "/" ""
 4530     dir=$func_dirname_result
 4531     func_append dir "$objdir"
 4532 
 4533     if test -n "$relink_command"; then
 4534       # Determine the prefix the user has applied to our future dir.
 4535       inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"`
 4536 
 4537       # Don't allow the user to place us outside of our expected
 4538       # location b/c this prevents finding dependent libraries that
 4539       # are installed to the same prefix.
 4540       # At present, this check doesn't affect windows .dll's that
 4541       # are installed into $libdir/../bin (currently, that works fine)
 4542       # but it's something to keep an eye on.
 4543       test "$inst_prefix_dir" = "$destdir" && \
 4544         func_fatal_error "error: cannot install '$file' to a directory not ending in $libdir"
 4545 
 4546       if test -n "$inst_prefix_dir"; then
 4547         # Stick the inst_prefix_dir data into the link command.
 4548         relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"`
 4549       else
 4550         relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"`
 4551       fi
 4552 
 4553       func_warning "relinking '$file'"
 4554       func_show_eval "$relink_command" \
 4555         'func_fatal_error "error: relink '\''$file'\'' with the above command before installing it"'
 4556     fi
 4557 
 4558     # See the names of the shared library.
 4559     set dummy $library_names; shift
 4560     if test -n "$1"; then
 4561       realname=$1
 4562       shift
 4563 
 4564       srcname=$realname
 4565       test -n "$relink_command" && srcname=${realname}T
 4566 
 4567       # Install the shared library and build the symlinks.
 4568       func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \
 4569           'exit $?'
 4570       tstripme=$stripme
 4571       case $host_os in
 4572       cygwin* | mingw* | pw32* | cegcc*)
 4573         case $realname in
 4574         *.dll.a)
 4575           tstripme=
 4576           ;;
 4577         esac
 4578         ;;
 4579       os2*)
 4580         case $realname in
 4581         *_dll.a)
 4582           tstripme=
 4583           ;;
 4584         esac
 4585         ;;
 4586       esac
 4587       if test -n "$tstripme" && test -n "$striplib"; then
 4588         func_show_eval "$striplib $destdir/$realname" 'exit $?'
 4589       fi
 4590 
 4591       if test "$#" -gt 0; then
 4592         # Delete the old symlinks, and create new ones.
 4593         # Try 'ln -sf' first, because the 'ln' binary might depend on
 4594         # the symlink we replace!  Solaris /bin/ln does not understand -f,
 4595         # so we also need to try rm && ln -s.
 4596         for linkname
 4597         do
 4598           test "$linkname" != "$realname" \
 4599         && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })"
 4600         done
 4601       fi
 4602 
 4603       # Do each command in the postinstall commands.
 4604       lib=$destdir/$realname
 4605       func_execute_cmds "$postinstall_cmds" 'exit $?'
 4606     fi
 4607 
 4608     # Install the pseudo-library for information purposes.
 4609     func_basename "$file"
 4610     name=$func_basename_result
 4611     instname=$dir/${name}i
 4612     func_show_eval "$install_prog $instname $destdir/$name" 'exit $?'
 4613 
 4614     # Maybe install the static library, too.
 4615     test -n "$old_library" && func_append staticlibs " $dir/$old_library"
 4616     ;;
 4617 
 4618       *.lo)
 4619     # Install (i.e. copy) a libtool object.
 4620 
 4621     # Figure out destination file name, if it wasn't already specified.
 4622     if test -n "$destname"; then
 4623       destfile=$destdir/$destname
 4624     else
 4625       func_basename "$file"
 4626       destfile=$func_basename_result
 4627       destfile=$destdir/$destfile
 4628     fi
 4629 
 4630     # Deduce the name of the destination old-style object file.
 4631     case $destfile in
 4632     *.lo)
 4633       func_lo2o "$destfile"
 4634       staticdest=$func_lo2o_result
 4635       ;;
 4636     *.$objext)
 4637       staticdest=$destfile
 4638       destfile=
 4639       ;;
 4640     *)
 4641       func_fatal_help "cannot copy a libtool object to '$destfile'"
 4642       ;;
 4643     esac
 4644 
 4645     # Install the libtool object if requested.
 4646     test -n "$destfile" && \
 4647       func_show_eval "$install_prog $file $destfile" 'exit $?'
 4648 
 4649     # Install the old object if enabled.
 4650     if test yes = "$build_old_libs"; then
 4651       # Deduce the name of the old-style object file.
 4652       func_lo2o "$file"
 4653       staticobj=$func_lo2o_result
 4654       func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?'
 4655     fi
 4656     exit $EXIT_SUCCESS
 4657     ;;
 4658 
 4659       *)
 4660     # Figure out destination file name, if it wasn't already specified.
 4661     if test -n "$destname"; then
 4662       destfile=$destdir/$destname
 4663     else
 4664       func_basename "$file"
 4665       destfile=$func_basename_result
 4666       destfile=$destdir/$destfile
 4667     fi
 4668 
 4669     # If the file is missing, and there is a .exe on the end, strip it
 4670     # because it is most likely a libtool script we actually want to
 4671     # install
 4672     stripped_ext=
 4673     case $file in
 4674       *.exe)
 4675         if test ! -f "$file"; then
 4676           func_stripname '' '.exe' "$file"
 4677           file=$func_stripname_result
 4678           stripped_ext=.exe
 4679         fi
 4680         ;;
 4681     esac
 4682 
 4683     # Do a test to see if this is really a libtool program.
 4684     case $host in
 4685     *cygwin* | *mingw*)
 4686         if func_ltwrapper_executable_p "$file"; then
 4687           func_ltwrapper_scriptname "$file"
 4688           wrapper=$func_ltwrapper_scriptname_result
 4689         else
 4690           func_stripname '' '.exe' "$file"
 4691           wrapper=$func_stripname_result
 4692         fi
 4693         ;;
 4694     *)
 4695         wrapper=$file
 4696         ;;
 4697     esac
 4698     if func_ltwrapper_script_p "$wrapper"; then
 4699       notinst_deplibs=
 4700       relink_command=
 4701 
 4702       func_source "$wrapper"
 4703 
 4704       # Check the variables that should have been set.
 4705       test -z "$generated_by_libtool_version" && \
 4706         func_fatal_error "invalid libtool wrapper script '$wrapper'"
 4707 
 4708       finalize=:
 4709       for lib in $notinst_deplibs; do
 4710         # Check to see that each library is installed.
 4711         libdir=
 4712         if test -f "$lib"; then
 4713           func_source "$lib"
 4714         fi
 4715         libfile=$libdir/`$ECHO "$lib" | $SED 's%^.*/%%g'`
 4716         if test -n "$libdir" && test ! -f "$libfile"; then
 4717           func_warning "'$lib' has not been installed in '$libdir'"
 4718           finalize=false
 4719         fi
 4720       done
 4721 
 4722       relink_command=
 4723       func_source "$wrapper"
 4724 
 4725       outputname=
 4726       if test no = "$fast_install" && test -n "$relink_command"; then
 4727         $opt_dry_run || {
 4728           if $finalize; then
 4729             tmpdir=`func_mktempdir`
 4730         func_basename "$file$stripped_ext"
 4731         file=$func_basename_result
 4732             outputname=$tmpdir/$file
 4733             # Replace the output file specification.
 4734             relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'`
 4735 
 4736             $opt_quiet || {
 4737               func_quote_arg expand,pretty "$relink_command"
 4738           eval "func_echo $func_quote_arg_result"
 4739             }
 4740             if eval "$relink_command"; then :
 4741               else
 4742           func_error "error: relink '$file' with the above command before installing it"
 4743           $opt_dry_run || ${RM}r "$tmpdir"
 4744           continue
 4745             fi
 4746             file=$outputname
 4747           else
 4748             func_warning "cannot relink '$file'"
 4749           fi
 4750         }
 4751       else
 4752         # Install the binary that we compiled earlier.
 4753         file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"`
 4754       fi
 4755     fi
 4756 
 4757     # remove .exe since cygwin /usr/bin/install will append another
 4758     # one anyway
 4759     case $install_prog,$host in
 4760     */usr/bin/install*,*cygwin*)
 4761       case $file:$destfile in
 4762       *.exe:*.exe)
 4763         # this is ok
 4764         ;;
 4765       *.exe:*)
 4766         destfile=$destfile.exe
 4767         ;;
 4768       *:*.exe)
 4769         func_stripname '' '.exe' "$destfile"
 4770         destfile=$func_stripname_result
 4771         ;;
 4772       esac
 4773       ;;
 4774     esac
 4775     func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?'
 4776     $opt_dry_run || if test -n "$outputname"; then
 4777       ${RM}r "$tmpdir"
 4778     fi
 4779     ;;
 4780       esac
 4781     done
 4782 
 4783     for file in $staticlibs; do
 4784       func_basename "$file"
 4785       name=$func_basename_result
 4786 
 4787       # Set up the ranlib parameters.
 4788       oldlib=$destdir/$name
 4789       func_to_tool_file "$oldlib" func_convert_file_msys_to_w32
 4790       tool_oldlib=$func_to_tool_file_result
 4791 
 4792       func_show_eval "$install_prog \$file \$oldlib" 'exit $?'
 4793 
 4794       if test -n "$stripme" && test -n "$old_striplib"; then
 4795     func_show_eval "$old_striplib $tool_oldlib" 'exit $?'
 4796       fi
 4797 
 4798       # Do each command in the postinstall commands.
 4799       func_execute_cmds "$old_postinstall_cmds" 'exit $?'
 4800     done
 4801 
 4802     test -n "$future_libdirs" && \
 4803       func_warning "remember to run '$progname --finish$future_libdirs'"
 4804 
 4805     if test -n "$current_libdirs"; then
 4806       # Maybe just do a dry run.
 4807       $opt_dry_run && current_libdirs=" -n$current_libdirs"
 4808       exec_cmd='$SHELL "$progpath" $preserve_args --finish$current_libdirs'
 4809     else
 4810       exit $EXIT_SUCCESS
 4811     fi
 4812 }
 4813 
 4814 test install = "$opt_mode" && func_mode_install ${1+"$@"}
 4815 
 4816 
 4817 # func_generate_dlsyms outputname originator pic_p
 4818 # Extract symbols from dlprefiles and create ${outputname}S.o with
 4819 # a dlpreopen symbol table.
 4820 func_generate_dlsyms ()
 4821 {
 4822     $debug_cmd
 4823 
 4824     my_outputname=$1
 4825     my_originator=$2
 4826     my_pic_p=${3-false}
 4827     my_prefix=`$ECHO "$my_originator" | $SED 's%[^a-zA-Z0-9]%_%g'`
 4828     my_dlsyms=
 4829 
 4830     if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then
 4831       if test -n "$NM" && test -n "$global_symbol_pipe"; then
 4832     my_dlsyms=${my_outputname}S.c
 4833       else
 4834     func_error "not configured to extract global symbols from dlpreopened files"
 4835       fi
 4836     fi
 4837 
 4838     if test -n "$my_dlsyms"; then
 4839       case $my_dlsyms in
 4840       "") ;;
 4841       *.c)
 4842     # Discover the nlist of each of the dlfiles.
 4843     nlist=$output_objdir/$my_outputname.nm
 4844 
 4845     func_show_eval "$RM $nlist ${nlist}S ${nlist}T"
 4846 
 4847     # Parse the name list into a source file.
 4848     func_verbose "creating $output_objdir/$my_dlsyms"
 4849 
 4850     $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\
 4851 /* $my_dlsyms - symbol resolution table for '$my_outputname' dlsym emulation. */
 4852 /* Generated by $PROGRAM (GNU $PACKAGE) $VERSION */
 4853 
 4854 #ifdef __cplusplus
 4855 extern \"C\" {
 4856 #endif
 4857 
 4858 #if defined __GNUC__ && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4))
 4859 #pragma GCC diagnostic ignored \"-Wstrict-prototypes\"
 4860 #endif
 4861 
 4862 /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests.  */
 4863 #if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE
 4864 /* DATA imports from DLLs on WIN32 can't be const, because runtime
 4865    relocations are performed -- see ld's documentation on pseudo-relocs.  */
 4866 # define LT_DLSYM_CONST
 4867 #elif defined __osf__
 4868 /* This system does not cope well with relocations in const data.  */
 4869 # define LT_DLSYM_CONST
 4870 #else
 4871 # define LT_DLSYM_CONST const
 4872 #endif
 4873 
 4874 #define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0)
 4875 
 4876 /* External symbol declarations for the compiler. */\
 4877 "
 4878 
 4879     if test yes = "$dlself"; then
 4880       func_verbose "generating symbol list for '$output'"
 4881 
 4882       $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist"
 4883 
 4884       # Add our own program objects to the symbol list.
 4885       progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP`
 4886       for progfile in $progfiles; do
 4887         func_to_tool_file "$progfile" func_convert_file_msys_to_w32
 4888         func_verbose "extracting global C symbols from '$func_to_tool_file_result'"
 4889         $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'"
 4890       done
 4891 
 4892       if test -n "$exclude_expsyms"; then
 4893         $opt_dry_run || {
 4894           eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T'
 4895           eval '$MV "$nlist"T "$nlist"'
 4896         }
 4897       fi
 4898 
 4899       if test -n "$export_symbols_regex"; then
 4900         $opt_dry_run || {
 4901           eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T'
 4902           eval '$MV "$nlist"T "$nlist"'
 4903         }
 4904       fi
 4905 
 4906       # Prepare the list of exported symbols
 4907       if test -z "$export_symbols"; then
 4908         export_symbols=$output_objdir/$outputname.exp
 4909         $opt_dry_run || {
 4910           $RM $export_symbols
 4911           eval "$SED -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"'
 4912           case $host in
 4913           *cygwin* | *mingw* | *cegcc* )
 4914                 eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
 4915                 eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"'
 4916             ;;
 4917           esac
 4918         }
 4919       else
 4920         $opt_dry_run || {
 4921           eval "$SED -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"'
 4922           eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T'
 4923           eval '$MV "$nlist"T "$nlist"'
 4924           case $host in
 4925             *cygwin* | *mingw* | *cegcc* )
 4926               eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
 4927               eval 'cat "$nlist" >> "$output_objdir/$outputname.def"'
 4928               ;;
 4929           esac
 4930         }
 4931       fi
 4932     fi
 4933 
 4934     for dlprefile in $dlprefiles; do
 4935       func_verbose "extracting global C symbols from '$dlprefile'"
 4936       func_basename "$dlprefile"
 4937       name=$func_basename_result
 4938           case $host in
 4939         *cygwin* | *mingw* | *cegcc* )
 4940           # if an import library, we need to obtain dlname
 4941           if func_win32_import_lib_p "$dlprefile"; then
 4942             func_tr_sh "$dlprefile"
 4943             eval "curr_lafile=\$libfile_$func_tr_sh_result"
 4944             dlprefile_dlbasename=
 4945             if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then
 4946               # Use subshell, to avoid clobbering current variable values
 4947               dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"`
 4948               if test -n "$dlprefile_dlname"; then
 4949                 func_basename "$dlprefile_dlname"
 4950                 dlprefile_dlbasename=$func_basename_result
 4951               else
 4952                 # no lafile. user explicitly requested -dlpreopen <import library>.
 4953                 $sharedlib_from_linklib_cmd "$dlprefile"
 4954                 dlprefile_dlbasename=$sharedlib_from_linklib_result
 4955               fi
 4956             fi
 4957             $opt_dry_run || {
 4958               if test -n "$dlprefile_dlbasename"; then
 4959                 eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"'
 4960               else
 4961                 func_warning "Could not compute DLL name from $name"
 4962                 eval '$ECHO ": $name " >> "$nlist"'
 4963               fi
 4964               func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32
 4965               eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe |
 4966                 $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'"
 4967             }
 4968           else # not an import lib
 4969             $opt_dry_run || {
 4970               eval '$ECHO ": $name " >> "$nlist"'
 4971               func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32
 4972               eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'"
 4973             }
 4974           fi
 4975         ;;
 4976         *)
 4977           $opt_dry_run || {
 4978             eval '$ECHO ": $name " >> "$nlist"'
 4979             func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32
 4980             eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'"
 4981           }
 4982         ;;
 4983           esac
 4984     done
 4985 
 4986     $opt_dry_run || {
 4987       # Make sure we have at least an empty file.
 4988       test -f "$nlist" || : > "$nlist"
 4989 
 4990       if test -n "$exclude_expsyms"; then
 4991         $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T
 4992         $MV "$nlist"T "$nlist"
 4993       fi
 4994 
 4995       # Try sorting and uniquifying the output.
 4996       if $GREP -v "^: " < "$nlist" |
 4997           if sort -k 3 </dev/null >/dev/null 2>&1; then
 4998         sort -k 3
 4999           else
 5000         sort +2
 5001           fi |
 5002           uniq > "$nlist"S; then
 5003         :
 5004       else
 5005         $GREP -v "^: " < "$nlist" > "$nlist"S
 5006       fi
 5007 
 5008       if test -f "$nlist"S; then
 5009         eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"'
 5010       else
 5011         echo '/* NONE */' >> "$output_objdir/$my_dlsyms"
 5012       fi
 5013 
 5014       func_show_eval '$RM "${nlist}I"'
 5015       if test -n "$global_symbol_to_import"; then
 5016         eval "$global_symbol_to_import"' < "$nlist"S > "$nlist"I'
 5017       fi
 5018 
 5019       echo >> "$output_objdir/$my_dlsyms" "\
 5020 
 5021 /* The mapping between symbol names and symbols.  */
 5022 typedef struct {
 5023   const char *name;
 5024   void *address;
 5025 } lt_dlsymlist;
 5026 extern LT_DLSYM_CONST lt_dlsymlist
 5027 lt_${my_prefix}_LTX_preloaded_symbols[];\
 5028 "
 5029 
 5030       if test -s "$nlist"I; then
 5031         echo >> "$output_objdir/$my_dlsyms" "\
 5032 static void lt_syminit(void)
 5033 {
 5034   LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols;
 5035   for (; symbol->name; ++symbol)
 5036     {"
 5037         $SED 's/.*/      if (STREQ (symbol->name, \"&\")) symbol->address = (void *) \&&;/' < "$nlist"I >> "$output_objdir/$my_dlsyms"
 5038         echo >> "$output_objdir/$my_dlsyms" "\
 5039     }
 5040 }"
 5041       fi
 5042       echo >> "$output_objdir/$my_dlsyms" "\
 5043 LT_DLSYM_CONST lt_dlsymlist
 5044 lt_${my_prefix}_LTX_preloaded_symbols[] =
 5045 { {\"$my_originator\", (void *) 0},"
 5046 
 5047       if test -s "$nlist"I; then
 5048         echo >> "$output_objdir/$my_dlsyms" "\
 5049   {\"@INIT@\", (void *) &lt_syminit},"
 5050       fi
 5051 
 5052       case $need_lib_prefix in
 5053       no)
 5054         eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms"
 5055         ;;
 5056       *)
 5057         eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms"
 5058         ;;
 5059       esac
 5060       echo >> "$output_objdir/$my_dlsyms" "\
 5061   {0, (void *) 0}
 5062 };
 5063 
 5064 /* This works around a problem in FreeBSD linker */
 5065 #ifdef FREEBSD_WORKAROUND
 5066 static const void *lt_preloaded_setup() {
 5067   return lt_${my_prefix}_LTX_preloaded_symbols;
 5068 }
 5069 #endif
 5070 
 5071 #ifdef __cplusplus
 5072 }
 5073 #endif\
 5074 "
 5075     } # !$opt_dry_run
 5076 
 5077     pic_flag_for_symtable=
 5078     case "$compile_command " in
 5079     *" -static "*) ;;
 5080     *)
 5081       case $host in
 5082       # compiling the symbol table file with pic_flag works around
 5083       # a FreeBSD bug that causes programs to crash when -lm is
 5084       # linked before any other PIC object.  But we must not use
 5085       # pic_flag when linking with -static.  The problem exists in
 5086       # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1.
 5087       *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)
 5088         pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;;
 5089       *-*-hpux*)
 5090         pic_flag_for_symtable=" $pic_flag"  ;;
 5091       *)
 5092         $my_pic_p && pic_flag_for_symtable=" $pic_flag"
 5093         ;;
 5094       esac
 5095       ;;
 5096     esac
 5097     symtab_cflags=
 5098     for arg in $LTCFLAGS; do
 5099       case $arg in
 5100       -pie | -fpie | -fPIE) ;;
 5101       *) func_append symtab_cflags " $arg" ;;
 5102       esac
 5103     done
 5104 
 5105     # Now compile the dynamic symbol file.
 5106     func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?'
 5107 
 5108     # Clean up the generated files.
 5109     func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T" "${nlist}I"'
 5110 
 5111     # Transform the symbol file into the correct name.
 5112     symfileobj=$output_objdir/${my_outputname}S.$objext
 5113     case $host in
 5114     *cygwin* | *mingw* | *cegcc* )
 5115       if test -f "$output_objdir/$my_outputname.def"; then
 5116         compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"`
 5117         finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"`
 5118       else
 5119         compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"`
 5120         finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"`
 5121       fi
 5122       ;;
 5123     *)
 5124       compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"`
 5125       finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"`
 5126       ;;
 5127     esac
 5128     ;;
 5129       *)
 5130     func_fatal_error "unknown suffix for '$my_dlsyms'"
 5131     ;;
 5132       esac
 5133     else
 5134       # We keep going just in case the user didn't refer to
 5135       # lt_preloaded_symbols.  The linker will fail if global_symbol_pipe
 5136       # really was required.
 5137 
 5138       # Nullify the symbol file.
 5139       compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"`
 5140       finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"`
 5141     fi
 5142 }
 5143 
 5144 # func_cygming_gnu_implib_p ARG
 5145 # This predicate returns with zero status (TRUE) if
 5146 # ARG is a GNU/binutils-style import library. Returns
 5147 # with nonzero status (FALSE) otherwise.
 5148 func_cygming_gnu_implib_p ()
 5149 {
 5150   $debug_cmd
 5151 
 5152   func_to_tool_file "$1" func_convert_file_msys_to_w32
 5153   func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'`
 5154   test -n "$func_cygming_gnu_implib_tmp"
 5155 }
 5156 
 5157 # func_cygming_ms_implib_p ARG
 5158 # This predicate returns with zero status (TRUE) if
 5159 # ARG is an MS-style import library. Returns
 5160 # with nonzero status (FALSE) otherwise.
 5161 func_cygming_ms_implib_p ()
 5162 {
 5163   $debug_cmd
 5164 
 5165   func_to_tool_file "$1" func_convert_file_msys_to_w32
 5166   func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'`
 5167   test -n "$func_cygming_ms_implib_tmp"
 5168 }
 5169 
 5170 # func_win32_libid arg
 5171 # return the library type of file 'arg'
 5172 #
 5173 # Need a lot of goo to handle *both* DLLs and import libs
 5174 # Has to be a shell function in order to 'eat' the argument
 5175 # that is supplied when $file_magic_command is called.
 5176 # Despite the name, also deal with 64 bit binaries.
 5177 func_win32_libid ()
 5178 {
 5179   $debug_cmd
 5180 
 5181   win32_libid_type=unknown
 5182   win32_fileres=`file -L $1 2>/dev/null`
 5183   case $win32_fileres in
 5184   *ar\ archive\ import\ library*) # definitely import
 5185     win32_libid_type="x86 archive import"
 5186     ;;
 5187   *ar\ archive*) # could be an import, or static
 5188     # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD.
 5189     if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null |
 5190        $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then
 5191       case $nm_interface in
 5192       "MS dumpbin")
 5193     if func_cygming_ms_implib_p "$1" ||
 5194        func_cygming_gnu_implib_p "$1"
 5195     then
 5196       win32_nmres=import
 5197     else
 5198       win32_nmres=
 5199     fi
 5200     ;;
 5201       *)
 5202     func_to_tool_file "$1" func_convert_file_msys_to_w32
 5203     win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" |
 5204       $SED -n -e '
 5205         1,100{
 5206         / I /{
 5207             s|.*|import|
 5208             p
 5209             q
 5210         }
 5211         }'`
 5212     ;;
 5213       esac
 5214       case $win32_nmres in
 5215       import*)  win32_libid_type="x86 archive import";;
 5216       *)        win32_libid_type="x86 archive static";;
 5217       esac
 5218     fi
 5219     ;;
 5220   *DLL*)
 5221     win32_libid_type="x86 DLL"
 5222     ;;
 5223   *executable*) # but shell scripts are "executable" too...
 5224     case $win32_fileres in
 5225     *MS\ Windows\ PE\ Intel*)
 5226       win32_libid_type="x86 DLL"
 5227       ;;
 5228     esac
 5229     ;;
 5230   esac
 5231   $ECHO "$win32_libid_type"
 5232 }
 5233 
 5234 # func_cygming_dll_for_implib ARG
 5235 #
 5236 # Platform-specific function to extract the
 5237 # name of the DLL associated with the specified
 5238 # import library ARG.
 5239 # Invoked by eval'ing the libtool variable
 5240 #    $sharedlib_from_linklib_cmd
 5241 # Result is available in the variable
 5242 #    $sharedlib_from_linklib_result
 5243 func_cygming_dll_for_implib ()
 5244 {
 5245   $debug_cmd
 5246 
 5247   sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"`
 5248 }
 5249 
 5250 # func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs
 5251 #
 5252 # The is the core of a fallback implementation of a
 5253 # platform-specific function to extract the name of the
 5254 # DLL associated with the specified import library LIBNAME.
 5255 #
 5256 # SECTION_NAME is either .idata$6 or .idata$7, depending
 5257 # on the platform and compiler that created the implib.
 5258 #
 5259 # Echos the name of the DLL associated with the
 5260 # specified import library.
 5261 func_cygming_dll_for_implib_fallback_core ()
 5262 {
 5263   $debug_cmd
 5264 
 5265   match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"`
 5266   $OBJDUMP -s --section "$1" "$2" 2>/dev/null |
 5267     $SED '/^Contents of section '"$match_literal"':/{
 5268       # Place marker at beginning of archive member dllname section
 5269       s/.*/====MARK====/
 5270       p
 5271       d
 5272     }
 5273     # These lines can sometimes be longer than 43 characters, but
 5274     # are always uninteresting
 5275     /:[  ]*file format pe[i]\{,1\}-/d
 5276     /^In archive [^:]*:/d
 5277     # Ensure marker is printed
 5278     /^====MARK====/p
 5279     # Remove all lines with less than 43 characters
 5280     /^.\{43\}/!d
 5281     # From remaining lines, remove first 43 characters
 5282     s/^.\{43\}//' |
 5283     $SED -n '
 5284       # Join marker and all lines until next marker into a single line
 5285       /^====MARK====/ b para
 5286       H
 5287       $ b para
 5288       b
 5289       :para
 5290       x
 5291       s/\n//g
 5292       # Remove the marker
 5293       s/^====MARK====//
 5294       # Remove trailing dots and whitespace
 5295       s/[\. \t]*$//
 5296       # Print
 5297       /./p' |
 5298     # we now have a list, one entry per line, of the stringified
 5299     # contents of the appropriate section of all members of the
 5300     # archive that possess that section. Heuristic: eliminate
 5301     # all those that have a first or second character that is
 5302     # a '.' (that is, objdump's representation of an unprintable
 5303     # character.) This should work for all archives with less than
 5304     # 0x302f exports -- but will fail for DLLs whose name actually
 5305     # begins with a literal '.' or a single character followed by
 5306     # a '.'.
 5307     #
 5308     # Of those that remain, print the first one.
 5309     $SED -e '/^\./d;/^.\./d;q'
 5310 }
 5311 
 5312 # func_cygming_dll_for_implib_fallback ARG
 5313 # Platform-specific function to extract the
 5314 # name of the DLL associated with the specified
 5315 # import library ARG.
 5316 #
 5317 # This fallback implementation is for use when $DLLTOOL
 5318 # does not support the --identify-strict option.
 5319 # Invoked by eval'ing the libtool variable
 5320 #    $sharedlib_from_linklib_cmd
 5321 # Result is available in the variable
 5322 #    $sharedlib_from_linklib_result
 5323 func_cygming_dll_for_implib_fallback ()
 5324 {
 5325   $debug_cmd
 5326 
 5327   if func_cygming_gnu_implib_p "$1"; then
 5328     # binutils import library
 5329     sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"`
 5330   elif func_cygming_ms_implib_p "$1"; then
 5331     # ms-generated import library
 5332     sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"`
 5333   else
 5334     # unknown
 5335     sharedlib_from_linklib_result=
 5336   fi
 5337 }
 5338 
 5339 
 5340 # func_extract_an_archive dir oldlib
 5341 func_extract_an_archive ()
 5342 {
 5343     $debug_cmd
 5344 
 5345     f_ex_an_ar_dir=$1; shift
 5346     f_ex_an_ar_oldlib=$1
 5347     if test yes = "$lock_old_archive_extraction"; then
 5348       lockfile=$f_ex_an_ar_oldlib.lock
 5349       until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do
 5350     func_echo "Waiting for $lockfile to be removed"
 5351     sleep 2
 5352       done
 5353     fi
 5354     func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \
 5355            'stat=$?; rm -f "$lockfile"; exit $stat'
 5356     if test yes = "$lock_old_archive_extraction"; then
 5357       $opt_dry_run || rm -f "$lockfile"
 5358     fi
 5359     if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then
 5360      :
 5361     else
 5362       func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib"
 5363     fi
 5364 }
 5365 
 5366 
 5367 # func_extract_archives gentop oldlib ...
 5368 func_extract_archives ()
 5369 {
 5370     $debug_cmd
 5371 
 5372     my_gentop=$1; shift
 5373     my_oldlibs=${1+"$@"}
 5374     my_oldobjs=
 5375     my_xlib=
 5376     my_xabs=
 5377     my_xdir=
 5378 
 5379     for my_xlib in $my_oldlibs; do
 5380       # Extract the objects.
 5381       case $my_xlib in
 5382     [\\/]* | [A-Za-z]:[\\/]*) my_xabs=$my_xlib ;;
 5383     *) my_xabs=`pwd`"/$my_xlib" ;;
 5384       esac
 5385       func_basename "$my_xlib"
 5386       my_xlib=$func_basename_result
 5387       my_xlib_u=$my_xlib
 5388       while :; do
 5389         case " $extracted_archives " in
 5390     *" $my_xlib_u "*)
 5391       func_arith $extracted_serial + 1
 5392       extracted_serial=$func_arith_result
 5393       my_xlib_u=lt$extracted_serial-$my_xlib ;;
 5394     *) break ;;
 5395     esac
 5396       done
 5397       extracted_archives="$extracted_archives $my_xlib_u"
 5398       my_xdir=$my_gentop/$my_xlib_u
 5399 
 5400       func_mkdir_p "$my_xdir"
 5401 
 5402       case $host in
 5403       *-darwin*)
 5404     func_verbose "Extracting $my_xabs"
 5405     # Do not bother doing anything if just a dry run
 5406     $opt_dry_run || {
 5407       darwin_orig_dir=`pwd`
 5408       cd $my_xdir || exit $?
 5409       darwin_archive=$my_xabs
 5410       darwin_curdir=`pwd`
 5411       func_basename "$darwin_archive"
 5412       darwin_base_archive=$func_basename_result
 5413       darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true`
 5414       if test -n "$darwin_arches"; then
 5415         darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'`
 5416         darwin_arch=
 5417         func_verbose "$darwin_base_archive has multiple architectures $darwin_arches"
 5418         for darwin_arch in  $darwin_arches; do
 5419           func_mkdir_p "unfat-$$/$darwin_base_archive-$darwin_arch"
 5420           $LIPO -thin $darwin_arch -output "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" "$darwin_archive"
 5421           cd "unfat-$$/$darwin_base_archive-$darwin_arch"
 5422           func_extract_an_archive "`pwd`" "$darwin_base_archive"
 5423           cd "$darwin_curdir"
 5424           $RM "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive"
 5425         done # $darwin_arches
 5426             ## Okay now we've a bunch of thin objects, gotta fatten them up :)
 5427         darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$sed_basename" | sort -u`
 5428         darwin_file=
 5429         darwin_files=
 5430         for darwin_file in $darwin_filelist; do
 5431           darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP`
 5432           $LIPO -create -output "$darwin_file" $darwin_files
 5433         done # $darwin_filelist
 5434         $RM -rf unfat-$$
 5435         cd "$darwin_orig_dir"
 5436       else
 5437         cd $darwin_orig_dir
 5438         func_extract_an_archive "$my_xdir" "$my_xabs"
 5439       fi # $darwin_arches
 5440     } # !$opt_dry_run
 5441     ;;
 5442       *)
 5443         func_extract_an_archive "$my_xdir" "$my_xabs"
 5444     ;;
 5445       esac
 5446       my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP`
 5447     done
 5448 
 5449     func_extract_archives_result=$my_oldobjs
 5450 }
 5451 
 5452 
 5453 # func_emit_wrapper [arg=no]
 5454 #
 5455 # Emit a libtool wrapper script on stdout.
 5456 # Don't directly open a file because we may want to
 5457 # incorporate the script contents within a cygwin/mingw
 5458 # wrapper executable.  Must ONLY be called from within
 5459 # func_mode_link because it depends on a number of variables
 5460 # set therein.
 5461 #
 5462 # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR
 5463 # variable will take.  If 'yes', then the emitted script
 5464 # will assume that the directory where it is stored is
 5465 # the $objdir directory.  This is a cygwin/mingw-specific
 5466 # behavior.
 5467 func_emit_wrapper ()
 5468 {
 5469     func_emit_wrapper_arg1=${1-no}
 5470 
 5471     $ECHO "\
 5472 #! $SHELL
 5473 
 5474 # $output - temporary wrapper script for $objdir/$outputname
 5475 # Generated by $PROGRAM (GNU $PACKAGE) $VERSION
 5476 #
 5477 # The $output program cannot be directly executed until all the libtool
 5478 # libraries that it depends on are installed.
 5479 #
 5480 # This wrapper script should never be moved out of the build directory.
 5481 # If it is, it will not operate correctly.
 5482 
 5483 # Sed substitution that helps us do robust quoting.  It backslashifies
 5484 # metacharacters that are still active within double-quoted strings.
 5485 sed_quote_subst='$sed_quote_subst'
 5486 
 5487 # Be Bourne compatible
 5488 if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then
 5489   emulate sh
 5490   NULLCMD=:
 5491   # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which
 5492   # is contrary to our usage.  Disable this feature.
 5493   alias -g '\${1+\"\$@\"}'='\"\$@\"'
 5494   setopt NO_GLOB_SUBST
 5495 else
 5496   case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac
 5497 fi
 5498 BIN_SH=xpg4; export BIN_SH # for Tru64
 5499 DUALCASE=1; export DUALCASE # for MKS sh
 5500 
 5501 # The HP-UX ksh and POSIX shell print the target directory to stdout
 5502 # if CDPATH is set.
 5503 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
 5504 
 5505 relink_command=\"$relink_command\"
 5506 
 5507 # This environment variable determines our operation mode.
 5508 if test \"\$libtool_install_magic\" = \"$magic\"; then
 5509   # install mode needs the following variables:
 5510   generated_by_libtool_version='$macro_version'
 5511   notinst_deplibs='$notinst_deplibs'
 5512 else
 5513   # When we are sourced in execute mode, \$file and \$ECHO are already set.
 5514   if test \"\$libtool_execute_magic\" != \"$magic\"; then
 5515     file=\"\$0\""
 5516 
 5517     func_quote_arg pretty "$ECHO"
 5518     qECHO=$func_quote_arg_result
 5519     $ECHO "\
 5520 
 5521 # A function that is used when there is no print builtin or printf.
 5522 func_fallback_echo ()
 5523 {
 5524   eval 'cat <<_LTECHO_EOF
 5525 \$1
 5526 _LTECHO_EOF'
 5527 }
 5528     ECHO=$qECHO
 5529   fi
 5530 
 5531 # Very basic option parsing. These options are (a) specific to
 5532 # the libtool wrapper, (b) are identical between the wrapper
 5533 # /script/ and the wrapper /executable/ that is used only on
 5534 # windows platforms, and (c) all begin with the string "--lt-"
 5535 # (application programs are unlikely to have options that match
 5536 # this pattern).
 5537 #
 5538 # There are only two supported options: --lt-debug and
 5539 # --lt-dump-script. There is, deliberately, no --lt-help.
 5540 #
 5541 # The first argument to this parsing function should be the
 5542 # script's $0 value, followed by "$@".
 5543 lt_option_debug=
 5544 func_parse_lt_options ()
 5545 {
 5546   lt_script_arg0=\$0
 5547   shift
 5548   for lt_opt
 5549   do
 5550     case \"\$lt_opt\" in
 5551     --lt-debug) lt_option_debug=1 ;;
 5552     --lt-dump-script)
 5553         lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\`
 5554         test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=.
 5555         lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\`
 5556         cat \"\$lt_dump_D/\$lt_dump_F\"
 5557         exit 0
 5558       ;;
 5559     --lt-*)
 5560         \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2
 5561         exit 1
 5562       ;;
 5563     esac
 5564   done
 5565 
 5566   # Print the debug banner immediately:
 5567   if test -n \"\$lt_option_debug\"; then
 5568     echo \"$outputname:$output:\$LINENO: libtool wrapper (GNU $PACKAGE) $VERSION\" 1>&2
 5569   fi
 5570 }
 5571 
 5572 # Used when --lt-debug. Prints its arguments to stdout
 5573 # (redirection is the responsibility of the caller)
 5574 func_lt_dump_args ()
 5575 {
 5576   lt_dump_args_N=1;
 5577   for lt_arg
 5578   do
 5579     \$ECHO \"$outputname:$output:\$LINENO: newargv[\$lt_dump_args_N]: \$lt_arg\"
 5580     lt_dump_args_N=\`expr \$lt_dump_args_N + 1\`
 5581   done
 5582 }
 5583 
 5584 # Core function for launching the target application
 5585 func_exec_program_core ()
 5586 {
 5587 "
 5588   case $host in
 5589   # Backslashes separate directories on plain windows
 5590   *-*-mingw | *-*-os2* | *-cegcc*)
 5591     $ECHO "\
 5592       if test -n \"\$lt_option_debug\"; then
 5593         \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir\\\\\$program\" 1>&2
 5594         func_lt_dump_args \${1+\"\$@\"} 1>&2
 5595       fi
 5596       exec \"\$progdir\\\\\$program\" \${1+\"\$@\"}
 5597 "
 5598     ;;
 5599 
 5600   *)
 5601     $ECHO "\
 5602       if test -n \"\$lt_option_debug\"; then
 5603         \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir/\$program\" 1>&2
 5604         func_lt_dump_args \${1+\"\$@\"} 1>&2
 5605       fi
 5606       exec \"\$progdir/\$program\" \${1+\"\$@\"}
 5607 "
 5608     ;;
 5609   esac
 5610   $ECHO "\
 5611       \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2
 5612       exit 1
 5613 }
 5614 
 5615 # A function to encapsulate launching the target application
 5616 # Strips options in the --lt-* namespace from \$@ and
 5617 # launches target application with the remaining arguments.
 5618 func_exec_program ()
 5619 {
 5620   case \" \$* \" in
 5621   *\\ --lt-*)
 5622     for lt_wr_arg
 5623     do
 5624       case \$lt_wr_arg in
 5625       --lt-*) ;;
 5626       *) set x \"\$@\" \"\$lt_wr_arg\"; shift;;
 5627       esac
 5628       shift
 5629     done ;;
 5630   esac
 5631   func_exec_program_core \${1+\"\$@\"}
 5632 }
 5633 
 5634   # Parse options
 5635   func_parse_lt_options \"\$0\" \${1+\"\$@\"}
 5636 
 5637   # Find the directory that this script lives in.
 5638   thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\`
 5639   test \"x\$thisdir\" = \"x\$file\" && thisdir=.
 5640 
 5641   # Follow symbolic links until we get to the real thisdir.
 5642   file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\`
 5643   while test -n \"\$file\"; do
 5644     destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\`
 5645 
 5646     # If there was a directory component, then change thisdir.
 5647     if test \"x\$destdir\" != \"x\$file\"; then
 5648       case \"\$destdir\" in
 5649       [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;;
 5650       *) thisdir=\"\$thisdir/\$destdir\" ;;
 5651       esac
 5652     fi
 5653 
 5654     file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\`
 5655     file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\`
 5656   done
 5657 
 5658   # Usually 'no', except on cygwin/mingw when embedded into
 5659   # the cwrapper.
 5660   WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1
 5661   if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then
 5662     # special case for '.'
 5663     if test \"\$thisdir\" = \".\"; then
 5664       thisdir=\`pwd\`
 5665     fi
 5666     # remove .libs from thisdir
 5667     case \"\$thisdir\" in
 5668     *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;;
 5669     $objdir )   thisdir=. ;;
 5670     esac
 5671   fi
 5672 
 5673   # Try to get the absolute directory name.
 5674   absdir=\`cd \"\$thisdir\" && pwd\`
 5675   test -n \"\$absdir\" && thisdir=\"\$absdir\"
 5676 "
 5677 
 5678     if test yes = "$fast_install"; then
 5679       $ECHO "\
 5680   program=lt-'$outputname'$exeext
 5681   progdir=\"\$thisdir/$objdir\"
 5682 
 5683   if test ! -f \"\$progdir/\$program\" ||
 5684      { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | $SED 1q\`; \\
 5685        test \"X\$file\" != \"X\$progdir/\$program\"; }; then
 5686 
 5687     file=\"\$\$-\$program\"
 5688 
 5689     if test ! -d \"\$progdir\"; then
 5690       $MKDIR \"\$progdir\"
 5691     else
 5692       $RM \"\$progdir/\$file\"
 5693     fi"
 5694 
 5695       $ECHO "\
 5696 
 5697     # relink executable if necessary
 5698     if test -n \"\$relink_command\"; then
 5699       if relink_command_output=\`eval \$relink_command 2>&1\`; then :
 5700       else
 5701     \$ECHO \"\$relink_command_output\" >&2
 5702     $RM \"\$progdir/\$file\"
 5703     exit 1
 5704       fi
 5705     fi
 5706 
 5707     $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null ||
 5708     { $RM \"\$progdir/\$program\";
 5709       $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; }
 5710     $RM \"\$progdir/\$file\"
 5711   fi"
 5712     else
 5713       $ECHO "\
 5714   program='$outputname'
 5715   progdir=\"\$thisdir/$objdir\"
 5716 "
 5717     fi
 5718 
 5719     $ECHO "\
 5720 
 5721   if test -f \"\$progdir/\$program\"; then"
 5722 
 5723     # fixup the dll searchpath if we need to.
 5724     #
 5725     # Fix the DLL searchpath if we need to.  Do this before prepending
 5726     # to shlibpath, because on Windows, both are PATH and uninstalled
 5727     # libraries must come first.
 5728     if test -n "$dllsearchpath"; then
 5729       $ECHO "\
 5730     # Add the dll search path components to the executable PATH
 5731     PATH=$dllsearchpath:\$PATH
 5732 "
 5733     fi
 5734 
 5735     # Export our shlibpath_var if we have one.
 5736     if test yes = "$shlibpath_overrides_runpath" && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
 5737       $ECHO "\
 5738     # Add our own library path to $shlibpath_var
 5739     $shlibpath_var=\"$temp_rpath\$$shlibpath_var\"
 5740 
 5741     # Some systems cannot cope with colon-terminated $shlibpath_var
 5742     # The second colon is a workaround for a bug in BeOS R4 sed
 5743     $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\`
 5744 
 5745     export $shlibpath_var
 5746 "
 5747     fi
 5748 
 5749     $ECHO "\
 5750     if test \"\$libtool_execute_magic\" != \"$magic\"; then
 5751       # Run the actual program with our arguments.
 5752       func_exec_program \${1+\"\$@\"}
 5753     fi
 5754   else
 5755     # The program doesn't exist.
 5756     \$ECHO \"\$0: error: '\$progdir/\$program' does not exist\" 1>&2
 5757     \$ECHO \"This script is just a wrapper for \$program.\" 1>&2
 5758     \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2
 5759     exit 1
 5760   fi
 5761 fi\
 5762 "
 5763 }
 5764 
 5765 
 5766 # func_emit_cwrapperexe_src
 5767 # emit the source code for a wrapper executable on stdout
 5768 # Must ONLY be called from within func_mode_link because
 5769 # it depends on a number of variable set therein.
 5770 func_emit_cwrapperexe_src ()
 5771 {
 5772     cat <<EOF
 5773 
 5774 /* $cwrappersource - temporary wrapper executable for $objdir/$outputname
 5775    Generated by $PROGRAM (GNU $PACKAGE) $VERSION
 5776 
 5777    The $output program cannot be directly executed until all the libtool
 5778    libraries that it depends on are installed.
 5779 
 5780    This wrapper executable should never be moved out of the build directory.
 5781    If it is, it will not operate correctly.
 5782 */
 5783 EOF
 5784         cat <<"EOF"
 5785 #ifdef _MSC_VER
 5786 # define _CRT_SECURE_NO_DEPRECATE 1
 5787 #endif
 5788 #include <stdio.h>
 5789 #include <stdlib.h>
 5790 #ifdef _MSC_VER
 5791 # include <direct.h>
 5792 # include <process.h>
 5793 # include <io.h>
 5794 #else
 5795 # include <unistd.h>
 5796 # include <stdint.h>
 5797 # ifdef __CYGWIN__
 5798 #  include <io.h>
 5799 # endif
 5800 #endif
 5801 #include <malloc.h>
 5802 #include <stdarg.h>
 5803 #include <assert.h>
 5804 #include <string.h>
 5805 #include <ctype.h>
 5806 #include <errno.h>
 5807 #include <fcntl.h>
 5808 #include <sys/stat.h>
 5809 
 5810 #define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0)
 5811 
 5812 /* declarations of non-ANSI functions */
 5813 #if defined __MINGW32__
 5814 # ifdef __STRICT_ANSI__
 5815 int _putenv (const char *);
 5816 # endif
 5817 #elif defined __CYGWIN__
 5818 # ifdef __STRICT_ANSI__
 5819 char *realpath (const char *, char *);
 5820 int putenv (char *);
 5821 int setenv (const char *, const char *, int);
 5822 # endif
 5823 /* #elif defined other_platform || defined ... */
 5824 #endif
 5825 
 5826 /* portability defines, excluding path handling macros */
 5827 #if defined _MSC_VER
 5828 # define setmode _setmode
 5829 # define stat    _stat
 5830 # define chmod   _chmod
 5831 # define getcwd  _getcwd
 5832 # define putenv  _putenv
 5833 # define S_IXUSR _S_IEXEC
 5834 #elif defined __MINGW32__
 5835 # define setmode _setmode
 5836 # define stat    _stat
 5837 # define chmod   _chmod
 5838 # define getcwd  _getcwd
 5839 # define putenv  _putenv
 5840 #elif defined __CYGWIN__
 5841 # define HAVE_SETENV
 5842 # define FOPEN_WB "wb"
 5843 /* #elif defined other platforms ... */
 5844 #endif
 5845 
 5846 #if defined PATH_MAX
 5847 # define LT_PATHMAX PATH_MAX
 5848 #elif defined MAXPATHLEN
 5849 # define LT_PATHMAX MAXPATHLEN
 5850 #else
 5851 # define LT_PATHMAX 1024
 5852 #endif
 5853 
 5854 #ifndef S_IXOTH
 5855 # define S_IXOTH 0
 5856 #endif
 5857 #ifndef S_IXGRP
 5858 # define S_IXGRP 0
 5859 #endif
 5860 
 5861 /* path handling portability macros */
 5862 #ifndef DIR_SEPARATOR
 5863 # define DIR_SEPARATOR '/'
 5864 # define PATH_SEPARATOR ':'
 5865 #endif
 5866 
 5867 #if defined _WIN32 || defined __MSDOS__ || defined __DJGPP__ || \
 5868   defined __OS2__
 5869 # define HAVE_DOS_BASED_FILE_SYSTEM
 5870 # define FOPEN_WB "wb"
 5871 # ifndef DIR_SEPARATOR_2
 5872 #  define DIR_SEPARATOR_2 '\\'
 5873 # endif
 5874 # ifndef PATH_SEPARATOR_2
 5875 #  define PATH_SEPARATOR_2 ';'
 5876 # endif
 5877 #endif
 5878 
 5879 #ifndef DIR_SEPARATOR_2
 5880 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)
 5881 #else /* DIR_SEPARATOR_2 */
 5882 # define IS_DIR_SEPARATOR(ch) \
 5883     (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))
 5884 #endif /* DIR_SEPARATOR_2 */
 5885 
 5886 #ifndef PATH_SEPARATOR_2
 5887 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR)
 5888 #else /* PATH_SEPARATOR_2 */
 5889 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2)
 5890 #endif /* PATH_SEPARATOR_2 */
 5891 
 5892 #ifndef FOPEN_WB
 5893 # define FOPEN_WB "w"
 5894 #endif
 5895 #ifndef _O_BINARY
 5896 # define _O_BINARY 0
 5897 #endif
 5898 
 5899 #define XMALLOC(type, num)      ((type *) xmalloc ((num) * sizeof(type)))
 5900 #define XFREE(stale) do { \
 5901   if (stale) { free (stale); stale = 0; } \
 5902 } while (0)
 5903 
 5904 #if defined LT_DEBUGWRAPPER
 5905 static int lt_debug = 1;
 5906 #else
 5907 static int lt_debug = 0;
 5908 #endif
 5909 
 5910 const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */
 5911 
 5912 void *xmalloc (size_t num);
 5913 char *xstrdup (const char *string);
 5914 const char *base_name (const char *name);
 5915 char *find_executable (const char *wrapper);
 5916 char *chase_symlinks (const char *pathspec);
 5917 int make_executable (const char *path);
 5918 int check_executable (const char *path);
 5919 char *strendzap (char *str, const char *pat);
 5920 void lt_debugprintf (const char *file, int line, const char *fmt, ...);
 5921 void lt_fatal (const char *file, int line, const char *message, ...);
 5922 static const char *nonnull (const char *s);
 5923 static const char *nonempty (const char *s);
 5924 void lt_setenv (const char *name, const char *value);
 5925 char *lt_extend_str (const char *orig_value, const char *add, int to_end);
 5926 void lt_update_exe_path (const char *name, const char *value);
 5927 void lt_update_lib_path (const char *name, const char *value);
 5928 char **prepare_spawn (char **argv);
 5929 void lt_dump_script (FILE *f);
 5930 EOF
 5931 
 5932         cat <<EOF
 5933 #if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 5)
 5934 # define externally_visible volatile
 5935 #else
 5936 # define externally_visible __attribute__((externally_visible)) volatile
 5937 #endif
 5938 externally_visible const char * MAGIC_EXE = "$magic_exe";
 5939 const char * LIB_PATH_VARNAME = "$shlibpath_var";
 5940 EOF
 5941 
 5942         if test yes = "$shlibpath_overrides_runpath" && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
 5943               func_to_host_path "$temp_rpath"
 5944           cat <<EOF
 5945 const char * LIB_PATH_VALUE   = "$func_to_host_path_result";
 5946 EOF
 5947         else
 5948           cat <<"EOF"
 5949 const char * LIB_PATH_VALUE   = "";
 5950 EOF
 5951         fi
 5952 
 5953         if test -n "$dllsearchpath"; then
 5954               func_to_host_path "$dllsearchpath:"
 5955           cat <<EOF
 5956 const char * EXE_PATH_VARNAME = "PATH";
 5957 const char * EXE_PATH_VALUE   = "$func_to_host_path_result";
 5958 EOF
 5959         else
 5960           cat <<"EOF"
 5961 const char * EXE_PATH_VARNAME = "";
 5962 const char * EXE_PATH_VALUE   = "";
 5963 EOF
 5964         fi
 5965 
 5966         if test yes = "$fast_install"; then
 5967           cat <<EOF
 5968 const char * TARGET_PROGRAM_NAME = "lt-$outputname"; /* hopefully, no .exe */
 5969 EOF
 5970         else
 5971           cat <<EOF
 5972 const char * TARGET_PROGRAM_NAME = "$outputname"; /* hopefully, no .exe */
 5973 EOF
 5974         fi
 5975 
 5976 
 5977         cat <<"EOF"
 5978 
 5979 #define LTWRAPPER_OPTION_PREFIX         "--lt-"
 5980 
 5981 static const char *ltwrapper_option_prefix = LTWRAPPER_OPTION_PREFIX;
 5982 static const char *dumpscript_opt       = LTWRAPPER_OPTION_PREFIX "dump-script";
 5983 static const char *debug_opt            = LTWRAPPER_OPTION_PREFIX "debug";
 5984 
 5985 int
 5986 main (int argc, char *argv[])
 5987 {
 5988   char **newargz;
 5989   int  newargc;
 5990   char *tmp_pathspec;
 5991   char *actual_cwrapper_path;
 5992   char *actual_cwrapper_name;
 5993   char *target_name;
 5994   char *lt_argv_zero;
 5995   int rval = 127;
 5996 
 5997   int i;
 5998 
 5999   program_name = (char *) xstrdup (base_name (argv[0]));
 6000   newargz = XMALLOC (char *, (size_t) argc + 1);
 6001 
 6002   /* very simple arg parsing; don't want to rely on getopt
 6003    * also, copy all non cwrapper options to newargz, except
 6004    * argz[0], which is handled differently
 6005    */
 6006   newargc=0;
 6007   for (i = 1; i < argc; i++)
 6008     {
 6009       if (STREQ (argv[i], dumpscript_opt))
 6010     {
 6011 EOF
 6012         case $host in
 6013           *mingw* | *cygwin* )
 6014         # make stdout use "unix" line endings
 6015         echo "          setmode(1,_O_BINARY);"
 6016         ;;
 6017           esac
 6018 
 6019         cat <<"EOF"
 6020       lt_dump_script (stdout);
 6021       return 0;
 6022     }
 6023       if (STREQ (argv[i], debug_opt))
 6024     {
 6025           lt_debug = 1;
 6026           continue;
 6027     }
 6028       if (STREQ (argv[i], ltwrapper_option_prefix))
 6029         {
 6030           /* however, if there is an option in the LTWRAPPER_OPTION_PREFIX
 6031              namespace, but it is not one of the ones we know about and
 6032              have already dealt with, above (inluding dump-script), then
 6033              report an error. Otherwise, targets might begin to believe
 6034              they are allowed to use options in the LTWRAPPER_OPTION_PREFIX
 6035              namespace. The first time any user complains about this, we'll
 6036              need to make LTWRAPPER_OPTION_PREFIX a configure-time option
 6037              or a configure.ac-settable value.
 6038            */
 6039           lt_fatal (__FILE__, __LINE__,
 6040             "unrecognized %s option: '%s'",
 6041                     ltwrapper_option_prefix, argv[i]);
 6042         }
 6043       /* otherwise ... */
 6044       newargz[++newargc] = xstrdup (argv[i]);
 6045     }
 6046   newargz[++newargc] = NULL;
 6047 
 6048 EOF
 6049         cat <<EOF
 6050   /* The GNU banner must be the first non-error debug message */
 6051   lt_debugprintf (__FILE__, __LINE__, "libtool wrapper (GNU $PACKAGE) $VERSION\n");
 6052 EOF
 6053         cat <<"EOF"
 6054   lt_debugprintf (__FILE__, __LINE__, "(main) argv[0]: %s\n", argv[0]);
 6055   lt_debugprintf (__FILE__, __LINE__, "(main) program_name: %s\n", program_name);
 6056 
 6057   tmp_pathspec = find_executable (argv[0]);
 6058   if (tmp_pathspec == NULL)
 6059     lt_fatal (__FILE__, __LINE__, "couldn't find %s", argv[0]);
 6060   lt_debugprintf (__FILE__, __LINE__,
 6061                   "(main) found exe (before symlink chase) at: %s\n",
 6062           tmp_pathspec);
 6063 
 6064   actual_cwrapper_path = chase_symlinks (tmp_pathspec);
 6065   lt_debugprintf (__FILE__, __LINE__,
 6066                   "(main) found exe (after symlink chase) at: %s\n",
 6067           actual_cwrapper_path);
 6068   XFREE (tmp_pathspec);
 6069 
 6070   actual_cwrapper_name = xstrdup (base_name (actual_cwrapper_path));
 6071   strendzap (actual_cwrapper_path, actual_cwrapper_name);
 6072 
 6073   /* wrapper name transforms */
 6074   strendzap (actual_cwrapper_name, ".exe");
 6075   tmp_pathspec = lt_extend_str (actual_cwrapper_name, ".exe", 1);
 6076   XFREE (actual_cwrapper_name);
 6077   actual_cwrapper_name = tmp_pathspec;
 6078   tmp_pathspec = 0;
 6079 
 6080   /* target_name transforms -- use actual target program name; might have lt- prefix */
 6081   target_name = xstrdup (base_name (TARGET_PROGRAM_NAME));
 6082   strendzap (target_name, ".exe");
 6083   tmp_pathspec = lt_extend_str (target_name, ".exe", 1);
 6084   XFREE (target_name);
 6085   target_name = tmp_pathspec;
 6086   tmp_pathspec = 0;
 6087 
 6088   lt_debugprintf (__FILE__, __LINE__,
 6089           "(main) libtool target name: %s\n",
 6090           target_name);
 6091 EOF
 6092 
 6093         cat <<EOF
 6094   newargz[0] =
 6095     XMALLOC (char, (strlen (actual_cwrapper_path) +
 6096             strlen ("$objdir") + 1 + strlen (actual_cwrapper_name) + 1));
 6097   strcpy (newargz[0], actual_cwrapper_path);
 6098   strcat (newargz[0], "$objdir");
 6099   strcat (newargz[0], "/");
 6100 EOF
 6101 
 6102         cat <<"EOF"
 6103   /* stop here, and copy so we don't have to do this twice */
 6104   tmp_pathspec = xstrdup (newargz[0]);
 6105 
 6106   /* do NOT want the lt- prefix here, so use actual_cwrapper_name */
 6107   strcat (newargz[0], actual_cwrapper_name);
 6108 
 6109   /* DO want the lt- prefix here if it exists, so use target_name */
 6110   lt_argv_zero = lt_extend_str (tmp_pathspec, target_name, 1);
 6111   XFREE (tmp_pathspec);
 6112   tmp_pathspec = NULL;
 6113 EOF
 6114 
 6115         case $host_os in
 6116           mingw*)
 6117         cat <<"EOF"
 6118   {
 6119     char* p;
 6120     while ((p = strchr (newargz[0], '\\')) != NULL)
 6121       {
 6122     *p = '/';
 6123       }
 6124     while ((p = strchr (lt_argv_zero, '\\')) != NULL)
 6125       {
 6126     *p = '/';
 6127       }
 6128   }
 6129 EOF
 6130         ;;
 6131         esac
 6132 
 6133         cat <<"EOF"
 6134   XFREE (target_name);
 6135   XFREE (actual_cwrapper_path);
 6136   XFREE (actual_cwrapper_name);
 6137 
 6138   lt_setenv ("BIN_SH", "xpg4"); /* for Tru64 */
 6139   lt_setenv ("DUALCASE", "1");  /* for MSK sh */
 6140   /* Update the DLL searchpath.  EXE_PATH_VALUE ($dllsearchpath) must
 6141      be prepended before (that is, appear after) LIB_PATH_VALUE ($temp_rpath)
 6142      because on Windows, both *_VARNAMEs are PATH but uninstalled
 6143      libraries must come first. */
 6144   lt_update_exe_path (EXE_PATH_VARNAME, EXE_PATH_VALUE);
 6145   lt_update_lib_path (LIB_PATH_VARNAME, LIB_PATH_VALUE);
 6146 
 6147   lt_debugprintf (__FILE__, __LINE__, "(main) lt_argv_zero: %s\n",
 6148           nonnull (lt_argv_zero));
 6149   for (i = 0; i < newargc; i++)
 6150     {
 6151       lt_debugprintf (__FILE__, __LINE__, "(main) newargz[%d]: %s\n",
 6152               i, nonnull (newargz[i]));
 6153     }
 6154 
 6155 EOF
 6156 
 6157         case $host_os in
 6158           mingw*)
 6159         cat <<"EOF"
 6160   /* execv doesn't actually work on mingw as expected on unix */
 6161   newargz = prepare_spawn (newargz);
 6162   rval = (int) _spawnv (_P_WAIT, lt_argv_zero, (const char * const *) newargz);
 6163   if (rval == -1)
 6164     {
 6165       /* failed to start process */
 6166       lt_debugprintf (__FILE__, __LINE__,
 6167               "(main) failed to launch target \"%s\": %s\n",
 6168               lt_argv_zero, nonnull (strerror (errno)));
 6169       return 127;
 6170     }
 6171   return rval;
 6172 EOF
 6173         ;;
 6174           *)
 6175         cat <<"EOF"
 6176   execv (lt_argv_zero, newargz);
 6177   return rval; /* =127, but avoids unused variable warning */
 6178 EOF
 6179         ;;
 6180         esac
 6181 
 6182         cat <<"EOF"
 6183 }
 6184 
 6185 void *
 6186 xmalloc (size_t num)
 6187 {
 6188   void *p = (void *) malloc (num);
 6189   if (!p)
 6190     lt_fatal (__FILE__, __LINE__, "memory exhausted");
 6191 
 6192   return p;
 6193 }
 6194 
 6195 char *
 6196 xstrdup (const char *string)
 6197 {
 6198   return string ? strcpy ((char *) xmalloc (strlen (string) + 1),
 6199               string) : NULL;
 6200 }
 6201 
 6202 const char *
 6203 base_name (const char *name)
 6204 {
 6205   const char *base;
 6206 
 6207 #if defined HAVE_DOS_BASED_FILE_SYSTEM
 6208   /* Skip over the disk name in MSDOS pathnames. */
 6209   if (isalpha ((unsigned char) name[0]) && name[1] == ':')
 6210     name += 2;
 6211 #endif
 6212 
 6213   for (base = name; *name; name++)
 6214     if (IS_DIR_SEPARATOR (*name))
 6215       base = name + 1;
 6216   return base;
 6217 }
 6218 
 6219 int
 6220 check_executable (const char *path)
 6221 {
 6222   struct stat st;
 6223 
 6224   lt_debugprintf (__FILE__, __LINE__, "(check_executable): %s\n",
 6225                   nonempty (path));
 6226   if ((!path) || (!*path))
 6227     return 0;
 6228 
 6229   if ((stat (path, &st) >= 0)
 6230       && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
 6231     return 1;
 6232   else
 6233     return 0;
 6234 }
 6235 
 6236 int
 6237 make_executable (const char *path)
 6238 {
 6239   int rval = 0;
 6240   struct stat st;
 6241 
 6242   lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n",
 6243                   nonempty (path));
 6244   if ((!path) || (!*path))
 6245     return 0;
 6246 
 6247   if (stat (path, &st) >= 0)
 6248     {
 6249       rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR);
 6250     }
 6251   return rval;
 6252 }
 6253 
 6254 /* Searches for the full path of the wrapper.  Returns
 6255    newly allocated full path name if found, NULL otherwise
 6256    Does not chase symlinks, even on platforms that support them.
 6257 */
 6258 char *
 6259 find_executable (const char *wrapper)
 6260 {
 6261   int has_slash = 0;
 6262   const char *p;
 6263   const char *p_next;
 6264   /* static buffer for getcwd */
 6265   char tmp[LT_PATHMAX + 1];
 6266   size_t tmp_len;
 6267   char *concat_name;
 6268 
 6269   lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n",
 6270                   nonempty (wrapper));
 6271 
 6272   if ((wrapper == NULL) || (*wrapper == '\0'))
 6273     return NULL;
 6274 
 6275   /* Absolute path? */
 6276 #if defined HAVE_DOS_BASED_FILE_SYSTEM
 6277   if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':')
 6278     {
 6279       concat_name = xstrdup (wrapper);
 6280       if (check_executable (concat_name))
 6281     return concat_name;
 6282       XFREE (concat_name);
 6283     }
 6284   else
 6285     {
 6286 #endif
 6287       if (IS_DIR_SEPARATOR (wrapper[0]))
 6288     {
 6289       concat_name = xstrdup (wrapper);
 6290       if (check_executable (concat_name))
 6291         return concat_name;
 6292       XFREE (concat_name);
 6293     }
 6294 #if defined HAVE_DOS_BASED_FILE_SYSTEM
 6295     }
 6296 #endif
 6297 
 6298   for (p = wrapper; *p; p++)
 6299     if (*p == '/')
 6300       {
 6301     has_slash = 1;
 6302     break;
 6303       }
 6304   if (!has_slash)
 6305     {
 6306       /* no slashes; search PATH */
 6307       const char *path = getenv ("PATH");
 6308       if (path != NULL)
 6309     {
 6310       for (p = path; *p; p = p_next)
 6311         {
 6312           const char *q;
 6313           size_t p_len;
 6314           for (q = p; *q; q++)
 6315         if (IS_PATH_SEPARATOR (*q))
 6316           break;
 6317           p_len = (size_t) (q - p);
 6318           p_next = (*q == '\0' ? q : q + 1);
 6319           if (p_len == 0)
 6320         {
 6321           /* empty path: current directory */
 6322           if (getcwd (tmp, LT_PATHMAX) == NULL)
 6323             lt_fatal (__FILE__, __LINE__, "getcwd failed: %s",
 6324                               nonnull (strerror (errno)));
 6325           tmp_len = strlen (tmp);
 6326           concat_name =
 6327             XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);
 6328           memcpy (concat_name, tmp, tmp_len);
 6329           concat_name[tmp_len] = '/';
 6330           strcpy (concat_name + tmp_len + 1, wrapper);
 6331         }
 6332           else
 6333         {
 6334           concat_name =
 6335             XMALLOC (char, p_len + 1 + strlen (wrapper) + 1);
 6336           memcpy (concat_name, p, p_len);
 6337           concat_name[p_len] = '/';
 6338           strcpy (concat_name + p_len + 1, wrapper);
 6339         }
 6340           if (check_executable (concat_name))
 6341         return concat_name;
 6342           XFREE (concat_name);
 6343         }
 6344     }
 6345       /* not found in PATH; assume curdir */
 6346     }
 6347   /* Relative path | not found in path: prepend cwd */
 6348   if (getcwd (tmp, LT_PATHMAX) == NULL)
 6349     lt_fatal (__FILE__, __LINE__, "getcwd failed: %s",
 6350               nonnull (strerror (errno)));
 6351   tmp_len = strlen (tm