ltmain.sh
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:108k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. # ltmain.sh - Provide generalized library-building support services.
  2. # NOTE: Changing this file will not affect anything until you rerun ltconfig.
  3. #
  4. # Copyright (C) 1996-1999 Free Software Foundation, Inc.
  5. # Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
  6. #
  7. # This program is free software; you can redistribute it and/or modify
  8. # it under the terms of the GNU General Public License as published by
  9. # the Free Software Foundation; either version 2 of the License, or
  10. # (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful, but
  13. # WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15. # General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program; if not, write to the Free Software
  19. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  20. #
  21. # As a special exception to the GNU General Public License, if you
  22. # distribute this file as part of a program that contains a
  23. # configuration script generated by Autoconf, you may include it under
  24. # the same distribution terms that you use for the rest of that program.
  25. # Check that we have a working $echo.
  26. if test "X$1" = X--no-reexec; then
  27.   # Discard the --no-reexec flag, and continue.
  28.   shift
  29. elif test "X$1" = X--fallback-echo; then
  30.   # Avoid inline document here, it may be left over
  31.   :
  32. elif test "X`($echo 't') 2>/dev/null`" = 'Xt'; then
  33.   # Yippee, $echo works!
  34.   :
  35. else
  36.   # Restart under the correct shell, and then maybe $echo will work.
  37.   exec $SHELL "$0" --no-reexec ${1+"$@"}
  38. fi
  39. if test "X$1" = X--fallback-echo; then
  40.   # used as fallback echo
  41.   shift
  42.   cat <<EOF
  43. $*
  44. EOF
  45.   exit 0
  46. fi
  47. # The name of this program.
  48. progname=`$echo "$0" | sed 's%^.*/%%'`
  49. modename="$progname"
  50. # Constants.
  51. PROGRAM=ltmain.sh
  52. PACKAGE=libtool
  53. VERSION=1.3.5
  54. TIMESTAMP=" (1.385.2.206 2000/05/27 11:12:27)"
  55. default_mode=
  56. help="Try `$progname --help' for more information."
  57. magic="%%%MAGIC variable%%%"
  58. mkdir="mkdir"
  59. mv="mv -f"
  60. rm="rm -f"
  61. # Sed substitution that helps us do robust quoting.  It backslashifies
  62. # metacharacters that are still active within double-quoted strings.
  63. Xsed='sed -e 1s/^X//'
  64. sed_quote_subst='s/([\`\"$\\])/\1/g'
  65. SP2NL='tr 40 12'
  66. NL2SP='tr 1512 4040'
  67. # NLS nuisances.
  68. # Only set LANG and LC_ALL to C if already set.
  69. # These must not be set unconditionally because not all systems understand
  70. # e.g. LANG=C (notably SCO).
  71. # We save the old values to restore during execute mode.
  72. if test "${LC_ALL+set}" = set; then
  73.   save_LC_ALL="$LC_ALL"; LC_ALL=C; export LC_ALL
  74. fi
  75. if test "${LANG+set}" = set; then
  76.   save_LANG="$LANG"; LANG=C; export LANG
  77. fi
  78. if test "$LTCONFIG_VERSION" != "$VERSION"; then
  79.   echo "$modename: ltconfig version `$LTCONFIG_VERSION' does not match $PROGRAM version `$VERSION'" 1>&2
  80.   echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2
  81.   exit 1
  82. fi
  83. if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then
  84.   echo "$modename: not configured to build any kind of library" 1>&2
  85.   echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2
  86.   exit 1
  87. fi
  88. # Global variables.
  89. mode=$default_mode
  90. nonopt=
  91. prev=
  92. prevopt=
  93. run=
  94. show="$echo"
  95. show_help=
  96. execute_dlfiles=
  97. lo2o="s/\.lo$/.${objext}/"
  98. o2lo="s/\.${objext}$/.lo/"
  99. # Parse our command line options once, thoroughly.
  100. while test $# -gt 0
  101. do
  102.   arg="$1"
  103.   shift
  104.   case "$arg" in
  105.   -*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;;
  106.   *) optarg= ;;
  107.   esac
  108.   # If the previous option needs an argument, assign it.
  109.   if test -n "$prev"; then
  110.     case "$prev" in
  111.     execute_dlfiles)
  112.       eval "$prev="$$prev $arg""
  113.       ;;
  114.     *)
  115.       eval "$prev=$arg"
  116.       ;;
  117.     esac
  118.     prev=
  119.     prevopt=
  120.     continue
  121.   fi
  122.   # Have we seen a non-optional argument yet?
  123.   case "$arg" in
  124.   --help)
  125.     show_help=yes
  126.     ;;
  127.   --version)
  128.     echo "$PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP"
  129.     exit 0
  130.     ;;
  131.   --config)
  132.     sed -e '1,/^### BEGIN LIBTOOL CONFIG/d' -e '/^### END LIBTOOL CONFIG/,$d' $0
  133.     exit 0
  134.     ;;
  135.   --debug)
  136.     echo "$progname: enabling shell trace mode"
  137.     set -x
  138.     ;;
  139.   --dry-run | -n)
  140.     run=:
  141.     ;;
  142.   --features)
  143.     echo "host: $host"
  144.     if test "$build_libtool_libs" = yes; then
  145.       echo "enable shared libraries"
  146.     else
  147.       echo "disable shared libraries"
  148.     fi
  149.     if test "$build_old_libs" = yes; then
  150.       echo "enable static libraries"
  151.     else
  152.       echo "disable static libraries"
  153.     fi
  154.     exit 0
  155.     ;;
  156.   --finish) mode="finish" ;;
  157.   --mode) prevopt="--mode" prev=mode ;;
  158.   --mode=*) mode="$optarg" ;;
  159.   --quiet | --silent)
  160.     show=:
  161.     ;;
  162.   -dlopen)
  163.     prevopt="-dlopen"
  164.     prev=execute_dlfiles
  165.     ;;
  166.   -*)
  167.     $echo "$modename: unrecognized option `$arg'" 1>&2
  168.     $echo "$help" 1>&2
  169.     exit 1
  170.     ;;
  171.   *)
  172.     nonopt="$arg"
  173.     break
  174.     ;;
  175.   esac
  176. done
  177. if test -n "$prevopt"; then
  178.   $echo "$modename: option `$prevopt' requires an argument" 1>&2
  179.   $echo "$help" 1>&2
  180.   exit 1
  181. fi
  182. if test -z "$show_help"; then
  183.   # Infer the operation mode.
  184.   if test -z "$mode"; then
  185.     case "$nonopt" in
  186.     *cc | *++ | gcc* | *-gcc*)
  187.       mode=link
  188.       for arg
  189.       do
  190. case "$arg" in
  191. -c)
  192.    mode=compile
  193.    break
  194.    ;;
  195. esac
  196.       done
  197.       ;;
  198.     *db | *dbx | *strace | *truss)
  199.       mode=execute
  200.       ;;
  201.     *install*|cp|mv)
  202.       mode=install
  203.       ;;
  204.     *rm)
  205.       mode=uninstall
  206.       ;;
  207.     *)
  208.       # If we have no mode, but dlfiles were specified, then do execute mode.
  209.       test -n "$execute_dlfiles" && mode=execute
  210.       # Just use the default operation mode.
  211.       if test -z "$mode"; then
  212. if test -n "$nonopt"; then
  213.   $echo "$modename: warning: cannot infer operation mode from `$nonopt'" 1>&2
  214. else
  215.   $echo "$modename: warning: cannot infer operation mode without MODE-ARGS" 1>&2
  216. fi
  217.       fi
  218.       ;;
  219.     esac
  220.   fi
  221.   # Only execute mode is allowed to have -dlopen flags.
  222.   if test -n "$execute_dlfiles" && test "$mode" != execute; then
  223.     $echo "$modename: unrecognized option `-dlopen'" 1>&2
  224.     $echo "$help" 1>&2
  225.     exit 1
  226.   fi
  227.   # Change the help message to a mode-specific one.
  228.   generic_help="$help"
  229.   help="Try `$modename --help --mode=$mode' for more information."
  230.   # These modes are in order of execution frequency so that they run quickly.
  231.   case "$mode" in
  232.   # libtool compile mode
  233.   compile)
  234.     modename="$modename: compile"
  235.     # Get the compilation command and the source file.
  236.     base_compile=
  237.     lastarg=
  238.     srcfile="$nonopt"
  239.     suppress_output=
  240.     user_target=no
  241.     for arg
  242.     do
  243.       # Accept any command-line options.
  244.       case "$arg" in
  245.       -o)
  246. if test "$user_target" != "no"; then
  247.   $echo "$modename: you cannot specify `-o' more than once" 1>&2
  248.   exit 1
  249. fi
  250. user_target=next
  251. ;;
  252.       -static)
  253. build_old_libs=yes
  254. continue
  255. ;;
  256.       esac
  257.       case "$user_target" in
  258.       next)
  259. # The next one is the -o target name
  260. user_target=yes
  261. continue
  262. ;;
  263.       yes)
  264. # We got the output file
  265. user_target=set
  266. libobj="$arg"
  267. continue
  268. ;;
  269.       esac
  270.       # Accept the current argument as the source file.
  271.       lastarg="$srcfile"
  272.       srcfile="$arg"
  273.       # Aesthetically quote the previous argument.
  274.       # Backslashify any backslashes, double quotes, and dollar signs.
  275.       # These are the only characters that are still specially
  276.       # interpreted inside of double-quoted scrings.
  277.       lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"`
  278.       # Double-quote args containing other shell metacharacters.
  279.       # Many Bourne shells cannot handle close brackets correctly in scan
  280.       # sets, so we specify it separately.
  281.       case "$lastarg" in
  282.       *[[~#^&*(){}|;<>?'  ]*|*]*)
  283. lastarg=""$lastarg""
  284. ;;
  285.       esac
  286.       # Add the previous argument to base_compile.
  287.       if test -z "$base_compile"; then
  288. base_compile="$lastarg"
  289.       else
  290. base_compile="$base_compile $lastarg"
  291.       fi
  292.     done
  293.     case "$user_target" in
  294.     set)
  295.       ;;
  296.     no)
  297.       # Get the name of the library object.
  298.       libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'`
  299.       ;;
  300.     *)
  301.       $echo "$modename: you must specify a target with `-o'" 1>&2
  302.       exit 1
  303.       ;;
  304.     esac
  305.     # Recognize several different file suffixes.
  306.     # If the user specifies -o file.o, it is replaced with file.lo
  307.     xform='[cCFSfmso]'
  308.     case "$libobj" in
  309.     *.ada) xform=ada ;;
  310.     *.adb) xform=adb ;;
  311.     *.ads) xform=ads ;;
  312.     *.asm) xform=asm ;;
  313.     *.c++) xform=c++ ;;
  314.     *.cc) xform=cc ;;
  315.     *.cpp) xform=cpp ;;
  316.     *.cxx) xform=cxx ;;
  317.     *.f90) xform=f90 ;;
  318.     *.for) xform=for ;;
  319.     esac
  320.     libobj=`$echo "X$libobj" | $Xsed -e "s/.$xform$/.lo/"`
  321.     case "$libobj" in
  322.     *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;;
  323.     *)
  324.       $echo "$modename: cannot determine name of library object from `$libobj'" 1>&2
  325.       exit 1
  326.       ;;
  327.     esac
  328.     if test -z "$base_compile"; then
  329.       $echo "$modename: you must specify a compilation command" 1>&2
  330.       $echo "$help" 1>&2
  331.       exit 1
  332.     fi
  333.     # Delete any leftover library objects.
  334.     if test "$build_old_libs" = yes; then
  335.       removelist="$obj $libobj"
  336.     else
  337.       removelist="$libobj"
  338.     fi
  339.     $run $rm $removelist
  340.     trap "$run $rm $removelist; exit 1" 1 2 15
  341.     # Calculate the filename of the output object if compiler does
  342.     # not support -o with -c
  343.     if test "$compiler_c_o" = no; then
  344.       output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%..*$%%'`.${objext}
  345.       lockfile="$output_obj.lock"
  346.       removelist="$removelist $output_obj $lockfile"
  347.       trap "$run $rm $removelist; exit 1" 1 2 15
  348.     else
  349.       need_locks=no
  350.       lockfile=
  351.     fi
  352.     # Lock this critical section if it is needed
  353.     # We use this script file to make the link, it avoids creating a new file
  354.     if test "$need_locks" = yes; then
  355.       until ln "$0" "$lockfile" 2>/dev/null; do
  356. $show "Waiting for $lockfile to be removed"
  357. sleep 2
  358.       done
  359.     elif test "$need_locks" = warn; then
  360.       if test -f "$lockfile"; then
  361. echo "
  362. *** ERROR, $lockfile exists and contains:
  363. `cat $lockfile 2>/dev/null`
  364. This indicates that another process is trying to use the same
  365. temporary object file, and libtool could not work around it because
  366. your compiler does not support `-c' and `-o' together.  If you
  367. repeat this compilation, it may succeed, by chance, but you had better
  368. avoid parallel builds (make -j) in this platform, or get a better
  369. compiler."
  370. $run $rm $removelist
  371. exit 1
  372.       fi
  373.       echo $srcfile > "$lockfile"
  374.     fi
  375.     if test -n "$fix_srcfile_path"; then
  376.       eval srcfile="$fix_srcfile_path"
  377.     fi
  378.     # Only build a PIC object if we are building libtool libraries.
  379.     if test "$build_libtool_libs" = yes; then
  380.       # Without this assignment, base_compile gets emptied.
  381.       fbsd_hideous_sh_bug=$base_compile
  382.       # All platforms use -DPIC, to notify preprocessed assembler code.
  383.       command="$base_compile $srcfile $pic_flag -DPIC"
  384.       if test "$build_old_libs" = yes; then
  385. lo_libobj="$libobj"
  386. dir=`$echo "X$libobj" | $Xsed -e 's%/[^/]*$%%'`
  387. if test "X$dir" = "X$libobj"; then
  388.   dir="$objdir"
  389. else
  390.   dir="$dir/$objdir"
  391. fi
  392. libobj="$dir/"`$echo "X$libobj" | $Xsed -e 's%^.*/%%'`
  393. if test -d "$dir"; then
  394.   $show "$rm $libobj"
  395.   $run $rm $libobj
  396. else
  397.   $show "$mkdir $dir"
  398.   $run $mkdir $dir
  399.   status=$?
  400.   if test $status -ne 0 && test ! -d $dir; then
  401.     exit $status
  402.   fi
  403. fi
  404.       fi
  405.       if test "$compiler_o_lo" = yes; then
  406. output_obj="$libobj"
  407. command="$command -o $output_obj"
  408.       elif test "$compiler_c_o" = yes; then
  409. output_obj="$obj"
  410. command="$command -o $output_obj"
  411.       fi
  412.       $run $rm "$output_obj"
  413.       $show "$command"
  414.       if $run eval "$command"; then :
  415.       else
  416. test -n "$output_obj" && $run $rm $removelist
  417. exit 1
  418.       fi
  419.       if test "$need_locks" = warn &&
  420.  test x"`cat $lockfile 2>/dev/null`" != x"$srcfile"; then
  421. echo "
  422. *** ERROR, $lockfile contains:
  423. `cat $lockfile 2>/dev/null`
  424. but it should contain:
  425. $srcfile
  426. This indicates that another process is trying to use the same
  427. temporary object file, and libtool could not work around it because
  428. your compiler does not support `-c' and `-o' together.  If you
  429. repeat this compilation, it may succeed, by chance, but you had better
  430. avoid parallel builds (make -j) in this platform, or get a better
  431. compiler."
  432. $run $rm $removelist
  433. exit 1
  434.       fi
  435.       # Just move the object if needed, then go on to compile the next one
  436.       if test x"$output_obj" != x"$libobj"; then
  437. $show "$mv $output_obj $libobj"
  438. if $run $mv $output_obj $libobj; then :
  439. else
  440.   error=$?
  441.   $run $rm $removelist
  442.   exit $error
  443. fi
  444.       fi
  445.       # If we have no pic_flag, then copy the object into place and finish.
  446.       if test -z "$pic_flag" && test "$build_old_libs" = yes; then
  447. # Rename the .lo from within objdir to obj
  448. if test -f $obj; then
  449.   $show $rm $obj
  450.   $run $rm $obj
  451. fi
  452. $show "$mv $libobj $obj"
  453. if $run $mv $libobj $obj; then :
  454. else
  455.   error=$?
  456.   $run $rm $removelist
  457.   exit $error
  458. fi
  459. xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`
  460. if test "X$xdir" = "X$obj"; then
  461.   xdir="."
  462. else
  463.   xdir="$xdir"
  464. fi
  465. baseobj=`$echo "X$obj" | $Xsed -e "s%.*/%%"`
  466. libobj=`$echo "X$baseobj" | $Xsed -e "$o2lo"`
  467. # Now arrange that obj and lo_libobj become the same file
  468. $show "(cd $xdir && $LN_S $baseobj $libobj)"
  469. if $run eval '(cd $xdir && $LN_S $baseobj $libobj)'; then
  470.   exit 0
  471. else
  472.   error=$?
  473.   $run $rm $removelist
  474.   exit $error
  475. fi
  476.       fi
  477.       # Allow error messages only from the first compilation.
  478.       suppress_output=' >/dev/null 2>&1'
  479.     fi
  480.     # Only build a position-dependent object if we build old libraries.
  481.     if test "$build_old_libs" = yes; then
  482.       command="$base_compile $srcfile"
  483.       if test "$compiler_c_o" = yes; then
  484. command="$command -o $obj"
  485. output_obj="$obj"
  486.       fi
  487.       # Suppress compiler output if we already did a PIC compilation.
  488.       command="$command$suppress_output"
  489.       $run $rm "$output_obj"
  490.       $show "$command"
  491.       if $run eval "$command"; then :
  492.       else
  493. $run $rm $removelist
  494. exit 1
  495.       fi
  496.       if test "$need_locks" = warn &&
  497.  test x"`cat $lockfile 2>/dev/null`" != x"$srcfile"; then
  498. echo "
  499. *** ERROR, $lockfile contains:
  500. `cat $lockfile 2>/dev/null`
  501. but it should contain:
  502. $srcfile
  503. This indicates that another process is trying to use the same
  504. temporary object file, and libtool could not work around it because
  505. your compiler does not support `-c' and `-o' together.  If you
  506. repeat this compilation, it may succeed, by chance, but you had better
  507. avoid parallel builds (make -j) in this platform, or get a better
  508. compiler."
  509. $run $rm $removelist
  510. exit 1
  511.       fi
  512.       # Just move the object if needed
  513.       if test x"$output_obj" != x"$obj"; then
  514. $show "$mv $output_obj $obj"
  515. if $run $mv $output_obj $obj; then :
  516. else
  517.   error=$?
  518.   $run $rm $removelist
  519.   exit $error
  520. fi
  521.       fi
  522.       # Create an invalid libtool object if no PIC, so that we do not
  523.       # accidentally link it into a program.
  524.       if test "$build_libtool_libs" != yes; then
  525. $show "echo timestamp > $libobj"
  526. $run eval "echo timestamp > $libobj" || exit $?
  527.       else
  528. # Move the .lo from within objdir
  529. $show "$mv $libobj $lo_libobj"
  530. if $run $mv $libobj $lo_libobj; then :
  531. else
  532.   error=$?
  533.   $run $rm $removelist
  534.   exit $error
  535. fi
  536.       fi
  537.     fi
  538.     # Unlock the critical section if it was locked
  539.     if test "$need_locks" != no; then
  540.       $rm "$lockfile"
  541.     fi
  542.     exit 0
  543.     ;;
  544.   # libtool link mode
  545.   link)
  546.     modename="$modename: link"
  547.     case "$host" in
  548.     *-*-cygwin* | *-*-mingw* | *-*-os2*)
  549.       # It is impossible to link a dll without this setting, and
  550.       # we shouldn't force the makefile maintainer to figure out
  551.       # which system we are compiling for in order to pass an extra
  552.       # flag for every libtool invokation.
  553.       # allow_undefined=no
  554.       # FIXME: Unfortunately, there are problems with the above when trying
  555.       # to make a dll which has undefined symbols, in which case not
  556.       # even a static library is built.  For now, we need to specify
  557.       # -no-undefined on the libtool link line when we can be certain
  558.       # that all symbols are satisfied, otherwise we get a static library.
  559.       allow_undefined=yes
  560.       # This is a source program that is used to create dlls on Windows
  561.       # Don't remove nor modify the starting and closing comments
  562. # /* ltdll.c starts here */
  563. # #define WIN32_LEAN_AND_MEAN
  564. # #include <windows.h>
  565. # #undef WIN32_LEAN_AND_MEAN
  566. # #include <stdio.h>
  567. #
  568. # #ifndef __CYGWIN__
  569. # #  ifdef __CYGWIN32__
  570. # #    define __CYGWIN__ __CYGWIN32__
  571. # #  endif
  572. # #endif
  573. #
  574. # #ifdef __cplusplus
  575. # extern "C" {
  576. # #endif
  577. # BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved);
  578. # #ifdef __cplusplus
  579. # }
  580. # #endif
  581. #
  582. # #ifdef __CYGWIN__
  583. # #include <cygwin/cygwin_dll.h>
  584. # DECLARE_CYGWIN_DLL( DllMain );
  585. # #endif
  586. # HINSTANCE __hDllInstance_base;
  587. #
  588. # BOOL APIENTRY
  589. # DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved)
  590. # {
  591. #   __hDllInstance_base = hInst;
  592. #   return TRUE;
  593. # }
  594. # /* ltdll.c ends here */
  595.       # This is a source program that is used to create import libraries
  596.       # on Windows for dlls which lack them. Don't remove nor modify the
  597.       # starting and closing comments
  598. # /* impgen.c starts here */
  599. # /*   Copyright (C) 1999 Free Software Foundation, Inc.
  600. #  This file is part of GNU libtool.
  601. #  This program is free software; you can redistribute it and/or modify
  602. #  it under the terms of the GNU General Public License as published by
  603. #  the Free Software Foundation; either version 2 of the License, or
  604. #  (at your option) any later version.
  605. #  This program is distributed in the hope that it will be useful,
  606. #  but WITHOUT ANY WARRANTY; without even the implied warranty of
  607. #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  608. #  GNU General Public License for more details.
  609. #  You should have received a copy of the GNU General Public License
  610. #  along with this program; if not, write to the Free Software
  611. #  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  612. #  */
  613. #  #include <stdio.h> /* for printf() */
  614. #  #include <unistd.h> /* for open(), lseek(), read() */
  615. #  #include <fcntl.h> /* for O_RDONLY, O_BINARY */
  616. #  #include <string.h> /* for strdup() */
  617. #  static unsigned int
  618. #  pe_get16 (fd, offset)
  619. #       int fd;
  620. #       int offset;
  621. #  {
  622. #    unsigned char b[2];
  623. #    lseek (fd, offset, SEEK_SET);
  624. #    read (fd, b, 2);
  625. #    return b[0] + (b[1]<<8);
  626. #  }
  627. #  static unsigned int
  628. #  pe_get32 (fd, offset)
  629. #      int fd;
  630. #      int offset;
  631. #  {
  632. #    unsigned char b[4];
  633. #    lseek (fd, offset, SEEK_SET);
  634. #    read (fd, b, 4);
  635. #    return b[0] + (b[1]<<8) + (b[2]<<16) + (b[3]<<24);
  636. #  }
  637. #  static unsigned int
  638. #  pe_as32 (ptr)
  639. #       void *ptr;
  640. #  {
  641. #    unsigned char *b = ptr;
  642. #    return b[0] + (b[1]<<8) + (b[2]<<16) + (b[3]<<24);
  643. #  }
  644. #  int
  645. #  main (argc, argv)
  646. #      int argc;
  647. #      char *argv[];
  648. #  {
  649. #      int dll;
  650. #      unsigned long pe_header_offset, opthdr_ofs, num_entries, i;
  651. #      unsigned long export_rva, export_size, nsections, secptr, expptr;
  652. #      unsigned long name_rvas, nexp;
  653. #      unsigned char *expdata, *erva;
  654. #      char *filename, *dll_name;
  655. #      filename = argv[1];
  656. #      dll = open(filename, O_RDONLY|O_BINARY);
  657. #      if (!dll)
  658. #   return 1;
  659. #      dll_name = filename;
  660. #    
  661. #      for (i=0; filename[i]; i++)
  662. #   if (filename[i] == '/' || filename[i] == '\'  || filename[i] == ':')
  663. #       dll_name = filename + i +1;
  664. #      pe_header_offset = pe_get32 (dll, 0x3c);
  665. #      opthdr_ofs = pe_header_offset + 4 + 20;
  666. #      num_entries = pe_get32 (dll, opthdr_ofs + 92);
  667. #      if (num_entries < 1) /* no exports */
  668. #   return 1;
  669. #      export_rva = pe_get32 (dll, opthdr_ofs + 96);
  670. #      export_size = pe_get32 (dll, opthdr_ofs + 100);
  671. #      nsections = pe_get16 (dll, pe_header_offset + 4 +2);
  672. #      secptr = (pe_header_offset + 4 + 20 +
  673. #         pe_get16 (dll, pe_header_offset + 4 + 16));
  674. #      expptr = 0;
  675. #      for (i = 0; i < nsections; i++)
  676. #      {
  677. #   char sname[8];
  678. #   unsigned long secptr1 = secptr + 40 * i;
  679. #   unsigned long vaddr = pe_get32 (dll, secptr1 + 12);
  680. #   unsigned long vsize = pe_get32 (dll, secptr1 + 16);
  681. #   unsigned long fptr = pe_get32 (dll, secptr1 + 20);
  682. #   lseek(dll, secptr1, SEEK_SET);
  683. #   read(dll, sname, 8);
  684. #   if (vaddr <= export_rva && vaddr+vsize > export_rva)
  685. #   {
  686. #       expptr = fptr + (export_rva - vaddr);
  687. #       if (export_rva + export_size > vaddr + vsize)
  688. #   export_size = vsize - (export_rva - vaddr);
  689. #       break;
  690. #   }
  691. #      }
  692. #      expdata = (unsigned char*)malloc(export_size);
  693. #      lseek (dll, expptr, SEEK_SET);
  694. #      read (dll, expdata, export_size);
  695. #      erva = expdata - export_rva;
  696. #      nexp = pe_as32 (expdata+24);
  697. #      name_rvas = pe_as32 (expdata+32);
  698. #      printf ("EXPORTSn");
  699. #      for (i = 0; i<nexp; i++)
  700. #      {
  701. #   unsigned long name_rva = pe_as32 (erva+name_rvas+i*4);
  702. #   printf ("t%s @ %ld ;n", erva+name_rva, 1+ i);
  703. #      }
  704. #      return 0;
  705. #  }
  706. # /* impgen.c ends here */
  707.       ;;
  708.     *)
  709.       allow_undefined=yes
  710.       ;;
  711.     esac
  712.     compile_command="$nonopt"
  713.     finalize_command="$nonopt"
  714.     compile_rpath=
  715.     finalize_rpath=
  716.     compile_shlibpath=
  717.     finalize_shlibpath=
  718.     convenience=
  719.     old_convenience=
  720.     deplibs=
  721.     linkopts=
  722.     if test -n "$shlibpath_var"; then
  723.       # get the directories listed in $shlibpath_var
  724.       eval lib_search_path=`$echo "X ${$shlibpath_var}" | $Xsed -e 's/:/ /g'`
  725.     else
  726.       lib_search_path=
  727.     fi
  728.     # now prepend the system-specific ones
  729.     eval lib_search_path="$sys_lib_search_path_spec$lib_search_path"
  730.     eval sys_lib_dlsearch_path="$sys_lib_dlsearch_path_spec"
  731.     
  732.     avoid_version=no
  733.     dlfiles=
  734.     dlprefiles=
  735.     dlself=no
  736.     export_dynamic=no
  737.     export_symbols=
  738.     export_symbols_regex=
  739.     generated=
  740.     libobjs=
  741.     link_against_libtool_libs=
  742.     ltlibs=
  743.     module=no
  744.     objs=
  745.     prefer_static_libs=no
  746.     preload=no
  747.     prev=
  748.     prevarg=
  749.     release=
  750.     rpath=
  751.     xrpath=
  752.     perm_rpath=
  753.     temp_rpath=
  754.     thread_safe=no
  755.     vinfo=
  756.     # We need to know -static, to get the right output filenames.
  757.     for arg
  758.     do
  759.       case "$arg" in
  760.       -all-static | -static)
  761. if test "X$arg" = "X-all-static"; then
  762.   if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then
  763.     $echo "$modename: warning: complete static linking is impossible in this configuration" 1>&2
  764.   fi
  765.   if test -n "$link_static_flag"; then
  766.     dlopen_self=$dlopen_self_static
  767.   fi
  768. else
  769.   if test -z "$pic_flag" && test -n "$link_static_flag"; then
  770.     dlopen_self=$dlopen_self_static
  771.   fi
  772. fi
  773. build_libtool_libs=no
  774. build_old_libs=yes
  775. prefer_static_libs=yes
  776. break
  777. ;;
  778.       esac
  779.     done
  780.     # See if our shared archives depend on static archives.
  781.     test -n "$old_archive_from_new_cmds" && build_old_libs=yes
  782.     # Go through the arguments, transforming them on the way.
  783.     while test $# -gt 0; do
  784.       arg="$1"
  785.       shift
  786.       # If the previous option needs an argument, assign it.
  787.       if test -n "$prev"; then
  788. case "$prev" in
  789. output)
  790.   compile_command="$compile_command @OUTPUT@"
  791.   finalize_command="$finalize_command @OUTPUT@"
  792.   ;;
  793. esac
  794. case "$prev" in
  795. dlfiles|dlprefiles)
  796.   if test "$preload" = no; then
  797.     # Add the symbol object into the linking commands.
  798.     compile_command="$compile_command @SYMFILE@"
  799.     finalize_command="$finalize_command @SYMFILE@"
  800.     preload=yes
  801.   fi
  802.   case "$arg" in
  803.   *.la | *.lo) ;;  # We handle these cases below.
  804.   force)
  805.     if test "$dlself" = no; then
  806.       dlself=needless
  807.       export_dynamic=yes
  808.     fi
  809.     prev=
  810.     continue
  811.     ;;
  812.   self)
  813.     if test "$prev" = dlprefiles; then
  814.       dlself=yes
  815.     elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then
  816.       dlself=yes
  817.     else
  818.       dlself=needless
  819.       export_dynamic=yes
  820.     fi
  821.     prev=
  822.     continue
  823.     ;;
  824.   *)
  825.     if test "$prev" = dlfiles; then
  826.       dlfiles="$dlfiles $arg"
  827.     else
  828.       dlprefiles="$dlprefiles $arg"
  829.     fi
  830.     prev=
  831.     ;;
  832.   esac
  833.   ;;
  834. expsyms)
  835.   export_symbols="$arg"
  836.   if test ! -f "$arg"; then
  837.     $echo "$modename: symbol file `$arg' does not exist"
  838.     exit 1
  839.   fi
  840.   prev=
  841.   continue
  842.   ;;
  843. expsyms_regex)
  844.   export_symbols_regex="$arg"
  845.   prev=
  846.   continue
  847.   ;;
  848. release)
  849.   release="-$arg"
  850.   prev=
  851.   continue
  852.   ;;
  853. rpath | xrpath)
  854.   # We need an absolute path.
  855.   case "$arg" in
  856.   [\/]* | [A-Za-z]:[\/]*) ;;
  857.   *)
  858.     $echo "$modename: only absolute run-paths are allowed" 1>&2
  859.     exit 1
  860.     ;;
  861.   esac
  862.   if test "$prev" = rpath; then
  863.     case "$rpath " in
  864.     *" $arg "*) ;;
  865.     *) rpath="$rpath $arg" ;;
  866.     esac
  867.   else
  868.     case "$xrpath " in
  869.     *" $arg "*) ;;
  870.     *) xrpath="$xrpath $arg" ;;
  871.     esac
  872.   fi
  873.   prev=
  874.   continue
  875.   ;;
  876. *)
  877.   eval "$prev="$arg""
  878.   prev=
  879.   continue
  880.   ;;
  881. esac
  882.       fi
  883.       prevarg="$arg"
  884.       case "$arg" in
  885.       -all-static)
  886. if test -n "$link_static_flag"; then
  887.   compile_command="$compile_command $link_static_flag"
  888.   finalize_command="$finalize_command $link_static_flag"
  889. fi
  890. continue
  891. ;;
  892.       -allow-undefined)
  893. # FIXME: remove this flag sometime in the future.
  894. $echo "$modename: `-allow-undefined' is deprecated because it is the default" 1>&2
  895. continue
  896. ;;
  897.       -avoid-version)
  898. avoid_version=yes
  899. continue
  900. ;;
  901.       -dlopen)
  902. prev=dlfiles
  903. continue
  904. ;;
  905.       -dlpreopen)
  906. prev=dlprefiles
  907. continue
  908. ;;
  909.       -export-dynamic)
  910. export_dynamic=yes
  911. continue
  912. ;;
  913.       -export-symbols | -export-symbols-regex)
  914. if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
  915.   $echo "$modename: not more than one -exported-symbols argument allowed"
  916.   exit 1
  917. fi
  918. if test "X$arg" = "X-export-symbols"; then
  919.   prev=expsyms
  920. else
  921.   prev=expsyms_regex
  922. fi
  923. continue
  924. ;;
  925.       -L*)
  926. dir=`$echo "X$arg" | $Xsed -e 's/^-L//'`
  927. # We need an absolute path.
  928. case "$dir" in
  929. [\/]* | [A-Za-z]:[\/]*) ;;
  930. *)
  931.   absdir=`cd "$dir" && pwd`
  932.   if test -z "$absdir"; then
  933.     $echo "$modename: warning: cannot determine absolute directory name of `$dir'" 1>&2
  934.     $echo "$modename: passing it literally to the linker, although it might fail" 1>&2
  935.     absdir="$dir"
  936.   fi
  937.   dir="$absdir"
  938.   ;;
  939. esac
  940. case " $deplibs " in
  941. *" $arg "*) ;;
  942. *) deplibs="$deplibs $arg";;
  943. esac
  944. case " $lib_search_path " in
  945. *" $dir "*) ;;
  946. *) lib_search_path="$lib_search_path $dir";;
  947. esac
  948. case "$host" in
  949. *-*-cygwin* | *-*-mingw* | *-*-os2*)
  950.   dllsearchdir=`cd "$dir" && pwd || echo "$dir"`
  951.   case ":$dllsearchpath:" in
  952.   ::) dllsearchpath="$dllsearchdir";;
  953.   *":$dllsearchdir:"*) ;;
  954.   *) dllsearchpath="$dllsearchpath:$dllsearchdir";;
  955.   esac
  956.   ;;
  957. esac
  958. ;;
  959.       -l*)
  960. if test "$arg" = "-lc"; then
  961.   case "$host" in
  962.   *-*-cygwin* | *-*-mingw* | *-*-os2* | *-*-beos*)
  963.     # These systems don't actually have c library (as such)
  964.     continue
  965.     ;;
  966.   esac
  967. elif test "$arg" = "-lm"; then
  968.   case "$host" in
  969.   *-*-cygwin* | *-*-beos*)
  970.     # These systems don't actually have math library (as such)
  971.     continue
  972.     ;;
  973.   esac
  974. fi
  975. deplibs="$deplibs $arg"
  976. ;;
  977.       -module)
  978. module=yes
  979. continue
  980. ;;
  981.       -no-undefined)
  982. allow_undefined=no
  983. continue
  984. ;;
  985.       -o) prev=output ;;
  986.       -release)
  987. prev=release
  988. continue
  989. ;;
  990.       -rpath)
  991. prev=rpath
  992. continue
  993. ;;
  994.       -R)
  995. prev=xrpath
  996. continue
  997. ;;
  998.       -R*)
  999. dir=`$echo "X$arg" | $Xsed -e 's/^-R//'`
  1000. # We need an absolute path.
  1001. case "$dir" in
  1002. [\/]* | [A-Za-z]:[\/]*) ;;
  1003. *)
  1004.   $echo "$modename: only absolute run-paths are allowed" 1>&2
  1005.   exit 1
  1006.   ;;
  1007. esac
  1008. case "$xrpath " in
  1009. *" $dir "*) ;;
  1010. *) xrpath="$xrpath $dir" ;;
  1011. esac
  1012. continue
  1013. ;;
  1014.       -static)
  1015. # If we have no pic_flag, then this is the same as -all-static.
  1016. if test -z "$pic_flag" && test -n "$link_static_flag"; then
  1017.   compile_command="$compile_command $link_static_flag"
  1018.   finalize_command="$finalize_command $link_static_flag"
  1019. fi
  1020. continue
  1021. ;;
  1022.       -thread-safe)
  1023. thread_safe=yes
  1024. continue
  1025. ;;
  1026.       -version-info)
  1027. prev=vinfo
  1028. continue
  1029. ;;
  1030.       # Some other compiler flag.
  1031.       -* | +*)
  1032. # Unknown arguments in both finalize_command and compile_command need
  1033. # to be aesthetically quoted because they are evaled later.
  1034. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
  1035. case "$arg" in
  1036. *[[~#^&*(){}|;<>?'  ]*|*]*)
  1037.   arg=""$arg""
  1038.   ;;
  1039. esac
  1040. ;;
  1041.       *.o | *.obj | *.a | *.lib)
  1042. # A standard object.
  1043. objs="$objs $arg"
  1044. ;;
  1045.       *.lo)
  1046. # A library object.
  1047. if test "$prev" = dlfiles; then
  1048.   dlfiles="$dlfiles $arg"
  1049.   if test "$build_libtool_libs" = yes && test "$dlopen" = yes; then
  1050.     prev=
  1051.     continue
  1052.   else
  1053.     # If libtool objects are unsupported, then we need to preload.
  1054.     prev=dlprefiles
  1055.   fi
  1056. fi
  1057. if test "$prev" = dlprefiles; then
  1058.   # Preload the old-style object.
  1059.   dlprefiles="$dlprefiles "`$echo "X$arg" | $Xsed -e "$lo2o"`
  1060.   prev=
  1061. fi
  1062. libobjs="$libobjs $arg"
  1063. ;;
  1064.       *.la)
  1065. # A libtool-controlled library.
  1066. dlname=
  1067. libdir=
  1068. library_names=
  1069. old_library=
  1070. # Check to see that this really is a libtool archive.
  1071. if (sed -e '2q' $arg | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
  1072. else
  1073.   $echo "$modename: `$arg' is not a valid libtool archive" 1>&2
  1074.   exit 1
  1075. fi
  1076. # If the library was installed with an old release of libtool,
  1077. # it will not redefine variable installed.
  1078. installed=yes
  1079. # Read the .la file
  1080. # If there is no directory component, then add one.
  1081. case "$arg" in
  1082. */* | *\*) . $arg ;;
  1083. *) . ./$arg ;;
  1084. esac
  1085. # Get the name of the library we link against.
  1086. linklib=
  1087. for l in $old_library $library_names; do
  1088.   linklib="$l"
  1089. done
  1090. if test -z "$linklib"; then
  1091.   $echo "$modename: cannot find name of link library for `$arg'" 1>&2
  1092.   exit 1
  1093. fi
  1094. # Find the relevant object directory and library name.
  1095. name=`$echo "X$arg" | $Xsed -e 's%^.*/%%' -e 's/.la$//' -e 's/^lib//'`
  1096. if test "X$installed" = Xyes; then
  1097.   dir="$libdir"
  1098. else
  1099.   dir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
  1100.   if test "X$dir" = "X$arg"; then
  1101.     dir="$objdir"
  1102.   else
  1103.     dir="$dir/$objdir"
  1104.   fi
  1105. fi
  1106. if test -n "$dependency_libs"; then
  1107.   # Extract -R and -L from dependency_libs
  1108.   temp_deplibs=
  1109.   for deplib in $dependency_libs; do
  1110.     case "$deplib" in
  1111.     -R*) temp_xrpath=`$echo "X$deplib" | $Xsed -e 's/^-R//'`
  1112.  case " $rpath $xrpath " in
  1113.  *" $temp_xrpath "*) ;;
  1114.  *) xrpath="$xrpath $temp_xrpath";;
  1115.  esac;;
  1116.     -L*) case "$compile_command $temp_deplibs " in
  1117.  *" $deplib "*) ;;
  1118.  *) temp_deplibs="$temp_deplibs $deplib";;
  1119.  esac
  1120.  temp_dir=`$echo "X$deplib" | $Xsed -e 's/^-L//'`
  1121.  case " $lib_search_path " in
  1122.  *" $temp_dir "*) ;;
  1123.  *) lib_search_path="$lib_search_path $temp_dir";;
  1124.  esac
  1125.  ;;
  1126.     *) temp_deplibs="$temp_deplibs $deplib";;
  1127.     esac
  1128.   done
  1129.   dependency_libs="$temp_deplibs"
  1130. fi
  1131. if test -z "$libdir"; then
  1132.   # It is a libtool convenience library, so add in its objects.
  1133.   convenience="$convenience $dir/$old_library"
  1134.   old_convenience="$old_convenience $dir/$old_library"
  1135.   deplibs="$deplibs$dependency_libs"
  1136.   compile_command="$compile_command $dir/$old_library$dependency_libs"
  1137.   finalize_command="$finalize_command $dir/$old_library$dependency_libs"
  1138.   continue
  1139. fi
  1140. # This library was specified with -dlopen.
  1141. if test "$prev" = dlfiles; then
  1142.   dlfiles="$dlfiles $arg"
  1143.   if test -z "$dlname" || test "$dlopen" != yes || test "$build_libtool_libs" = no; then
  1144.     # If there is no dlname, no dlopen support or we're linking statically,
  1145.     # we need to preload.
  1146.     prev=dlprefiles
  1147.   else
  1148.     # We should not create a dependency on this library, but we
  1149.     # may need any libraries it requires.
  1150.     compile_command="$compile_command$dependency_libs"
  1151.     finalize_command="$finalize_command$dependency_libs"
  1152.     prev=
  1153.     continue
  1154.   fi
  1155. fi
  1156. # The library was specified with -dlpreopen.
  1157. if test "$prev" = dlprefiles; then
  1158.   # Prefer using a static library (so that no silly _DYNAMIC symbols
  1159.   # are required to link).
  1160.   if test -n "$old_library"; then
  1161.     dlprefiles="$dlprefiles $dir/$old_library"
  1162.   else
  1163.     dlprefiles="$dlprefiles $dir/$linklib"
  1164.   fi
  1165.   prev=
  1166. fi
  1167. if test -n "$library_names" &&
  1168.    { test "$prefer_static_libs" = no || test -z "$old_library"; }; then
  1169.   link_against_libtool_libs="$link_against_libtool_libs $arg"
  1170.   if test -n "$shlibpath_var"; then
  1171.     # Make sure the rpath contains only unique directories.
  1172.     case "$temp_rpath " in
  1173.     *" $dir "*) ;;
  1174.     *) temp_rpath="$temp_rpath $dir" ;;
  1175.     esac
  1176.   fi
  1177.   # We need an absolute path.
  1178.   case "$dir" in
  1179.   [\/] | [A-Za-z]:[\/]*) absdir="$dir" ;;
  1180.   *)
  1181.     absdir=`cd "$dir" && pwd`
  1182.     if test -z "$absdir"; then
  1183.       $echo "$modename: warning: cannot determine absolute directory name of `$dir'" 1>&2
  1184.       $echo "$modename: passing it literally to the linker, although it might fail" 1>&2
  1185.       absdir="$dir"
  1186.     fi
  1187.     ;;
  1188.   esac
  1189.   
  1190.   # This is the magic to use -rpath.
  1191.   # Skip directories that are in the system default run-time
  1192.   # search path, unless they have been requested with -R.
  1193.   case " $sys_lib_dlsearch_path " in
  1194.   *" $absdir "*) ;;
  1195.   *)
  1196.     case "$compile_rpath " in
  1197.     *" $absdir "*) ;;
  1198.     *) compile_rpath="$compile_rpath $absdir" 
  1199.     esac
  1200.     ;;
  1201.   esac
  1202.   case " $sys_lib_dlsearch_path " in
  1203.   *" $libdir "*) ;;
  1204.   *)
  1205.     case "$finalize_rpath " in
  1206.     *" $libdir "*) ;;
  1207.     *) finalize_rpath="$finalize_rpath $libdir"
  1208.     esac
  1209.     ;;
  1210.   esac
  1211.   lib_linked=yes
  1212.   case "$hardcode_action" in
  1213.   immediate | unsupported)
  1214.     if test "$hardcode_direct" = no; then
  1215.       compile_command="$compile_command $dir/$linklib"
  1216.       deplibs="$deplibs $dir/$linklib"
  1217.       case "$host" in
  1218.       *-*-cygwin* | *-*-mingw* | *-*-os2*)
  1219. dllsearchdir=`cd "$dir" && pwd || echo "$dir"`
  1220. if test -n "$dllsearchpath"; then
  1221.   dllsearchpath="$dllsearchpath:$dllsearchdir"
  1222. else
  1223.   dllsearchpath="$dllsearchdir"
  1224. fi
  1225. ;;
  1226.       esac
  1227.     elif test "$hardcode_minus_L" = no; then
  1228.       case "$host" in
  1229.       *-*-sunos*)
  1230. compile_shlibpath="$compile_shlibpath$dir:"
  1231. ;;
  1232.       esac
  1233.       case "$compile_command " in
  1234.       *" -L$dir "*) ;;
  1235.       *) compile_command="$compile_command -L$dir";;
  1236.       esac
  1237.       compile_command="$compile_command -l$name"
  1238.       deplibs="$deplibs -L$dir -l$name"
  1239.     elif test "$hardcode_shlibpath_var" = no; then
  1240.       case ":$compile_shlibpath:" in
  1241.       *":$dir:"*) ;;
  1242.       *) compile_shlibpath="$compile_shlibpath$dir:";;
  1243.       esac
  1244.       compile_command="$compile_command -l$name"
  1245.       deplibs="$deplibs -l$name"
  1246.     else
  1247.       lib_linked=no
  1248.     fi
  1249.     ;;
  1250.   relink)
  1251.     if test "$hardcode_direct" = yes; then
  1252.       compile_command="$compile_command $absdir/$linklib"
  1253.       deplibs="$deplibs $absdir/$linklib"
  1254.     elif test "$hardcode_minus_L" = yes; then
  1255.       case "$compile_command " in
  1256.       *" -L$absdir "*) ;;
  1257.       *) compile_command="$compile_command -L$absdir";;
  1258.       esac
  1259.       compile_command="$compile_command -l$name"
  1260.       deplibs="$deplibs -L$absdir -l$name"
  1261.     elif test "$hardcode_shlibpath_var" = yes; then
  1262.       case ":$compile_shlibpath:" in
  1263.       *":$absdir:"*) ;;
  1264.       *) compile_shlibpath="$compile_shlibpath$absdir:";;
  1265.       esac
  1266.       compile_command="$compile_command -l$name"
  1267.       deplibs="$deplibs -l$name"
  1268.     else
  1269.       lib_linked=no
  1270.     fi
  1271.     ;;
  1272.   *)
  1273.     lib_linked=no
  1274.     ;;
  1275.   esac
  1276.   if test "$lib_linked" != yes; then
  1277.     $echo "$modename: configuration error: unsupported hardcode properties"
  1278.     exit 1
  1279.   fi
  1280.   # Finalize command for both is simple: just hardcode it.
  1281.   if test "$hardcode_direct" = yes; then
  1282.     finalize_command="$finalize_command $libdir/$linklib"
  1283.   elif test "$hardcode_minus_L" = yes; then
  1284.     case "$finalize_command " in
  1285.     *" -L$libdir "*) ;;
  1286.     *) finalize_command="$finalize_command -L$libdir";;
  1287.     esac
  1288.     finalize_command="$finalize_command -l$name"
  1289.   elif test "$hardcode_shlibpath_var" = yes; then
  1290.     case ":$finalize_shlibpath:" in
  1291.     *":$libdir:"*) ;;
  1292.     *) finalize_shlibpath="$finalize_shlibpath$libdir:";;
  1293.     esac
  1294.     finalize_command="$finalize_command -l$name"
  1295.   else
  1296.     # We cannot seem to hardcode it, guess we'll fake it.
  1297.     case "$finalize_command " in
  1298.     *" -L$dir "*) ;;
  1299.     *) finalize_command="$finalize_command -L$libdir";;
  1300.     esac
  1301.     finalize_command="$finalize_command -l$name"
  1302.   fi
  1303. else
  1304.   # Transform directly to old archives if we don't build new libraries.
  1305.   if test -n "$pic_flag" && test -z "$old_library"; then
  1306.     $echo "$modename: cannot find static library for `$arg'" 1>&2
  1307.     exit 1
  1308.   fi
  1309.   # Here we assume that one of hardcode_direct or hardcode_minus_L
  1310.   # is not unsupported.  This is valid on all known static and
  1311.   # shared platforms.
  1312.   if test "$hardcode_direct" != unsupported; then
  1313.     test -n "$old_library" && linklib="$old_library"
  1314.     compile_command="$compile_command $dir/$linklib"
  1315.     finalize_command="$finalize_command $dir/$linklib"
  1316.   else
  1317.     case "$compile_command " in
  1318.     *" -L$dir "*) ;;
  1319.     *) compile_command="$compile_command -L$dir";;
  1320.     esac
  1321.     compile_command="$compile_command -l$name"
  1322.     case "$finalize_command " in
  1323.     *" -L$dir "*) ;;
  1324.     *) finalize_command="$finalize_command -L$dir";;
  1325.     esac
  1326.     finalize_command="$finalize_command -l$name"
  1327.   fi
  1328. fi
  1329. # Add in any libraries that this one depends upon.
  1330. compile_command="$compile_command$dependency_libs"
  1331. finalize_command="$finalize_command$dependency_libs"
  1332. continue
  1333. ;;
  1334.       # Some other compiler argument.
  1335.       *)
  1336. # Unknown arguments in both finalize_command and compile_command need
  1337. # to be aesthetically quoted because they are evaled later.
  1338. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
  1339. case "$arg" in
  1340. *[[~#^&*(){}|;<>?'  ]*|*]*)
  1341.   arg=""$arg""
  1342.   ;;
  1343. esac
  1344. ;;
  1345.       esac
  1346.       # Now actually substitute the argument into the commands.
  1347.       if test -n "$arg"; then
  1348. compile_command="$compile_command $arg"
  1349. finalize_command="$finalize_command $arg"
  1350.       fi
  1351.     done
  1352.     if test -n "$prev"; then
  1353.       $echo "$modename: the `$prevarg' option requires an argument" 1>&2
  1354.       $echo "$help" 1>&2
  1355.       exit 1
  1356.     fi
  1357.     if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then
  1358.       eval arg="$export_dynamic_flag_spec"
  1359.       compile_command="$compile_command $arg"
  1360.       finalize_command="$finalize_command $arg"
  1361.     fi
  1362.     oldlibs=
  1363.     # calculate the name of the file, without its directory
  1364.     outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'`
  1365.     libobjs_save="$libobjs"
  1366.     case "$output" in
  1367.     "")
  1368.       $echo "$modename: you must specify an output file" 1>&2
  1369.       $echo "$help" 1>&2
  1370.       exit 1
  1371.       ;;
  1372.     *.a | *.lib)
  1373.       if test -n "$link_against_libtool_libs"; then
  1374. $echo "$modename: error: cannot link libtool libraries into archives" 1>&2
  1375. exit 1
  1376.       fi
  1377.       if test -n "$deplibs"; then
  1378. $echo "$modename: warning: `-l' and `-L' are ignored for archives" 1>&2
  1379.       fi
  1380.       if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
  1381. $echo "$modename: warning: `-dlopen' is ignored for archives" 1>&2
  1382.       fi
  1383.       if test -n "$rpath"; then
  1384. $echo "$modename: warning: `-rpath' is ignored for archives" 1>&2
  1385.       fi
  1386.       if test -n "$xrpath"; then
  1387. $echo "$modename: warning: `-R' is ignored for archives" 1>&2
  1388.       fi
  1389.       if test -n "$vinfo"; then
  1390. $echo "$modename: warning: `-version-info' is ignored for archives" 1>&2
  1391.       fi
  1392.       if test -n "$release"; then
  1393. $echo "$modename: warning: `-release' is ignored for archives" 1>&2
  1394.       fi
  1395.       if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
  1396. $echo "$modename: warning: `-export-symbols' is ignored for archives" 1>&2
  1397.       fi
  1398.       # Now set the variables for building old libraries.
  1399.       build_libtool_libs=no
  1400.       oldlibs="$output"
  1401.       ;;
  1402.     *.la)
  1403.       # Make sure we only generate libraries of the form `libNAME.la'.
  1404.       case "$outputname" in
  1405.       lib*)
  1406. name=`$echo "X$outputname" | $Xsed -e 's/.la$//' -e 's/^lib//'`
  1407. eval libname="$libname_spec"
  1408. ;;
  1409.       *)
  1410. if test "$module" = no; then
  1411.   $echo "$modename: libtool library `$output' must begin with `lib'" 1>&2
  1412.   $echo "$help" 1>&2
  1413.   exit 1
  1414. fi
  1415. if test "$need_lib_prefix" != no; then
  1416.   # Add the "lib" prefix for modules if required
  1417.   name=`$echo "X$outputname" | $Xsed -e 's/.la$//'`
  1418.   eval libname="$libname_spec"
  1419. else
  1420.   libname=`$echo "X$outputname" | $Xsed -e 's/.la$//'`
  1421. fi
  1422. ;;
  1423.       esac
  1424.       output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'`
  1425.       if test "X$output_objdir" = "X$output"; then
  1426. output_objdir="$objdir"
  1427.       else
  1428. output_objdir="$output_objdir/$objdir"
  1429.       fi
  1430.       if test -n "$objs"; then
  1431. $echo "$modename: cannot build libtool library `$output' from non-libtool objects:$objs" 2>&1
  1432. exit 1
  1433.       fi
  1434.       # How the heck are we supposed to write a wrapper for a shared library?
  1435.       if test -n "$link_against_libtool_libs"; then
  1436.  $echo "$modename: error: cannot link shared libraries into libtool libraries" 1>&2
  1437.  exit 1
  1438.       fi
  1439.       if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
  1440. $echo "$modename: warning: `-dlopen' is ignored for libtool libraries" 1>&2
  1441.       fi
  1442.       set dummy $rpath
  1443.       if test $# -gt 2; then
  1444. $echo "$modename: warning: ignoring multiple `-rpath's for a libtool library" 1>&2
  1445.       fi
  1446.       install_libdir="$2"
  1447.       oldlibs=
  1448.       if test -z "$rpath"; then
  1449. if test "$build_libtool_libs" = yes; then
  1450.   # Building a libtool convenience library.
  1451.   libext=al
  1452.   oldlibs="$output_objdir/$libname.$libext $oldlibs"
  1453.   build_libtool_libs=convenience
  1454.   build_old_libs=yes
  1455. fi
  1456. dependency_libs="$deplibs"
  1457. if test -n "$vinfo"; then
  1458.   $echo "$modename: warning: `-version-info' is ignored for convenience libraries" 1>&2
  1459. fi
  1460. if test -n "$release"; then
  1461.   $echo "$modename: warning: `-release' is ignored for convenience libraries" 1>&2
  1462. fi
  1463.       else
  1464. # Parse the version information argument.
  1465. IFS="${IFS=  }"; save_ifs="$IFS"; IFS=':'
  1466. set dummy $vinfo 0 0 0
  1467. IFS="$save_ifs"
  1468. if test -n "$8"; then
  1469.   $echo "$modename: too many parameters to `-version-info'" 1>&2
  1470.   $echo "$help" 1>&2
  1471.   exit 1
  1472. fi
  1473. current="$2"
  1474. revision="$3"
  1475. age="$4"
  1476. # Check that each of the things are valid numbers.
  1477. case "$current" in
  1478. 0 | [1-9] | [1-9][0-9]*) ;;
  1479. *)
  1480.   $echo "$modename: CURRENT `$current' is not a nonnegative integer" 1>&2
  1481.   $echo "$modename: `$vinfo' is not valid version information" 1>&2
  1482.   exit 1
  1483.   ;;
  1484. esac
  1485. case "$revision" in
  1486. 0 | [1-9] | [1-9][0-9]*) ;;
  1487. *)
  1488.   $echo "$modename: REVISION `$revision' is not a nonnegative integer" 1>&2
  1489.   $echo "$modename: `$vinfo' is not valid version information" 1>&2
  1490.   exit 1
  1491.   ;;
  1492. esac
  1493. case "$age" in
  1494. 0 | [1-9] | [1-9][0-9]*) ;;
  1495. *)
  1496.   $echo "$modename: AGE `$age' is not a nonnegative integer" 1>&2
  1497.   $echo "$modename: `$vinfo' is not valid version information" 1>&2
  1498.   exit 1
  1499.   ;;
  1500. esac
  1501. if test $age -gt $current; then
  1502.   $echo "$modename: AGE `$age' is greater than the current interface number `$current'" 1>&2
  1503.   $echo "$modename: `$vinfo' is not valid version information" 1>&2
  1504.   exit 1
  1505. fi
  1506. # Calculate the version variables.
  1507. major=
  1508. versuffix=
  1509. verstring=
  1510. case "$version_type" in
  1511. none) ;;
  1512. irix)
  1513.   major=`expr $current - $age + 1`
  1514.   versuffix="$major.$revision"
  1515.   verstring="sgi$major.$revision"
  1516.   # Add in all the interfaces that we are compatible with.
  1517.   loop=$revision
  1518.   while test $loop != 0; do
  1519.     iface=`expr $revision - $loop`
  1520.     loop=`expr $loop - 1`
  1521.     verstring="sgi$major.$iface:$verstring"
  1522.   done
  1523.   ;;
  1524. linux)
  1525.   major=.`expr $current - $age`
  1526.   versuffix="$major.$age.$revision"
  1527.   ;;
  1528. osf)
  1529.   major=`expr $current - $age`
  1530.   versuffix=".$current.$age.$revision"
  1531.   verstring="$current.$age.$revision"
  1532.   # Add in all the interfaces that we are compatible with.
  1533.   loop=$age
  1534.   while test $loop != 0; do
  1535.     iface=`expr $current - $loop`
  1536.     loop=`expr $loop - 1`
  1537.     verstring="$verstring:${iface}.0"
  1538.   done
  1539.   # Make executables depend on our current version.
  1540.   verstring="$verstring:${current}.0"
  1541.   ;;
  1542. sunos)
  1543.   major=".$current"
  1544.   versuffix=".$current.$revision"
  1545.   ;;
  1546. freebsd-aout)
  1547.   major=".$current"
  1548.   versuffix=".$current.$revision";
  1549.   ;;
  1550. freebsd-elf)
  1551.   major=".$current"
  1552.   versuffix=".$current";
  1553.   ;;
  1554. windows)
  1555.   # Like Linux, but with '-' rather than '.', since we only
  1556.   # want one extension on Windows 95.
  1557.   major=`expr $current - $age`
  1558.   versuffix="-$major-$age-$revision"
  1559.   ;;
  1560. *)
  1561.   $echo "$modename: unknown library version type `$version_type'" 1>&2
  1562.   echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2
  1563.   exit 1
  1564.   ;;
  1565. esac
  1566. # Clear the version info if we defaulted, and they specified a release.
  1567. if test -z "$vinfo" && test -n "$release"; then
  1568.   major=
  1569.   verstring="0.0"
  1570.   if test "$need_version" = no; then
  1571.     versuffix=
  1572.   else
  1573.     versuffix=".0.0"
  1574.   fi
  1575. fi
  1576. # Remove version info from name if versioning should be avoided
  1577. if test "$avoid_version" = yes && test "$need_version" = no; then
  1578.   major=
  1579.   versuffix=
  1580.   verstring=""
  1581. fi
  1582. # Check to see if the archive will have undefined symbols.
  1583. if test "$allow_undefined" = yes; then
  1584.   if test "$allow_undefined_flag" = unsupported; then
  1585.     $echo "$modename: warning: undefined symbols not allowed in $host shared libraries" 1>&2
  1586.     build_libtool_libs=no
  1587.     build_old_libs=yes
  1588.   fi
  1589. else
  1590.   # Don't allow undefined symbols.
  1591.   allow_undefined_flag="$no_undefined_flag"
  1592. fi
  1593. dependency_libs="$deplibs"
  1594. case "$host" in
  1595. *-*-cygwin* | *-*-mingw* | *-*-os2* | *-*-beos*)
  1596.   # these systems don't actually have a c library (as such)!
  1597.   ;;
  1598.         #### local change for Sleepycat DB: [#2380]
  1599.         # The following case is added, since the linker's -pthread
  1600.         # option implicitly controls use of -lc or -lc_r.
  1601. *freebsd*)
  1602.   # defer to whether the user wants -lc, or -lc_r
  1603.   ;;
  1604. *)
  1605.   # Add libc to deplibs on all other systems.
  1606.   deplibs="$deplibs -lc"
  1607.   ;;
  1608. esac
  1609.       fi
  1610.       # Create the output directory, or remove our outputs if we need to.
  1611.       if test -d $output_objdir; then
  1612. $show "${rm}r $output_objdir/$outputname $output_objdir/$libname.* $output_objdir/${libname}${release}.*"
  1613. $run ${rm}r $output_objdir/$outputname $output_objdir/$libname.* $output_objdir/${libname}${release}.*
  1614.       else
  1615. $show "$mkdir $output_objdir"
  1616. $run $mkdir $output_objdir
  1617. status=$?
  1618. if test $status -ne 0 && test ! -d $output_objdir; then
  1619.   exit $status
  1620. fi
  1621.       fi
  1622.       # Now set the variables for building old libraries.
  1623.       if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then
  1624. oldlibs="$oldlibs $output_objdir/$libname.$libext"
  1625. # Transform .lo files to .o files.
  1626. oldobjs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/.'${libext}'$/d' -e "$lo2o" | $NL2SP`
  1627.       fi
  1628.       if test "$build_libtool_libs" = yes; then
  1629. # Transform deplibs into only deplibs that can be linked in shared.
  1630. name_save=$name
  1631. libname_save=$libname
  1632. release_save=$release
  1633. versuffix_save=$versuffix
  1634. major_save=$major
  1635. # I'm not sure if I'm treating the release correctly.  I think
  1636. # release should show up in the -l (ie -lgmp5) so we don't want to
  1637. # add it in twice.  Is that correct?
  1638. release=""
  1639. versuffix=""
  1640. major=""
  1641. newdeplibs=
  1642. droppeddeps=no
  1643. case "$deplibs_check_method" in
  1644. pass_all)
  1645.   # Don't check for shared/static.  Everything works.
  1646.   # This might be a little naive.  We might want to check
  1647.   # whether the library exists or not.  But this is on
  1648.   # osf3 & osf4 and I'm not really sure... Just
  1649.   # implementing what was already the behaviour.
  1650.   newdeplibs=$deplibs
  1651.   ;;
  1652. test_compile)
  1653.   # This code stresses the "libraries are programs" paradigm to its
  1654.   # limits. Maybe even breaks it.  We compile a program, linking it
  1655.   # against the deplibs as a proxy for the library.  Then we can check
  1656.   # whether they linked in statically or dynamically with ldd.
  1657.   $rm conftest.c
  1658.   cat > conftest.c <<EOF
  1659.   int main() { return 0; }
  1660. EOF
  1661.   $rm conftest
  1662.   $CC -o conftest conftest.c $deplibs
  1663.   if test $? -eq 0 ; then
  1664.     ldd_output=`ldd conftest`
  1665.     for i in $deplibs; do
  1666.       name="`expr $i : '-l(.*)'`"
  1667.       # If $name is empty we are operating on a -L argument.
  1668.       if test "$name" != "" ; then
  1669. libname=`eval \$echo "$libname_spec"`
  1670. deplib_matches=`eval \$echo "$library_names_spec"`
  1671. set dummy $deplib_matches
  1672. deplib_match=$2
  1673. if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
  1674.   newdeplibs="$newdeplibs $i"
  1675. else
  1676.   droppeddeps=yes
  1677.   echo
  1678.   echo "*** Warning: This library needs some functionality provided by $i."
  1679.   echo "*** I have the capability to make that library automatically link in when"
  1680.   echo "*** you link to this library.  But I can only do this if you have a"
  1681.   echo "*** shared version of the library, which you do not appear to have."
  1682. fi
  1683.       else
  1684. newdeplibs="$newdeplibs $i"
  1685.       fi
  1686.     done
  1687.   else
  1688.     # Error occured in the first compile.  Let's try to salvage the situation:
  1689.     # Compile a seperate program for each library.
  1690.     for i in $deplibs; do
  1691.       name="`expr $i : '-l(.*)'`"
  1692.      # If $name is empty we are operating on a -L argument.
  1693.       if test "$name" != "" ; then
  1694. $rm conftest
  1695. $CC -o conftest conftest.c $i
  1696. # Did it work?
  1697. if test $? -eq 0 ; then
  1698.   ldd_output=`ldd conftest`
  1699.   libname=`eval \$echo "$libname_spec"`
  1700.   deplib_matches=`eval \$echo "$library_names_spec"`
  1701.   set dummy $deplib_matches
  1702.   deplib_match=$2
  1703.   if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
  1704.     newdeplibs="$newdeplibs $i"
  1705.   else
  1706.     droppeddeps=yes
  1707.     echo
  1708.     echo "*** Warning: This library needs some functionality provided by $i."
  1709.     echo "*** I have the capability to make that library automatically link in when"
  1710.     echo "*** you link to this library.  But I can only do this if you have a"
  1711.     echo "*** shared version of the library, which you do not appear to have."
  1712.   fi
  1713. else
  1714.   droppeddeps=yes
  1715.   echo
  1716.   echo "*** Warning!  Library $i is needed by this library but I was not able to"
  1717.   echo "***  make it link in!  You will probably need to install it or some"
  1718.   echo "*** library that it depends on before this library will be fully"
  1719.   echo "*** functional.  Installing it before continuing would be even better."
  1720. fi
  1721.       else
  1722. newdeplibs="$newdeplibs $i"
  1723.       fi
  1724.     done
  1725.   fi
  1726.   ;;
  1727. file_magic*)
  1728.   set dummy $deplibs_check_method
  1729.   file_magic_regex="`expr "$deplibs_check_method" : "$2 (.*)"`"
  1730.   for a_deplib in $deplibs; do
  1731.     name="`expr $a_deplib : '-l(.*)'`"
  1732.     # If $name is empty we are operating on a -L argument.
  1733.     if test "$name" != "" ; then
  1734.       libname=`eval \$echo "$libname_spec"`
  1735.       for i in $lib_search_path; do
  1736.     potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
  1737.     for potent_lib in $potential_libs; do
  1738.       # Follow soft links.
  1739.       if ls -lLd "$potent_lib" 2>/dev/null 
  1740.  | grep " -> " >/dev/null; then
  1741. continue 
  1742.       fi
  1743.       # The statement above tries to avoid entering an
  1744.       # endless loop below, in case of cyclic links.
  1745.       # We might still enter an endless loop, since a link
  1746.       # loop can be closed while we follow links,
  1747.       # but so what?
  1748.       potlib="$potent_lib"
  1749.       while test -h "$potlib" 2>/dev/null; do
  1750. potliblink=`ls -ld $potlib | sed 's/.* -> //'`
  1751. case "$potliblink" in
  1752. [\/]* | [A-Za-z]:[\/]*) potlib="$potliblink";;
  1753. *) potlib=`$echo "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";;
  1754. esac
  1755.       done
  1756.       if eval $file_magic_cmd "$potlib" 2>/dev/null 
  1757.  | sed 10q 
  1758.  | egrep "$file_magic_regex" > /dev/null; then
  1759. newdeplibs="$newdeplibs $a_deplib"
  1760. a_deplib=""
  1761. break 2
  1762.       fi
  1763.     done
  1764.       done
  1765.       if test -n "$a_deplib" ; then
  1766. droppeddeps=yes
  1767. echo
  1768. echo "*** Warning: This library needs some functionality provided by $a_deplib."
  1769. echo "*** I have the capability to make that library automatically link in when"
  1770. echo "*** you link to this library.  But I can only do this if you have a"
  1771. echo "*** shared version of the library, which you do not appear to have."
  1772.       fi
  1773.     else
  1774.       # Add a -L argument.
  1775.       newdeplibs="$newdeplibs $a_deplib"
  1776.     fi
  1777.   done # Gone through all deplibs.
  1778.   ;;
  1779. none | unknown | *)
  1780.   newdeplibs=""
  1781.   if $echo "X $deplibs" | $Xsed -e 's/ -lc$//' 
  1782.        -e 's/ -[LR][^ ]*//g' -e 's/[  ]//g' |
  1783.      grep . >/dev/null; then
  1784.     echo
  1785.     if test "X$deplibs_check_method" = "Xnone"; then
  1786.       echo "*** Warning: inter-library dependencies are not supported in this platform."
  1787.     else
  1788.       echo "*** Warning: inter-library dependencies are not known to be supported."
  1789.     fi
  1790.     echo "*** All declared inter-library dependencies are being dropped."
  1791.     droppeddeps=yes
  1792.   fi
  1793.   ;;
  1794. esac
  1795. versuffix=$versuffix_save
  1796. major=$major_save
  1797. release=$release_save
  1798. libname=$libname_save
  1799. name=$name_save
  1800. if test "$droppeddeps" = yes; then
  1801.   if test "$module" = yes; then
  1802.     echo
  1803.     echo "*** Warning: libtool could not satisfy all declared inter-library"
  1804.     echo "*** dependencies of module $libname.  Therefore, libtool will create"
  1805.     echo "*** a static module, that should work as long as the dlopening"
  1806.     echo "*** application is linked with the -dlopen flag."
  1807.     if test -z "$global_symbol_pipe"; then
  1808.       echo
  1809.       echo "*** However, this would only work if libtool was able to extract symbol"
  1810.       echo "*** lists from a program, using `nm' or equivalent, but libtool could"
  1811.       echo "*** not find such a program.  So, this module is probably useless."
  1812.       echo "*** `nm' from GNU binutils and a full rebuild may help."
  1813.     fi
  1814.     if test "$build_old_libs" = no; then
  1815.       oldlibs="$output_objdir/$libname.$libext"
  1816.       build_libtool_libs=module
  1817.       build_old_libs=yes
  1818.     else
  1819.       build_libtool_libs=no
  1820.     fi
  1821.   else
  1822.     echo "*** The inter-library dependencies that have been dropped here will be"
  1823.     echo "*** automatically added whenever a program is linked with this library"
  1824.     echo "*** or is declared to -dlopen it."
  1825.   fi
  1826. fi
  1827. # Done checking deplibs!
  1828. deplibs=$newdeplibs
  1829.       fi
  1830.       # All the library-specific variables (install_libdir is set above).
  1831.       library_names=
  1832.       old_library=
  1833.       dlname=
  1834.       
  1835.       # Test again, we may have decided not to build it any more
  1836.       if test "$build_libtool_libs" = yes; then
  1837. # Get the real and link names of the library.
  1838. eval library_names="$library_names_spec"
  1839. set dummy $library_names
  1840. realname="$2"
  1841. shift; shift
  1842. if test -n "$soname_spec"; then
  1843.   eval soname="$soname_spec"
  1844. else
  1845.   soname="$realname"
  1846. fi
  1847. lib="$output_objdir/$realname"
  1848. for link
  1849. do
  1850.   linknames="$linknames $link"
  1851. done
  1852. # Ensure that we have .o objects for linkers which dislike .lo
  1853. # (e.g. aix) in case we are running --disable-static
  1854. for obj in $libobjs; do
  1855.   xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`
  1856.   if test "X$xdir" = "X$obj"; then
  1857.     xdir="."
  1858.   else
  1859.     xdir="$xdir"
  1860.   fi
  1861.   baseobj=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`
  1862.   oldobj=`$echo "X$baseobj" | $Xsed -e "$lo2o"`
  1863.   if test ! -f $xdir/$oldobj; then
  1864.     $show "(cd $xdir && ${LN_S} $baseobj $oldobj)"
  1865.     $run eval '(cd $xdir && ${LN_S} $baseobj $oldobj)' || exit $?
  1866.   fi
  1867. done
  1868. # Use standard objects if they are pic
  1869. test -z "$pic_flag" && libobjs=`$echo "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
  1870. # Prepare the list of exported symbols
  1871. if test -z "$export_symbols"; then
  1872.   if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then
  1873.     $show "generating symbol list for `$libname.la'"
  1874.     export_symbols="$output_objdir/$libname.exp"
  1875.     $run $rm $export_symbols
  1876.     eval cmds="$export_symbols_cmds"
  1877.     IFS="${IFS=  }"; save_ifs="$IFS"; IFS='~'
  1878.     for cmd in $cmds; do
  1879.       IFS="$save_ifs"
  1880.       $show "$cmd"
  1881.       $run eval "$cmd" || exit $?
  1882.     done
  1883.     IFS="$save_ifs"
  1884.     if test -n "$export_symbols_regex"; then
  1885.       $show "egrep -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T""
  1886.       $run eval 'egrep -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
  1887.       $show "$mv "${export_symbols}T" "$export_symbols""
  1888.       $run eval '$mv "${export_symbols}T" "$export_symbols"'
  1889.     fi
  1890.   fi
  1891. fi
  1892. if test -n "$export_symbols" && test -n "$include_expsyms"; then
  1893.   $run eval '$echo "X$include_expsyms" | $SP2NL >> "$export_symbols"'
  1894. fi
  1895. if test -n "$convenience"; then
  1896.   if test -n "$whole_archive_flag_spec"; then
  1897.     eval libobjs="$libobjs $whole_archive_flag_spec"
  1898.   else
  1899.     gentop="$output_objdir/${outputname}x"
  1900.     $show "${rm}r $gentop"
  1901.     $run ${rm}r "$gentop"
  1902.     $show "mkdir $gentop"
  1903.     $run mkdir "$gentop"
  1904.     status=$?
  1905.     if test $status -ne 0 && test ! -d "$gentop"; then
  1906.       exit $status
  1907.     fi
  1908.     generated="$generated $gentop"
  1909.     for xlib in $convenience; do
  1910.       # Extract the objects.
  1911.       case "$xlib" in
  1912.       [\/]* | [A-Za-z]:[\/]*) xabs="$xlib" ;;
  1913.       *) xabs=`pwd`"/$xlib" ;;
  1914.       esac
  1915.       xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
  1916.       xdir="$gentop/$xlib"
  1917.       $show "${rm}r $xdir"
  1918.       $run ${rm}r "$xdir"
  1919.       $show "mkdir $xdir"
  1920.       $run mkdir "$xdir"
  1921.       status=$?
  1922.       if test $status -ne 0 && test ! -d "$xdir"; then
  1923. exit $status
  1924.       fi
  1925.       $show "(cd $xdir && $AR x $xabs)"
  1926.       $run eval "(cd $xdir && $AR x $xabs)" || exit $?
  1927.       libobjs="$libobjs "`find $xdir -name *.o -print -o -name *.lo -print | $NL2SP`
  1928.     done
  1929.   fi
  1930. fi
  1931. if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then
  1932.   eval flag="$thread_safe_flag_spec"
  1933.   linkopts="$linkopts $flag"
  1934. fi
  1935. # Do each of the archive commands.
  1936. if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
  1937.   eval cmds="$archive_expsym_cmds"
  1938. else
  1939.   eval cmds="$archive_cmds"
  1940. fi
  1941. IFS="${IFS=  }"; save_ifs="$IFS"; IFS='~'
  1942. for cmd in $cmds; do
  1943.   IFS="$save_ifs"
  1944.   $show "$cmd"
  1945.   $run eval "$cmd" || exit $?
  1946. done
  1947. IFS="$save_ifs"
  1948. # Create links to the real library.
  1949. for linkname in $linknames; do
  1950.   if test "$realname" != "$linkname"; then
  1951.     $show "(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)"
  1952.     $run eval '(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)' || exit $?
  1953.   fi
  1954. done
  1955. # If -module or -export-dynamic was specified, set the dlname.
  1956. if test "$module" = yes || test "$export_dynamic" = yes; then
  1957.   # On all known operating systems, these are identical.
  1958.   dlname="$soname"
  1959. fi
  1960.       fi
  1961.       ;;
  1962.     *.lo | *.o | *.obj)
  1963.       if test -n "$link_against_libtool_libs"; then
  1964. $echo "$modename: error: cannot link libtool libraries into objects" 1>&2
  1965. exit 1
  1966.       fi
  1967.       if test -n "$deplibs"; then
  1968. $echo "$modename: warning: `-l' and `-L' are ignored for objects" 1>&2
  1969.       fi
  1970.       if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
  1971. $echo "$modename: warning: `-dlopen' is ignored for objects" 1>&2
  1972.       fi
  1973.       if test -n "$rpath"; then
  1974. $echo "$modename: warning: `-rpath' is ignored for objects" 1>&2
  1975.       fi
  1976.       if test -n "$xrpath"; then
  1977. $echo "$modename: warning: `-R' is ignored for objects" 1>&2
  1978.       fi
  1979.       if test -n "$vinfo"; then
  1980. $echo "$modename: warning: `-version-info' is ignored for objects" 1>&2
  1981.       fi
  1982.       if test -n "$release"; then
  1983. $echo "$modename: warning: `-release' is ignored for objects" 1>&2
  1984.       fi
  1985.       case "$output" in
  1986.       *.lo)
  1987. if test -n "$objs"; then
  1988.   $echo "$modename: cannot build library object `$output' from non-libtool objects" 1>&2
  1989.   exit 1
  1990. fi
  1991. libobj="$output"
  1992. obj=`$echo "X$output" | $Xsed -e "$lo2o"`
  1993. ;;
  1994.       *)
  1995. libobj=
  1996. obj="$output"
  1997. ;;
  1998.       esac
  1999.       # Delete the old objects.
  2000.       $run $rm $obj $libobj
  2001.       # Objects from convenience libraries.  This assumes
  2002.       # single-version convenience libraries.  Whenever we create
  2003.       # different ones for PIC/non-PIC, this we'll have to duplicate
  2004.       # the extraction.
  2005.       reload_conv_objs=
  2006.       gentop=
  2007.       # reload_cmds runs $LD directly, so let us get rid of
  2008.       # -Wl from whole_archive_flag_spec
  2009.       wl= 
  2010.       if test -n "$convenience"; then
  2011. if test -n "$whole_archive_flag_spec"; then
  2012.   eval reload_conv_objs="$reload_objs $whole_archive_flag_spec"
  2013. else
  2014.   gentop="$output_objdir/${obj}x"
  2015.   $show "${rm}r $gentop"
  2016.   $run ${rm}r "$gentop"
  2017.   $show "mkdir $gentop"
  2018.   $run mkdir "$gentop"
  2019.   status=$?
  2020.   if test $status -ne 0 && test ! -d "$gentop"; then
  2021.     exit $status
  2022.   fi
  2023.   generated="$generated $gentop"
  2024.   for xlib in $convenience; do
  2025.     # Extract the objects.
  2026.     case "$xlib" in
  2027.     [\/]* | [A-Za-z]:[\/]*) xabs="$xlib" ;;
  2028.     *) xabs=`pwd`"/$xlib" ;;
  2029.     esac
  2030.     xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
  2031.     xdir="$gentop/$xlib"
  2032.     $show "${rm}r $xdir"
  2033.     $run ${rm}r "$xdir"
  2034.     $show "mkdir $xdir"
  2035.     $run mkdir "$xdir"
  2036.     status=$?
  2037.     if test $status -ne 0 && test ! -d "$xdir"; then
  2038.       exit $status
  2039.     fi
  2040.     $show "(cd $xdir && $AR x $xabs)"
  2041.     $run eval "(cd $xdir && $AR x $xabs)" || exit $?
  2042.     reload_conv_objs="$reload_objs "`find $xdir -name *.o -print -o -name *.lo -print | $NL2SP`
  2043.   done
  2044. fi
  2045.       fi
  2046.       # Create the old-style object.
  2047.       reload_objs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/.'${libext}$'/d' -e '/.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs"
  2048.       output="$obj"
  2049.       eval cmds="$reload_cmds"
  2050.       IFS="${IFS=  }"; save_ifs="$IFS"; IFS='~'
  2051.       for cmd in $cmds; do
  2052. IFS="$save_ifs"
  2053. $show "$cmd"
  2054. $run eval "$cmd" || exit $?
  2055.       done
  2056.       IFS="$save_ifs"
  2057.       # Exit if we aren't doing a library object file.
  2058.       if test -z "$libobj"; then
  2059. if test -n "$gentop"; then
  2060.   $show "${rm}r $gentop"
  2061.   $run ${rm}r $gentop
  2062. fi
  2063. exit 0
  2064.       fi
  2065.       if test "$build_libtool_libs" != yes; then
  2066. if test -n "$gentop"; then
  2067.   $show "${rm}r $gentop"
  2068.   $run ${rm}r $gentop
  2069. fi
  2070. # Create an invalid libtool object if no PIC, so that we don't
  2071. # accidentally link it into a program.
  2072. $show "echo timestamp > $libobj"
  2073. $run eval "echo timestamp > $libobj" || exit $?
  2074. exit 0
  2075.       fi
  2076.       if test -n "$pic_flag"; then
  2077. # Only do commands if we really have different PIC objects.
  2078. reload_objs="$libobjs $reload_conv_objs"
  2079. output="$libobj"
  2080. eval cmds="$reload_cmds"
  2081. IFS="${IFS=  }"; save_ifs="$IFS"; IFS='~'
  2082. for cmd in $cmds; do
  2083.   IFS="$save_ifs"
  2084.   $show "$cmd"
  2085.   $run eval "$cmd" || exit $?
  2086. done
  2087. IFS="$save_ifs"
  2088.       else
  2089. # Just create a symlink.
  2090. $show $rm $libobj
  2091. $run $rm $libobj
  2092. xdir=`$echo "X$libobj" | $Xsed -e 's%/[^/]*$%%'`
  2093. if test "X$xdir" = "X$libobj"; then
  2094.   xdir="."
  2095. else
  2096.   xdir="$xdir"
  2097. fi
  2098. baseobj=`$echo "X$libobj" | $Xsed -e 's%^.*/%%'`
  2099. oldobj=`$echo "X$baseobj" | $Xsed -e "$lo2o"`
  2100. $show "(cd $xdir && $LN_S $oldobj $baseobj)"
  2101. $run eval '(cd $xdir && $LN_S $oldobj $baseobj)' || exit $?
  2102.       fi
  2103.       if test -n "$gentop"; then
  2104. $show "${rm}r $gentop"
  2105. $run ${rm}r $gentop
  2106.       fi
  2107.       exit 0
  2108.       ;;
  2109.     # Anything else should be a program.
  2110.     *)
  2111.       if test -n "$vinfo"; then
  2112. $echo "$modename: warning: `-version-info' is ignored for programs" 1>&2
  2113.       fi
  2114.       if test -n "$release"; then
  2115. $echo "$modename: warning: `-release' is ignored for programs" 1>&2
  2116.       fi
  2117.       if test "$preload" = yes; then
  2118. if test "$dlopen" = unknown && test "$dlopen_self" = unknown &&
  2119.    test "$dlopen_self_static" = unknown; then
  2120.   $echo "$modename: warning: `AC_LIBTOOL_DLOPEN' not used. Assuming no dlopen support."
  2121. fi 
  2122.       fi
  2123.     
  2124.       if test -n "$rpath$xrpath"; then
  2125. # If the user specified any rpath flags, then add them.
  2126. for libdir in $rpath $xrpath; do
  2127.   # This is the magic to use -rpath.
  2128.   case "$compile_rpath " in
  2129.   *" $libdir "*) ;;
  2130.   *) compile_rpath="$compile_rpath $libdir" ;;
  2131.   esac
  2132.   case "$finalize_rpath " in
  2133.   *" $libdir "*) ;;
  2134.   *) finalize_rpath="$finalize_rpath $libdir" ;;
  2135.   esac
  2136. done
  2137.       fi
  2138.       # Now hardcode the library paths
  2139.       rpath=
  2140.       hardcode_libdirs=
  2141.       for libdir in $compile_rpath $finalize_rpath; do
  2142. if test -n "$hardcode_libdir_flag_spec"; then
  2143.   if test -n "$hardcode_libdir_separator"; then
  2144.     if test -z "$hardcode_libdirs"; then
  2145.       hardcode_libdirs="$libdir"
  2146.     else
  2147.       # Just accumulate the unique libdirs.
  2148.       case "$hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator" in
  2149.       *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
  2150. ;;
  2151.       *)
  2152. hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
  2153. ;;
  2154.       esac
  2155.     fi
  2156.   else
  2157.     eval flag="$hardcode_libdir_flag_spec"
  2158.     rpath="$rpath $flag"
  2159.   fi
  2160. elif test -n "$runpath_var"; then
  2161.   case "$perm_rpath " in
  2162.   *" $libdir "*) ;;
  2163.   *) perm_rpath="$perm_rpath $libdir" ;;
  2164.   esac
  2165. fi
  2166.       done
  2167.       # Substitute the hardcoded libdirs into the rpath.
  2168.       if test -n "$hardcode_libdir_separator" &&
  2169.  test -n "$hardcode_libdirs"; then
  2170. libdir="$hardcode_libdirs"
  2171. eval rpath=" $hardcode_libdir_flag_spec"
  2172.       fi
  2173.       compile_rpath="$rpath"
  2174.       rpath=
  2175.       hardcode_libdirs=
  2176.       for libdir in $finalize_rpath; do
  2177. if test -n "$hardcode_libdir_flag_spec"; then
  2178.   if test -n "$hardcode_libdir_separator"; then
  2179.     if test -z "$hardcode_libdirs"; then
  2180.       hardcode_libdirs="$libdir"
  2181.     else
  2182.       # Just accumulate the unique libdirs.
  2183.       case "$hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator" in
  2184.       *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
  2185. ;;
  2186.       *)
  2187. hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
  2188. ;;
  2189.       esac
  2190.     fi
  2191.   else
  2192.     eval flag="$hardcode_libdir_flag_spec"
  2193.     rpath="$rpath $flag"
  2194.   fi
  2195. elif test -n "$runpath_var"; then
  2196.   case "$finalize_perm_rpath " in
  2197.   *" $libdir "*) ;;
  2198.   *) finalize_perm_rpath="$finalize_perm_rpath $libdir" ;;
  2199.   esac
  2200. fi
  2201.       done
  2202.       # Substitute the hardcoded libdirs into the rpath.
  2203.       if test -n "$hardcode_libdir_separator" &&
  2204.  test -n "$hardcode_libdirs"; then
  2205. libdir="$hardcode_libdirs"
  2206. eval rpath=" $hardcode_libdir_flag_spec"
  2207.       fi
  2208.       finalize_rpath="$rpath"
  2209.       output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'`
  2210.       if test "X$output_objdir" = "X$output"; then
  2211. output_objdir="$objdir"
  2212.       else
  2213. output_objdir="$output_objdir/$objdir"
  2214.       fi
  2215.       # Create the binary in the object directory, then wrap it.
  2216.       if test ! -d $output_objdir; then
  2217. $show "$mkdir $output_objdir"
  2218. $run $mkdir $output_objdir
  2219. status=$?
  2220. if test $status -ne 0 && test ! -d $output_objdir; then
  2221.   exit $status
  2222. fi
  2223.       fi
  2224.       if test -n "$libobjs" && test "$build_old_libs" = yes; then
  2225. # Transform all the library objects into standard objects.
  2226. compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
  2227. finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
  2228.       fi
  2229.       dlsyms=
  2230.       if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
  2231. if test -n "$NM" && test -n "$global_symbol_pipe"; then
  2232.   dlsyms="${outputname}S.c"
  2233. else
  2234.   $echo "$modename: not configured to extract global symbols from dlpreopened files" 1>&2
  2235. fi
  2236.       fi
  2237.       if test -n "$dlsyms"; then
  2238. case "$dlsyms" in
  2239. "") ;;
  2240. *.c)
  2241.   # Discover the nlist of each of the dlfiles.
  2242.   nlist="$output_objdir/${outputname}.nm"
  2243.   $show "$rm $nlist ${nlist}S ${nlist}T"
  2244.   $run $rm "$nlist" "${nlist}S" "${nlist}T"
  2245.   # Parse the name list into a source file.
  2246.   $show "creating $output_objdir/$dlsyms"
  2247.   test -z "$run" && $echo > "$output_objdir/$dlsyms" "
  2248. /* $dlsyms - symbol resolution table for `$outputname' dlsym emulation. */
  2249. /* Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP */
  2250. #ifdef __cplusplus
  2251. extern "C" {
  2252. #endif
  2253. /* Prevent the only kind of declaration conflicts we can make. */
  2254. #define lt_preloaded_symbols some_other_symbol
  2255. /* External symbol declarations for the compiler. */
  2256. "
  2257.   if test "$dlself" = yes; then
  2258.     $show "generating symbol list for `$output'"
  2259.     test -z "$run" && $echo ': @PROGRAM@ ' > "$nlist"
  2260.     # Add our own program objects to the symbol list.
  2261.     progfiles=`$echo "X$objs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
  2262.     for arg in $progfiles; do
  2263.       $show "extracting global C symbols from `$arg'"
  2264.       $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'"
  2265.     done
  2266.     if test -n "$exclude_expsyms"; then
  2267.       $run eval 'egrep -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T'
  2268.       $run eval '$mv "$nlist"T "$nlist"'
  2269.     fi
  2270.     
  2271.     if test -n "$export_symbols_regex"; then
  2272.       $run eval 'egrep -e "$export_symbols_regex" "$nlist" > "$nlist"T'
  2273.       $run eval '$mv "$nlist"T "$nlist"'
  2274.     fi
  2275.     # Prepare the list of exported symbols
  2276.     if test -z "$export_symbols"; then
  2277.       export_symbols="$output_objdir/$output.exp"
  2278.       $run $rm $export_symbols
  2279.       $run eval "sed -n -e '/^: @PROGRAM@$/d' -e 's/^.* (.*)$/1/p' "'< "$nlist" > "$export_symbols"'
  2280.     else
  2281.       $run eval "sed -e 's/([][.*^$])/\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$output.exp"'
  2282.       $run eval 'grep -f "$output_objdir/$output.exp" < "$nlist" > "$nlist"T'
  2283.       $run eval 'mv "$nlist"T "$nlist"'
  2284.     fi
  2285.   fi
  2286.   for arg in $dlprefiles; do
  2287.     $show "extracting global C symbols from `$arg'"
  2288.     name=`echo "$arg" | sed -e 's%^.*/%%'`
  2289.     $run eval 'echo ": $name " >> "$nlist"'
  2290.     $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'"
  2291.   done
  2292.   if test -z "$run"; then
  2293.     # Make sure we have at least an empty file.
  2294.     test -f "$nlist" || : > "$nlist"
  2295.     if test -n "$exclude_expsyms"; then
  2296.       egrep -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T
  2297.       $mv "$nlist"T "$nlist"
  2298.     fi
  2299.     # Try sorting and uniquifying the output.
  2300.     if grep -v "^: " < "$nlist" | sort +2 | uniq > "$nlist"S; then
  2301.       :
  2302.     else
  2303.       grep -v "^: " < "$nlist" > "$nlist"S
  2304.     fi
  2305.     if test -f "$nlist"S; then
  2306.       eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$dlsyms"'
  2307.     else
  2308.       echo '/* NONE */' >> "$output_objdir/$dlsyms"
  2309.     fi
  2310.     $echo >> "$output_objdir/$dlsyms" "
  2311. #undef lt_preloaded_symbols
  2312. #if defined (__STDC__) && __STDC__
  2313. # define lt_ptr_t void *
  2314. #else
  2315. # define lt_ptr_t char *
  2316. # define const
  2317. #endif
  2318. /* The mapping between symbol names and symbols. */
  2319. const struct {
  2320.   const char *name;
  2321.   lt_ptr_t address;
  2322. }
  2323. lt_preloaded_symbols[] =
  2324. {
  2325. "
  2326.     sed -n -e 's/^: ([^ ]*) $/  {"1", (lt_ptr_t) 0},/p' 
  2327. -e 's/^. ([^ ]*) ([^ ]*)$/  {"2", (lt_ptr_t) &2},/p' 
  2328.   < "$nlist" >> "$output_objdir/$dlsyms"
  2329.     $echo >> "$output_objdir/$dlsyms" "
  2330.   {0, (lt_ptr_t) 0}
  2331. };
  2332. /* This works around a problem in FreeBSD linker */
  2333. #ifdef FREEBSD_WORKAROUND
  2334. static const void *lt_preloaded_setup() {
  2335.   return lt_preloaded_symbols;
  2336. }
  2337. #endif
  2338. #ifdef __cplusplus
  2339. }
  2340. #endif
  2341. "
  2342.   fi
  2343.   pic_flag_for_symtable=
  2344.   case "$host" in
  2345.   # compiling the symbol table file with pic_flag works around
  2346.   # a FreeBSD bug that causes programs to crash when -lm is
  2347.   # linked before any other PIC object.  But we must not use
  2348.   # pic_flag when linking with -static.  The problem exists in
  2349.   # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1.
  2350.   *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)
  2351.     case "$compile_command " in
  2352.     *" -static "*) ;;
  2353.     *) pic_flag_for_symtable=" $pic_flag -DPIC -DFREEBSD_WORKAROUND";;
  2354.     esac;;
  2355.   *-*-hpux*)
  2356.     case "$compile_command " in
  2357.     *" -static "*) ;;
  2358.     *) pic_flag_for_symtable=" $pic_flag -DPIC";;
  2359.     esac
  2360.   esac
  2361.   # Now compile the dynamic symbol file.
  2362.   $show "(cd $output_objdir && $CC -c$no_builtin_flag$pic_flag_for_symtable "$dlsyms")"
  2363.   $run eval '(cd $output_objdir && $CC -c$no_builtin_flag$pic_flag_for_symtable "$dlsyms")' || exit $?
  2364.   # Clean up the generated files.
  2365.   $show "$rm $output_objdir/$dlsyms $nlist ${nlist}S ${nlist}T"
  2366.   $run $rm "$output_objdir/$dlsyms" "$nlist" "${nlist}S" "${nlist}T"
  2367.   # Transform the symbol file into the correct name.
  2368.   compile_command=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
  2369.   finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
  2370.   ;;
  2371. *)
  2372.   $echo "$modename: unknown suffix for `$dlsyms'" 1>&2
  2373.   exit 1
  2374.   ;;
  2375. esac
  2376.       else
  2377. # We keep going just in case the user didn't refer to
  2378. # lt_preloaded_symbols.  The linker will fail if global_symbol_pipe
  2379. # really was required.
  2380. # Nullify the symbol file.
  2381. compile_command=`$echo "X$compile_command" | $Xsed -e "s% @SYMFILE@%%"`
  2382. finalize_command=`$echo "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"`
  2383.       fi
  2384.       if test -z "$link_against_libtool_libs" || test "$build_libtool_libs" != yes; then
  2385. # Replace the output file specification.
  2386. compile_command=`$echo "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
  2387. link_command="$compile_command$compile_rpath"
  2388. # We have no uninstalled library dependencies, so finalize right now.
  2389. $show "$link_command"
  2390. $run eval "$link_command"
  2391. status=$?
  2392. # Delete the generated files.
  2393. if test -n "$dlsyms"; then
  2394.   $show "$rm $output_objdir/${outputname}S.${objext}"
  2395.   $run $rm "$output_objdir/${outputname}S.${objext}"
  2396. fi
  2397. exit $status
  2398.       fi
  2399.       if test -n "$shlibpath_var"; then
  2400. # We should set the shlibpath_var
  2401. rpath=
  2402. for dir in $temp_rpath; do
  2403.   case "$dir" in
  2404.   [\/]* | [A-Za-z]:[\/]*)
  2405.     # Absolute path.
  2406.     rpath="$rpath$dir:"
  2407.     ;;
  2408.   *)
  2409.     # Relative path: add a thisdir entry.
  2410.     rpath="$rpath$thisdir/$dir:"
  2411.     ;;
  2412.   esac
  2413. done
  2414. temp_rpath="$rpath"
  2415.       fi
  2416.       if test -n "$compile_shlibpath$finalize_shlibpath"; then
  2417. compile_command="$shlibpath_var="$compile_shlibpath$finalize_shlibpath$$shlibpath_var" $compile_command"
  2418.       fi
  2419.       if test -n "$finalize_shlibpath"; then
  2420. finalize_command="$shlibpath_var="$finalize_shlibpath$$shlibpath_var" $finalize_command"
  2421.       fi
  2422.       compile_var=
  2423.       finalize_var=
  2424.       if test -n "$runpath_var"; then
  2425. if test -n "$perm_rpath"; then
  2426.   # We should set the runpath_var.
  2427.   rpath=
  2428.   for dir in $perm_rpath; do
  2429.     rpath="$rpath$dir:"
  2430.   done
  2431.   compile_var="$runpath_var="$rpath$$runpath_var" "
  2432. fi
  2433. if test -n "$finalize_perm_rpath"; then
  2434.   # We should set the runpath_var.
  2435.   rpath=
  2436.   for dir in $finalize_perm_rpath; do
  2437.     rpath="$rpath$dir:"
  2438.   done
  2439.   finalize_var="$runpath_var="$rpath$$runpath_var" "
  2440. fi
  2441.       fi
  2442.       if test "$hardcode_action" = relink; then
  2443. # Fast installation is not supported
  2444. link_command="$compile_var$compile_command$compile_rpath"
  2445. relink_command="$finalize_var$finalize_command$finalize_rpath"
  2446. $echo "$modename: warning: this platform does not like uninstalled shared libraries" 1>&2
  2447. $echo "$modename: `$output' will be relinked during installation" 1>&2
  2448.       else
  2449. if test "$fast_install" != no; then
  2450.   link_command="$finalize_var$compile_command$finalize_rpath"
  2451.   if test "$fast_install" = yes; then
  2452.     relink_command=`$echo "X$compile_var$compile_command$compile_rpath" | $Xsed -e 's%@OUTPUT@%$progdir/$file%g'`
  2453.   else
  2454.     # fast_install is set to needless
  2455.     relink_command=
  2456.   fi
  2457. else
  2458.   link_command="$compile_var$compile_command$compile_rpath"
  2459.   relink_command="$finalize_var$finalize_command$finalize_rpath"
  2460. fi
  2461.       fi
  2462.       # Replace the output file specification.
  2463.       link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'`
  2464.       
  2465.       # Delete the old output files.
  2466.       $run $rm $output $output_objdir/$outputname $output_objdir/lt-$outputname
  2467.       $show "$link_command"
  2468.       $run eval "$link_command" || exit $?
  2469.       # Now create the wrapper script.
  2470.       $show "creating $output"
  2471.       # Quote the relink command for shipping.
  2472.       if test -n "$relink_command"; then
  2473. relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
  2474.       fi
  2475.       # Quote $echo for shipping.
  2476.       if test "X$echo" = "X$SHELL $0 --fallback-echo"; then
  2477. case "$0" in
  2478. [\/]* | [A-Za-z]:[\/]*) qecho="$SHELL $0 --fallback-echo";;
  2479. *) qecho="$SHELL `pwd`/$0 --fallback-echo";;
  2480. esac
  2481. qecho=`$echo "X$qecho" | $Xsed -e "$sed_quote_subst"`
  2482.       else
  2483. qecho=`$echo "X$echo" | $Xsed -e "$sed_quote_subst"`
  2484.       fi
  2485.       # Only actually do things if our run command is non-null.
  2486.       if test -z "$run"; then
  2487. # win32 will think the script is a binary if it has
  2488. # a .exe suffix, so we strip it off here.
  2489. case $output in
  2490.   *.exe) output=`echo $output|sed 's,.exe$,,'` ;;
  2491. esac
  2492. $rm $output
  2493. trap "$rm $output; exit 1" 1 2 15
  2494. $echo > $output "
  2495. #! $SHELL
  2496. # $output - temporary wrapper script for $objdir/$outputname
  2497. # Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
  2498. #
  2499. # The $output program cannot be directly executed until all the libtool
  2500. # libraries that it depends on are installed.
  2501. #
  2502. # This wrapper script should never be moved out of the build directory.
  2503. # If it is, it will not operate correctly.
  2504. # Sed substitution that helps us do robust quoting.  It backslashifies
  2505. # metacharacters that are still active within double-quoted strings.
  2506. Xsed='sed -e 1s/^X//'
  2507. sed_quote_subst='$sed_quote_subst'
  2508. # The HP-UX ksh and POSIX shell print the target directory to stdout
  2509. # if CDPATH is set.
  2510. if test "${CDPATH+set}" = set; then CDPATH=:; export CDPATH; fi
  2511. relink_command="$relink_command"
  2512. # This environment variable determines our operation mode.
  2513. if test "$libtool_install_magic" = "$magic"; then
  2514.   # install mode needs the following variable:
  2515.   link_against_libtool_libs='$link_against_libtool_libs'
  2516. else
  2517.   # When we are sourced in execute mode, $file and $echo are already set.
  2518.   if test "$libtool_execute_magic" != "$magic"; then
  2519.     echo="$qecho"
  2520.     file="$0"
  2521.     # Make sure echo works.
  2522.     if test "X$1" = X--no-reexec; then
  2523.       # Discard the --no-reexec flag, and continue.
  2524.       shift
  2525.     elif test "X`($echo 't') 2>/dev/null`" = 'Xt'; then
  2526.       # Yippee, $echo works!
  2527.       :
  2528.     else
  2529.       # Restart under the correct shell, and then maybe $echo will work.
  2530.       exec $SHELL "$0" --no-reexec ${1+"$@"}
  2531.     fi
  2532.   fi
  2533. "
  2534. $echo >> $output "
  2535.   # Find the directory that this script lives in.
  2536.   thisdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
  2537.   test "x$thisdir" = "x$file" && thisdir=.
  2538.   # Follow symbolic links until we get to the real thisdir.
  2539.   file=`ls -ld "$file" | sed -n 's/.*-> //p'`
  2540.   while test -n "$file"; do
  2541.     destdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
  2542.     # If there was a directory component, then change thisdir.
  2543.     if test "x$destdir" != "x$file"; then
  2544.       case "$destdir" in
  2545.       [\/]* | [A-Za-z]:[\/]*) thisdir="$destdir" ;;
  2546.       *) thisdir="$thisdir/$destdir" ;;
  2547.       esac
  2548.     fi
  2549.     file=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
  2550.     file=`ls -ld "$thisdir/$file" | sed -n 's/.*-> //p'`
  2551.   done
  2552.   # Try to get the absolute directory name.
  2553.   absdir=`cd "$thisdir" && pwd`
  2554.   test -n "$absdir" && thisdir="$absdir"
  2555. "
  2556. if test "$fast_install" = yes; then
  2557.   echo >> $output "
  2558.   program=lt-'$outputname'
  2559.   progdir="$thisdir/$objdir"
  2560.   
  2561.   if test ! -f "$progdir/$program" || \
  2562.      { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | sed 1q`; \
  2563.        test "X$file" != "X$progdir/$program"; }; then
  2564.     file="$$-$program"
  2565.     if test ! -d "$progdir"; then
  2566.       $mkdir "$progdir"
  2567.     else
  2568.       $rm "$progdir/$file"
  2569.     fi"
  2570.   echo >> $output "
  2571.     # relink executable if necessary
  2572.     if test -n "$relink_command"; then
  2573.       if (cd "$thisdir" && eval $relink_command); then :
  2574.       else
  2575. $rm "$progdir/$file"
  2576. exit 1
  2577.       fi
  2578.     fi
  2579.     $mv "$progdir/$file" "$progdir/$program" 2>/dev/null ||
  2580.     { $rm "$progdir/$program";
  2581.       $mv "$progdir/$file" "$progdir/$program"; }
  2582.     $rm "$progdir/$file"
  2583.   fi"
  2584. else
  2585.   echo >> $output "
  2586.   program='$outputname'
  2587.   progdir="$thisdir/$objdir"
  2588. "
  2589. fi
  2590. echo >> $output "
  2591.   if test -f "$progdir/$program"; then"
  2592. # Export our shlibpath_var if we have one.
  2593. if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
  2594.   $echo >> $output "
  2595.     # Add our own library path to $shlibpath_var
  2596.     $shlibpath_var="$temp_rpath$$shlibpath_var"
  2597.     # Some systems cannot cope with colon-terminated $shlibpath_var
  2598.     # The second colon is a workaround for a bug in BeOS R4 sed
  2599.     $shlibpath_var=`$echo "X$$shlibpath_var" | $Xsed -e 's/::*$//'`
  2600.     export $shlibpath_var
  2601. "
  2602. fi
  2603. # fixup the dll searchpath if we need to.
  2604. if test -n "$dllsearchpath"; then
  2605.   $echo >> $output "
  2606.     # Add the dll search path components to the executable PATH
  2607.     PATH=$dllsearchpath:$PATH
  2608. "
  2609. fi
  2610. $echo >> $output "
  2611.     if test "$libtool_execute_magic" != "$magic"; then
  2612.       # Run the actual program with our arguments.
  2613. "
  2614. case $host in
  2615.   # win32 systems need to use the prog path for dll
  2616.   # lookup to work
  2617. *-*-cygwin*)
  2618.   $echo >> $output "
  2619.       exec $progdir/$program ${1+"$@"}
  2620. "
  2621.   ;;
  2622. # Backslashes separate directories on plain windows
  2623. *-*-mingw | *-*-os2*)
  2624.   $echo >> $output "
  2625.       exec $progdir\\$program ${1+"$@"}
  2626. "
  2627.   ;;
  2628. *)
  2629.   $echo >> $output "
  2630.       # Export the path to the program.
  2631.       PATH="$progdir:$PATH"
  2632.       export PATH
  2633.       exec $program ${1+"$@"}
  2634. "
  2635.   ;;
  2636. esac
  2637. $echo >> $output "
  2638.       $echo "$0: cannot exec $program ${1+"$@"}"
  2639.       exit 1
  2640.     fi
  2641.   else
  2642.     # The program doesn't exist.
  2643.     $echo "$0: error: $progdir/$program does not exist" 1>&2
  2644.     $echo "This script is just a wrapper for $program." 1>&2
  2645.     echo "See the $PACKAGE documentation for more information." 1>&2
  2646.     exit 1
  2647.   fi
  2648. fi
  2649. "
  2650. chmod +x $output
  2651.       fi
  2652.       exit 0
  2653.       ;;
  2654.     esac
  2655.     # See if we need to build an old-fashioned archive.
  2656.     for oldlib in $oldlibs; do
  2657.       if test "$build_libtool_libs" = convenience; then
  2658. oldobjs="$libobjs_save"
  2659. addlibs="$convenience"
  2660. build_libtool_libs=no
  2661.       else
  2662. if test "$build_libtool_libs" = module; then
  2663.   oldobjs="$libobjs_save"
  2664.   build_libtool_libs=no
  2665. else
  2666.   oldobjs="$objs "`$echo "X$libobjs_save" | $SP2NL | $Xsed -e '/.'${libext}'$/d' -e '/.lib$/d' -e "$lo2o" | $NL2SP`
  2667. fi
  2668. addlibs="$old_convenience"
  2669.       fi
  2670.       if test -n "$addlibs"; then
  2671. gentop="$output_objdir/${outputname}x"
  2672. $show "${rm}r $gentop"
  2673. $run ${rm}r "$gentop"
  2674. $show "mkdir $gentop"
  2675. $run mkdir "$gentop"
  2676. status=$?
  2677. if test $status -ne 0 && test ! -d "$gentop"; then
  2678.   exit $status
  2679. fi
  2680. generated="$generated $gentop"
  2681.   
  2682. # Add in members from convenience archives.
  2683. for xlib in $addlibs; do
  2684.   # Extract the objects.
  2685.   case "$xlib" in
  2686.   [\/]* | [A-Za-z]:[\/]*) xabs="$xlib" ;;
  2687.   *) xabs=`pwd`"/$xlib" ;;
  2688.   esac
  2689.   xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
  2690.   xdir="$gentop/$xlib"
  2691.   $show "${rm}r $xdir"
  2692.   $run ${rm}r "$xdir"
  2693.   $show "mkdir $xdir"
  2694.   $run mkdir "$xdir"
  2695.   status=$?
  2696.   if test $status -ne 0 && test ! -d "$xdir"; then
  2697.     exit $status
  2698.   fi
  2699.   $show "(cd $xdir && $AR x $xabs)"
  2700.   $run eval "(cd $xdir && $AR x $xabs)" || exit $?
  2701.   oldobjs="$oldobjs "`find $xdir -name *.${objext} -print -o -name *.lo -print | $NL2SP`
  2702. done
  2703.       fi
  2704.       # Do each command in the archive commands.
  2705.       if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then
  2706. eval cmds="$old_archive_from_new_cmds"
  2707.       else
  2708. # Ensure that we have .o objects in place in case we decided
  2709. # not to build a shared library, and have fallen back to building
  2710. # static libs even though --disable-static was passed!
  2711. for oldobj in $oldobjs; do
  2712.   if test ! -f $oldobj; then
  2713.     xdir=`$echo "X$oldobj" | $Xsed -e 's%/[^/]*$%%'`
  2714.     if test "X$xdir" = "X$oldobj"; then
  2715.       xdir="."
  2716.     else
  2717.       xdir="$xdir"
  2718.     fi
  2719.     baseobj=`$echo "X$oldobj" | $Xsed -e 's%^.*/%%'`
  2720.     obj=`$echo "X$baseobj" | $Xsed -e "$o2lo"`
  2721.     $show "(cd $xdir && ${LN_S} $obj $baseobj)"
  2722.     $run eval '(cd $xdir && ${LN_S} $obj $baseobj)' || exit $?
  2723.   fi
  2724. done
  2725. eval cmds="$old_archive_cmds"
  2726.       fi
  2727.       IFS="${IFS=  }"; save_ifs="$IFS"; IFS='~'
  2728.       for cmd in $cmds; do
  2729. IFS="$save_ifs"
  2730. $show "$cmd"
  2731. $run eval "$cmd" || exit $?
  2732.       done
  2733.       IFS="$save_ifs"
  2734.     done
  2735.     if test -n "$generated"; then
  2736.       $show "${rm}r$generated"
  2737.       $run ${rm}r$generated
  2738.     fi
  2739.     # Now create the libtool archive.
  2740.     case "$output" in
  2741.     *.la)
  2742.       old_library=
  2743.       test "$build_old_libs" = yes && old_library="$libname.$libext"
  2744.       $show "creating $output"
  2745.       if test -n "$xrpath"; then
  2746. temp_xrpath=
  2747. for libdir in $xrpath; do
  2748.   temp_xrpath="$temp_xrpath -R$libdir"
  2749. done
  2750. dependency_libs="$temp_xrpath $dependency_libs"
  2751.       fi
  2752.       # Only create the output if not a dry run.
  2753.       if test -z "$run"; then
  2754. for installed in no yes; do
  2755.   if test "$installed" = yes; then
  2756.     if test -z "$install_libdir"; then
  2757.       break
  2758.     fi
  2759.     output="$output_objdir/$outputname"i
  2760.   fi
  2761.   $rm $output
  2762.   $echo > $output "
  2763. # $outputname - a libtool library file
  2764. # Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
  2765. #
  2766. # Please DO NOT delete this file!
  2767. # It is necessary for linking the library.
  2768. # The name that we can dlopen(3).
  2769. dlname='$dlname'
  2770. # Names of this library.
  2771. library_names='$library_names'
  2772. # The name of the static archive.
  2773. old_library='$old_library'
  2774. # Libraries that this one depends upon.
  2775. dependency_libs='$dependency_libs'
  2776. # Version information for $libname.
  2777. current=$current
  2778. age=$age
  2779. revision=$revision
  2780. # Is this an already installed library?
  2781. installed=$installed
  2782. # Directory that this library needs to be installed in:
  2783. libdir='$install_libdir'
  2784. "
  2785. done
  2786.       fi
  2787.       # Do a symbolic link so that the libtool archive can be found in
  2788.       # LD_LIBRARY_PATH before the program is installed.
  2789.       $show "(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)"
  2790.       $run eval "(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)" || exit $?
  2791.       ;;
  2792.     esac
  2793.     exit 0
  2794.     ;;
  2795.   # libtool install mode
  2796.   install)
  2797.     modename="$modename: install"
  2798.     # There may be an optional sh(1) argument at the beginning of
  2799.     # install_prog (especially on Windows NT).
  2800.     if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh; then
  2801.       # Aesthetically quote it.
  2802.       arg=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"`
  2803.       case "$arg" in
  2804.       *[[~#^&*(){}|;<>?'  ]*|*]*)
  2805. arg=""$arg""
  2806. ;;
  2807.       esac
  2808.       install_prog="$arg "
  2809.       arg="$1"
  2810.       shift
  2811.     else
  2812.       install_prog=
  2813.       arg="$nonopt"
  2814.     fi
  2815.     # The real first argument should be the name of the installation program.
  2816.     # Aesthetically quote it.
  2817.     arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
  2818.     case "$arg" in
  2819.     *[[~#^&*(){}|;<>?'  ]*|*]*)
  2820.       arg=""$arg""
  2821.       ;;
  2822.     esac
  2823.     install_prog="$install_prog$arg"
  2824.     # We need to accept at least all the BSD install flags.
  2825.     dest=
  2826.     files=
  2827.     opts=
  2828.     prev=
  2829.     install_type=
  2830.     isdir=no
  2831.     stripme=
  2832.     for arg
  2833.     do
  2834.       if test -n "$dest"; then
  2835. files="$files $dest"
  2836. dest="$arg"
  2837. continue
  2838.       fi
  2839.       case "$arg" in
  2840.       -d) isdir=yes ;;
  2841.       -f) prev="-f" ;;
  2842.       -g) prev="-g" ;;
  2843.       -m) prev="-m" ;;
  2844.       -o) prev="-o" ;;
  2845.       -s)
  2846. stripme=" -s"
  2847. continue
  2848. ;;
  2849.       -*) ;;
  2850.       *)
  2851. # If the previous option needed an argument, then skip it.
  2852. if test -n "$prev"; then
  2853.   prev=
  2854. else
  2855.   dest="$arg"
  2856.   continue
  2857. fi
  2858. ;;
  2859.       esac
  2860.       # Aesthetically quote the argument.
  2861.       arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
  2862.       case "$arg" in
  2863.       *[[~#^&*(){}|;<>?'  ]*|*]*)
  2864. arg=""$arg""
  2865. ;;
  2866.       esac
  2867.       install_prog="$install_prog $arg"
  2868.     done
  2869.     if test -z "$install_prog"; then
  2870.       $echo "$modename: you must specify an install program" 1>&2
  2871.       $echo "$help" 1>&2
  2872.       exit 1
  2873.     fi
  2874.     if test -n "$prev"; then
  2875.       $echo "$modename: the `$prev' option requires an argument" 1>&2
  2876.       $echo "$help" 1>&2
  2877.       exit 1
  2878.     fi
  2879.     if test -z "$files"; then
  2880.       if test -z "$dest"; then
  2881. $echo "$modename: no file or destination specified" 1>&2
  2882.       else
  2883. $echo "$modename: you must specify a destination" 1>&2
  2884.       fi
  2885.       $echo "$help" 1>&2
  2886.       exit 1
  2887.     fi
  2888.     # Strip any trailing slash from the destination.
  2889.     dest=`$echo "X$dest" | $Xsed -e 's%/$%%'`
  2890.     # Check to see that the destination is a directory.
  2891.     test -d "$dest" && isdir=yes
  2892.     if test "$isdir" = yes; then
  2893.       destdir="$dest"
  2894.       destname=
  2895.     else
  2896.       destdir=`$echo "X$dest" | $Xsed -e 's%/[^/]*$%%'`
  2897.       test "X$destdir" = "X$dest" && destdir=.
  2898.       destname=`$echo "X$dest" | $Xsed -e 's%^.*/%%'`
  2899.       # Not a directory, so check to see that there is only one file specified.
  2900.       set dummy $files
  2901.       if test $# -gt 2; then
  2902. $echo "$modename: `$dest' is not a directory" 1>&2
  2903. $echo "$help" 1>&2
  2904. exit 1
  2905.       fi
  2906.     fi
  2907.     case "$destdir" in
  2908.     [\/]* | [A-Za-z]:[\/]*) ;;
  2909.     *)
  2910.       for file in $files; do
  2911. case "$file" in
  2912. *.lo) ;;
  2913. *)
  2914.   $echo "$modename: `$destdir' must be an absolute directory name" 1>&2
  2915.   $echo "$help" 1>&2
  2916.   exit 1
  2917.   ;;
  2918. esac
  2919.       done
  2920.       ;;
  2921.     esac
  2922.     # This variable tells wrapper scripts just to set variables rather
  2923.     # than running their programs.
  2924.     libtool_install_magic="$magic"
  2925.     staticlibs=
  2926.     future_libdirs=
  2927.     current_libdirs=
  2928.     for file in $files; do
  2929.       # Do each installation.
  2930.       case "$file" in
  2931.       *.a | *.lib)
  2932. # Do the static libraries later.
  2933. staticlibs="$staticlibs $file"
  2934. ;;
  2935.       *.la)
  2936. # Check to see that this really is a libtool archive.
  2937. if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
  2938. else
  2939.   $echo "$modename: `$file' is not a valid libtool archive" 1>&2
  2940.   $echo "$help" 1>&2
  2941.   exit 1
  2942. fi
  2943. library_names=
  2944. old_library=
  2945. # If there is no directory component, then add one.
  2946. case "$file" in
  2947. */* | *\*) . $file ;;
  2948. *) . ./$file ;;
  2949. esac
  2950. # Add the libdir to current_libdirs if it is the destination.
  2951. if test "X$destdir" = "X$libdir"; then
  2952.   case "$current_libdirs " in
  2953.   *" $libdir "*) ;;
  2954.   *) current_libdirs="$current_libdirs $libdir" ;;
  2955.   esac
  2956. else
  2957.   # Note the libdir as a future libdir.
  2958.   case "$future_libdirs " in
  2959.   *" $libdir "*) ;;
  2960.   *) future_libdirs="$future_libdirs $libdir" ;;
  2961.   esac
  2962. fi
  2963. dir="`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`/"
  2964. test "X$dir" = "X$file/" && dir=
  2965. dir="$dir$objdir"
  2966. # See the names of the shared library.
  2967. set dummy $library_names
  2968. if test -n "$2"; then
  2969.   realname="$2"
  2970.   shift
  2971.   shift
  2972.   # Install the shared library and build the symlinks.
  2973.   $show "$install_prog $dir/$realname $destdir/$realname"
  2974.   $run eval "$install_prog $dir/$realname $destdir/$realname" || exit $?
  2975.   if test $# -gt 0; then
  2976.     # Delete the old symlinks, and create new ones.
  2977.     for linkname
  2978.     do
  2979.       if test "$linkname" != "$realname"; then
  2980. $show "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)"
  2981. $run eval "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)"
  2982.       fi
  2983.     done
  2984.   fi
  2985.   # Do each command in the postinstall commands.
  2986.   lib="$destdir/$realname"
  2987.   eval cmds="$postinstall_cmds"
  2988.   IFS="${IFS=  }"; save_ifs="$IFS"; IFS='~'
  2989.   for cmd in $cmds; do
  2990.     IFS="$save_ifs"
  2991.     $show "$cmd"
  2992.     $run eval "$cmd" || exit $?
  2993.   done
  2994.   IFS="$save_ifs"
  2995. fi
  2996. # Install the pseudo-library for information purposes.
  2997. name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
  2998. instname="$dir/$name"i
  2999. $show "$install_prog $instname $destdir/$name"
  3000. $run eval "$install_prog $instname $destdir/$name" || exit $?
  3001. # Maybe install the static library, too.
  3002. test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
  3003. ;;
  3004.       *.lo)
  3005. # Install (i.e. copy) a libtool object.
  3006. # Figure out destination file name, if it wasn't already specified.
  3007. if test -n "$destname"; then
  3008.   destfile="$destdir/$destname"
  3009. else
  3010.   destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
  3011.   destfile="$destdir/$destfile"
  3012. fi
  3013. # Deduce the name of the destination old-style object file.
  3014. case "$destfile" in
  3015. *.lo)
  3016.   staticdest=`$echo "X$destfile" | $Xsed -e "$lo2o"`
  3017.   ;;
  3018. *.o | *.obj)
  3019.   staticdest="$destfile"
  3020.   destfile=
  3021.   ;;
  3022. *)
  3023.   $echo "$modename: cannot copy a libtool object to `$destfile'" 1>&2
  3024.   $echo "$help" 1>&2
  3025.   exit 1
  3026.   ;;
  3027. esac
  3028. # Install the libtool object if requested.
  3029. if test -n "$destfile"; then
  3030.   $show "$install_prog $file $destfile"
  3031.   $run eval "$install_prog $file $destfile" || exit $?
  3032. fi
  3033. # Install the old object if enabled.
  3034. if test "$build_old_libs" = yes; then
  3035.   # Deduce the name of the old-style object file.
  3036.   staticobj=`$echo "X$file" | $Xsed -e "$lo2o"`
  3037.   $show "$install_prog $staticobj $staticdest"
  3038.   $run eval "$install_prog $staticobj $staticdest" || exit $?
  3039. fi
  3040. exit 0
  3041. ;;
  3042.       *)
  3043. # Figure out destination file name, if it wasn't already specified.
  3044. if test -n "$destname"; then
  3045.   destfile="$destdir/$destname"
  3046. else
  3047.   destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
  3048.   destfile="$destdir/$destfile"
  3049. fi
  3050. # Do a test to see if this is really a libtool program.
  3051. if (sed -e '4q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
  3052.   link_against_libtool_libs=
  3053.   relink_command=
  3054.   # If there is no directory component, then add one.
  3055.   case "$file" in
  3056.   */* | *\*) . $file ;;
  3057.   *) . ./$file ;;
  3058.   esac
  3059.   # Check the variables that should have been set.
  3060.   if test -z "$link_against_libtool_libs"; then
  3061.     $echo "$modename: invalid libtool wrapper script `$file'" 1>&2
  3062.     exit 1
  3063.   fi
  3064.   finalize=yes
  3065.   for lib in $link_against_libtool_libs; do
  3066.     # Check to see that each library is installed.
  3067.     libdir=
  3068.     if test -f "$lib"; then
  3069.       # If there is no directory component, then add one.
  3070.       case "$lib" in
  3071.       */* | *\*) . $lib ;;
  3072.       *) . ./$lib ;;
  3073.       esac
  3074.     fi
  3075.     libfile="$libdir/`$echo "X$lib" | $Xsed -e 's%^.*/%%g'`"
  3076.     if test -n "$libdir" && test ! -f "$libfile"; then
  3077.       $echo "$modename: warning: `$lib' has not been installed in `$libdir'" 1>&2
  3078.       finalize=no
  3079.     fi
  3080.   done
  3081.   outputname=
  3082.   if test "$fast_install" = no && test -n "$relink_command"; then
  3083.     if test "$finalize" = yes && test -z "$run"; then
  3084.       tmpdir="/tmp"
  3085.       test -n "$TMPDIR" && tmpdir="$TMPDIR"
  3086.       tmpdir="$tmpdir/libtool-$$"
  3087.       if $mkdir -p "$tmpdir" && chmod 700 "$tmpdir"; then :
  3088.       else
  3089. $echo "$modename: error: cannot create temporary directory `$tmpdir'" 1>&2
  3090. continue
  3091.       fi
  3092.       outputname="$tmpdir/$file"
  3093.       # Replace the output file specification.
  3094.       relink_command=`$echo "X$relink_command" | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g'`
  3095.       $show "$relink_command"
  3096.       if $run eval "$relink_command"; then :
  3097.       else
  3098. $echo "$modename: error: relink `$file' with the above command before installing it" 1>&2
  3099. ${rm}r "$tmpdir"
  3100. continue
  3101.       fi
  3102.       file="$outputname"
  3103.     else
  3104.       $echo "$modename: warning: cannot relink `$file'" 1>&2
  3105.     fi
  3106.   else
  3107.     # Install the binary that we compiled earlier.
  3108.     file=`$echo "X$file" | $Xsed -e "s%([^/]*)$%$objdir/1%"`
  3109.   fi
  3110. fi
  3111. $show "$install_prog$stripme $file $destfile"
  3112. $run eval "$install_prog$stripme $file $destfile" || exit $?
  3113. test -n "$outputname" && ${rm}r "$tmpdir"
  3114. ;;
  3115.       esac
  3116.     done
  3117.     for file in $staticlibs; do
  3118.       name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
  3119.       # Set up the ranlib parameters.
  3120.       oldlib="$destdir/$name"
  3121.       $show "$install_prog $file $oldlib"
  3122.       $run eval "$install_prog $file $oldlib" || exit $?
  3123.       # Do each command in the postinstall commands.
  3124.       eval cmds="$old_postinstall_cmds"
  3125.       IFS="${IFS=  }"; save_ifs="$IFS"; IFS='~'
  3126.       for cmd in $cmds; do
  3127. IFS="$save_ifs"
  3128. $show "$cmd"
  3129. $run eval "$cmd" || exit $?
  3130.       done
  3131.       IFS="$save_ifs"
  3132.     done
  3133.     if test -n "$future_libdirs"; then
  3134.       $echo "$modename: warning: remember to run `$progname --finish$future_libdirs'" 1>&2
  3135.     fi
  3136.     if test -n "$current_libdirs"; then
  3137.       # Maybe just do a dry run.
  3138.       test -n "$run" && current_libdirs=" -n$current_libdirs"
  3139.       exec $SHELL $0 --finish$current_libdirs
  3140.       exit 1
  3141.     fi
  3142.     exit 0
  3143.     ;;
  3144.   # libtool finish mode
  3145.   finish)
  3146.     modename="$modename: finish"
  3147.     libdirs="$nonopt"
  3148.     admincmds=
  3149.     if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
  3150.       for dir
  3151.       do
  3152. libdirs="$libdirs $dir"
  3153.       done
  3154.       for libdir in $libdirs; do
  3155. if test -n "$finish_cmds"; then
  3156.   # Do each command in the finish commands.
  3157.   eval cmds="$finish_cmds"
  3158.   IFS="${IFS=  }"; save_ifs="$IFS"; IFS='~'
  3159.   for cmd in $cmds; do
  3160.     IFS="$save_ifs"
  3161.     $show "$cmd"
  3162.     $run eval "$cmd" || admincmds="$admincmds
  3163.        $cmd"
  3164.   done
  3165.   IFS="$save_ifs"
  3166. fi
  3167. if test -n "$finish_eval"; then
  3168.   # Do the single finish_eval.
  3169.   eval cmds="$finish_eval"
  3170.   $run eval "$cmds" || admincmds="$admincmds
  3171.        $cmds"
  3172. fi
  3173.       done
  3174.     fi
  3175.     # Exit here if they wanted silent mode.
  3176.     test "$show" = : && exit 0
  3177.     echo "----------------------------------------------------------------------"
  3178.     echo "Libraries have been installed in:"
  3179.     for libdir in $libdirs; do
  3180.       echo "   $libdir"
  3181.     done
  3182.     echo
  3183.     echo "If you ever happen to want to link against installed libraries"
  3184.     echo "in a given directory, LIBDIR, you must either use libtool, and"
  3185.     echo "specify the full pathname of the library, or use `-LLIBDIR'"
  3186.     echo "flag during linking and do at least one of the following:"
  3187.     if test -n "$shlibpath_var"; then
  3188.       echo "   - add LIBDIR to the `$shlibpath_var' environment variable"
  3189.       echo "     during execution"
  3190.     fi
  3191.     if test -n "$runpath_var"; then
  3192.       echo "   - add LIBDIR to the `$runpath_var' environment variable"
  3193.       echo "     during linking"
  3194.     fi
  3195.     if test -n "$hardcode_libdir_flag_spec"; then
  3196.       libdir=LIBDIR
  3197.       eval flag="$hardcode_libdir_flag_spec"
  3198.       echo "   - use the `$flag' linker flag"
  3199.     fi
  3200.     if test -n "$admincmds"; then
  3201.       echo "   - have your system administrator run these commands:$admincmds"
  3202.     fi
  3203.     if test -f /etc/ld.so.conf; then
  3204.       echo "   - have your system administrator add LIBDIR to `/etc/ld.so.conf'"
  3205.     fi
  3206.     echo
  3207.     echo "See any operating system documentation about shared libraries for"
  3208.     echo "more information, such as the ld(1) and ld.so(8) manual pages."
  3209.     echo "----------------------------------------------------------------------"
  3210.     exit 0
  3211.     ;;
  3212.   # libtool execute mode
  3213.   execute)
  3214.     modename="$modename: execute"
  3215.     # The first argument is the command name.
  3216.     cmd="$nonopt"
  3217.     if test -z "$cmd"; then
  3218.       $echo "$modename: you must specify a COMMAND" 1>&2
  3219.       $echo "$help"
  3220.       exit 1
  3221.     fi
  3222.     # Handle -dlopen flags immediately.
  3223.     for file in $execute_dlfiles; do
  3224.       if test ! -f "$file"; then
  3225. $echo "$modename: `$file' is not a file" 1>&2
  3226. $echo "$help" 1>&2
  3227. exit 1
  3228.       fi
  3229.       dir=
  3230.       case "$file" in
  3231.       *.la)
  3232. # Check to see that this really is a libtool archive.
  3233. if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
  3234. else
  3235.   $echo "$modename: `$lib' is not a valid libtool archive" 1>&2
  3236.   $echo "$help" 1>&2
  3237.   exit 1
  3238. fi
  3239. # Read the libtool library.
  3240. dlname=
  3241. library_names=
  3242. # If there is no directory component, then add one.
  3243. case "$file" in
  3244. */* | *\*) . $file ;;
  3245. *) . ./$file ;;
  3246. esac
  3247. # Skip this library if it cannot be dlopened.
  3248. if test -z "$dlname"; then
  3249.   # Warn if it was a shared library.
  3250.   test -n "$library_names" && $echo "$modename: warning: `$file' was not linked with `-export-dynamic'"
  3251.   continue
  3252. fi
  3253. dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
  3254. test "X$dir" = "X$file" && dir=.
  3255. if test -f "$dir/$objdir/$dlname"; then
  3256.   dir="$dir/$objdir"
  3257. else
  3258.   $echo "$modename: cannot find `$dlname' in `$dir' or `$dir/$objdir'" 1>&2
  3259.   exit 1
  3260. fi
  3261. ;;
  3262.       *.lo)
  3263. # Just add the directory containing the .lo file.
  3264. dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
  3265. test "X$dir" = "X$file" && dir=.
  3266. ;;
  3267.       *)
  3268. $echo "$modename: warning `-dlopen' is ignored for non-libtool libraries and objects" 1>&2
  3269. continue
  3270. ;;
  3271.       esac
  3272.       # Get the absolute pathname.
  3273.       absdir=`cd "$dir" && pwd`
  3274.       test -n "$absdir" && dir="$absdir"
  3275.       # Now add the directory to shlibpath_var.
  3276.       if eval "test -z "$$shlibpath_var""; then
  3277. eval "$shlibpath_var="$dir""
  3278.       else
  3279. eval "$shlibpath_var="$dir:$$shlibpath_var""
  3280.       fi
  3281.     done
  3282.     # This variable tells wrapper scripts just to set shlibpath_var
  3283.     # rather than running their programs.
  3284.     libtool_execute_magic="$magic"
  3285.     # Check if any of the arguments is a wrapper script.
  3286.     args=
  3287.     for file
  3288.     do
  3289.       case "$file" in
  3290.       -*) ;;
  3291.       *)
  3292. # Do a test to see if this is really a libtool program.
  3293. if (sed -e '4q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
  3294.   # If there is no directory component, then add one.
  3295.   case "$file" in
  3296.   */* | *\*) . $file ;;
  3297.   *) . ./$file ;;
  3298.   esac
  3299.   # Transform arg to wrapped name.
  3300.   file="$progdir/$program"
  3301. fi
  3302. ;;
  3303.       esac
  3304.       # Quote arguments (to preserve shell metacharacters).
  3305.       file=`$echo "X$file" | $Xsed -e "$sed_quote_subst"`
  3306.       args="$args "$file""
  3307.     done
  3308.     if test -z "$run"; then
  3309.       if test -n "$shlibpath_var"; then
  3310.         # Export the shlibpath_var.
  3311.         eval "export $shlibpath_var"
  3312.       fi
  3313.       # Restore saved enviroment variables
  3314.       if test "${save_LC_ALL+set}" = set; then
  3315. LC_ALL="$save_LC_ALL"; export LC_ALL
  3316.       fi
  3317.       if test "${save_LANG+set}" = set; then
  3318. LANG="$save_LANG"; export LANG
  3319.       fi
  3320.       # Now actually exec the command.
  3321.       eval "exec $cmd$args"
  3322.       $echo "$modename: cannot exec $cmd$args"
  3323.       exit 1
  3324.     else
  3325.       # Display what would be done.
  3326.       if test -n "$shlibpath_var"; then
  3327.         eval "$echo "$shlibpath_var=$$shlibpath_var""
  3328.         $echo "export $shlibpath_var"
  3329.       fi
  3330.       $echo "$cmd$args"
  3331.       exit 0
  3332.     fi
  3333.     ;;
  3334.   # libtool uninstall mode
  3335.   uninstall)
  3336.     modename="$modename: uninstall"
  3337.     rm="$nonopt"
  3338.     files=
  3339.     for arg
  3340.     do
  3341.       case "$arg" in
  3342.       -*) rm="$rm $arg" ;;
  3343.       *) files="$files $arg" ;;
  3344.       esac
  3345.     done
  3346.     if test -z "$rm"; then
  3347.       $echo "$modename: you must specify an RM program" 1>&2
  3348.       $echo "$help" 1>&2
  3349.       exit 1
  3350.     fi
  3351.     for file in $files; do
  3352.       dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
  3353.       test "X$dir" = "X$file" && dir=.
  3354.       name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
  3355.       rmfiles="$file"
  3356.       case "$name" in
  3357.       *.la)
  3358. # Possibly a libtool archive, so verify it.
  3359. if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
  3360.   . $dir/$name
  3361.   # Delete the libtool libraries and symlinks.
  3362.   for n in $library_names; do
  3363.     rmfiles="$rmfiles $dir/$n"
  3364.   done
  3365.   test -n "$old_library" && rmfiles="$rmfiles $dir/$old_library"
  3366.   $show "$rm $rmfiles"
  3367.   $run $rm $rmfiles
  3368.   if test -n "$library_names"; then
  3369.     # Do each command in the postuninstall commands.
  3370.     eval cmds="$postuninstall_cmds"
  3371.     IFS="${IFS=  }"; save_ifs="$IFS"; IFS='~'
  3372.     for cmd in $cmds; do
  3373.       IFS="$save_ifs"
  3374.       $show "$cmd"
  3375.       $run eval "$cmd"
  3376.     done
  3377.     IFS="$save_ifs"
  3378.   fi
  3379.   if test -n "$old_library"; then
  3380.     # Do each command in the old_postuninstall commands.
  3381.     eval cmds="$old_postuninstall_cmds"
  3382.     IFS="${IFS=  }"; save_ifs="$IFS"; IFS='~'
  3383.     for cmd in $cmds; do
  3384.       IFS="$save_ifs"
  3385.       $show "$cmd"
  3386.       $run eval "$cmd"
  3387.     done
  3388.     IFS="$save_ifs"
  3389.   fi
  3390.   # FIXME: should reinstall the best remaining shared library.
  3391. fi
  3392. ;;
  3393.       *.lo)
  3394. if test "$build_old_libs" = yes; then
  3395.   oldobj=`$echo "X$name" | $Xsed -e "$lo2o"`
  3396.   rmfiles="$rmfiles $dir/$oldobj"
  3397. fi
  3398. $show "$rm $rmfiles"
  3399. $run $rm $rmfiles
  3400. ;;
  3401.       *)
  3402. $show "$rm $rmfiles"
  3403. $run $rm $rmfiles
  3404. ;;
  3405.       esac
  3406.     done
  3407.     exit 0
  3408.     ;;
  3409.   "")
  3410.     $echo "$modename: you must specify a MODE" 1>&2
  3411.     $echo "$generic_help" 1>&2
  3412.     exit 1
  3413.     ;;
  3414.   esac
  3415.   $echo "$modename: invalid operation mode `$mode'" 1>&2
  3416.   $echo "$generic_help" 1>&2
  3417.   exit 1
  3418. fi # test -z "$show_help"
  3419. # We need to display help for each of the modes.
  3420. case "$mode" in
  3421. "") $echo 
  3422. "Usage: $modename [OPTION]... [MODE-ARG]...
  3423. Provide generalized library-building support services.
  3424.     --config          show all configuration variables
  3425.     --debug           enable verbose shell tracing
  3426. -n, --dry-run         display commands without modifying any files
  3427.     --features        display basic configuration information and exit
  3428.     --finish          same as `--mode=finish'
  3429.     --help            display this help message and exit
  3430.     --mode=MODE       use operation mode MODE [default=inferred from MODE-ARGS]
  3431.     --quiet           same as `--silent'
  3432.     --silent          don't print informational messages
  3433.     --version         print version information
  3434. MODE must be one of the following:
  3435.       compile         compile a source file into a libtool object
  3436.       execute         automatically set library path, then run a program
  3437.       finish          complete the installation of libtool libraries
  3438.       install         install libraries or executables
  3439.       link            create a library or an executable
  3440.       uninstall       remove libraries from an installed directory
  3441. MODE-ARGS vary depending on the MODE.  Try `$modename --help --mode=MODE' for
  3442. a more detailed description of MODE."
  3443.   exit 0
  3444.   ;;
  3445. compile)
  3446.   $echo 
  3447. "Usage: $modename [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE
  3448. Compile a source file into a libtool library object.
  3449. This mode accepts the following additional options:
  3450.   -o OUTPUT-FILE    set the output file name to OUTPUT-FILE
  3451.   -static           always build a `.o' file suitable for static linking
  3452. COMPILE-COMMAND is a command to be used in creating a `standard' object file
  3453. from the given SOURCEFILE.
  3454. The output file name is determined by removing the directory component from
  3455. SOURCEFILE, then substituting the C source code suffix `.c' with the
  3456. library object suffix, `.lo'."
  3457.   ;;
  3458. execute)
  3459.   $echo 
  3460. "Usage: $modename [OPTION]... --mode=execute COMMAND [ARGS]...
  3461. Automatically set library path, then run a program.
  3462. This mode accepts the following additional options:
  3463.   -dlopen FILE      add the directory containing FILE to the library path
  3464. This mode sets the library path environment variable according to `-dlopen'
  3465. flags.
  3466. If any of the ARGS are libtool executable wrappers, then they are translated
  3467. into their corresponding uninstalled binary, and any of their required library
  3468. directories are added to the library path.
  3469. Then, COMMAND is executed, with ARGS as arguments."
  3470.   ;;
  3471. finish)
  3472.   $echo 
  3473. "Usage: $modename [OPTION]... --mode=finish [LIBDIR]...
  3474. Complete the installation of libtool libraries.
  3475. Each LIBDIR is a directory that contains libtool libraries.
  3476. The commands that this mode executes may require superuser privileges.  Use
  3477. the `--dry-run' option if you just want to see what would be executed."
  3478.   ;;
  3479. install)
  3480.   $echo 
  3481. "Usage: $modename [OPTION]... --mode=install INSTALL-COMMAND...
  3482. Install executables or libraries.
  3483. INSTALL-COMMAND is the installation command.  The first component should be
  3484. either the `install' or `cp' program.
  3485. The rest of the components are interpreted as arguments to that command (only
  3486. BSD-compatible install options are recognized)."
  3487.   ;;
  3488. link)
  3489.   $echo 
  3490. "Usage: $modename [OPTION]... --mode=link LINK-COMMAND...
  3491. Link object files or libraries together to form another library, or to
  3492. create an executable program.
  3493. LINK-COMMAND is a command using the C compiler that you would use to create
  3494. a program from several object files.
  3495. The following components of LINK-COMMAND are treated specially:
  3496.   -all-static       do not do any dynamic linking at all
  3497.   -avoid-version    do not add a version suffix if possible
  3498.   -dlopen FILE      `-dlpreopen' FILE if it cannot be dlopened at runtime
  3499.   -dlpreopen FILE   link in FILE and add its symbols to lt_preloaded_symbols
  3500.   -export-dynamic   allow symbols from OUTPUT-FILE to be resolved with dlsym(3)
  3501.   -export-symbols SYMFILE
  3502.     try to export only the symbols listed in SYMFILE
  3503.   -export-symbols-regex REGEX
  3504.     try to export only the symbols matching REGEX
  3505.   -LLIBDIR          search LIBDIR for required installed libraries
  3506.   -lNAME            OUTPUT-FILE requires the installed library libNAME
  3507.   -module           build a library that can dlopened
  3508.   -no-undefined     declare that a library does not refer to external symbols
  3509.   -o OUTPUT-FILE    create OUTPUT-FILE from the specified objects
  3510.   -release RELEASE  specify package release information
  3511.   -rpath LIBDIR     the created library will eventually be installed in LIBDIR
  3512.   -R[ ]LIBDIR       add LIBDIR to the runtime path of programs and libraries
  3513.   -static           do not do any dynamic linking of libtool libraries
  3514.   -version-info CURRENT[:REVISION[:AGE]]
  3515.     specify library version info [each variable defaults to 0]
  3516. All other options (arguments beginning with `-') are ignored.
  3517. Every other argument is treated as a filename.  Files ending in `.la' are
  3518. treated as uninstalled libtool libraries, other files are standard or library
  3519. object files.
  3520. If the OUTPUT-FILE ends in `.la', then a libtool library is created,
  3521. only library objects (`.lo' files) may be specified, and `-rpath' is
  3522. required, except when creating a convenience library.
  3523. If OUTPUT-FILE ends in `.a' or `.lib', then a standard library is created
  3524. using `ar' and `ranlib', or on Windows using `lib'.
  3525. If OUTPUT-FILE ends in `.lo' or `.${objext}', then a reloadable object file
  3526. is created, otherwise an executable program is created."
  3527.   ;;
  3528. uninstall)
  3529.   $echo 
  3530. "Usage: $modename [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...
  3531. Remove libraries from an installation directory.
  3532. RM is the name of the program to use to delete files associated with each FILE
  3533. (typically `/bin/rm').  RM-OPTIONS are options (such as `-f') to be passed
  3534. to RM.
  3535. If FILE is a libtool library, all the files associated with it are deleted.
  3536. Otherwise, only FILE itself is deleted using RM."
  3537.   ;;
  3538. *)
  3539.   $echo "$modename: invalid operation mode `$mode'" 1>&2
  3540.   $echo "$help" 1>&2
  3541.   exit 1
  3542.   ;;
  3543. esac
  3544. echo
  3545. $echo "Try `$modename --help' for more information about other modes."
  3546. exit 0
  3547. # Local Variables:
  3548. # mode:shell-script
  3549. # sh-indentation:2
  3550. # End:
  3551. #! /bin/bash