~ubuntu-branches/ubuntu/maverick/at-spi/maverick

« back to all changes in this revision

Viewing changes to ltmain.sh

  • Committer: Bazaar Package Importer
  • Author(s): Luke Yelavich
  • Date: 2009-09-23 08:38:27 UTC
  • mfrom: (1.1.45 upstream)
  • Revision ID: james.westby@ubuntu.com-20090923083827-lgmk1ulka14gji51
Tags: 1.28.0-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Generated from ltmain.m4sh.
2
 
 
3
 
# ltmain.sh (GNU libtool) 2.2.6
4
 
# Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
5
 
 
6
 
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007 2008 Free Software Foundation, Inc.
7
 
# This is free software; see the source for copying conditions.  There is NO
8
 
# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
9
 
 
10
 
# GNU Libtool is free software; you can redistribute it and/or modify
 
1
# ltmain.sh - Provide generalized library-building support services.
 
2
# NOTE: Changing this file will not affect anything until you rerun configure.
 
3
#
 
4
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005
 
5
# Free Software Foundation, Inc.
 
6
# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
 
7
#
 
8
# This program is free software; you can redistribute it and/or modify
11
9
# it under the terms of the GNU General Public License as published by
12
10
# the Free Software Foundation; either version 2 of the License, or
13
11
# (at your option) any later version.
14
12
#
15
 
# As a special exception to the GNU General Public License,
16
 
# if you distribute this file as part of a program or library that
17
 
# is built using GNU Libtool, you may include this file under the
18
 
# same distribution terms that you use for the rest of that program.
19
 
#
20
 
# GNU Libtool is distributed in the hope that it will be useful, but
 
13
# This program is distributed in the hope that it will be useful, but
21
14
# WITHOUT ANY WARRANTY; without even the implied warranty of
22
15
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
23
16
# General Public License for more details.
24
17
#
25
18
# You should have received a copy of the GNU General Public License
26
 
# along with GNU Libtool; see the file COPYING.  If not, a copy
27
 
# can be downloaded from http://www.gnu.org/licenses/gpl.html,
28
 
# or obtained by writing to the Free Software Foundation, Inc.,
29
 
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
30
 
 
31
 
# Usage: $progname [OPTION]... [MODE-ARG]...
32
 
#
33
 
# Provide generalized library-building support services.
34
 
#
35
 
#     --config             show all configuration variables
36
 
#     --debug              enable verbose shell tracing
37
 
# -n, --dry-run            display commands without modifying any files
38
 
#     --features           display basic configuration information and exit
39
 
#     --mode=MODE          use operation mode MODE
40
 
#     --preserve-dup-deps  don't remove duplicate dependency libraries
41
 
#     --quiet, --silent    don't print informational messages
42
 
#     --tag=TAG            use configuration variables from tag TAG
43
 
# -v, --verbose            print informational messages (default)
44
 
#     --version            print version information
45
 
# -h, --help               print short or long help message
46
 
#
47
 
# MODE must be one of the following:
48
 
#
49
 
#       clean              remove files from the build directory
50
 
#       compile            compile a source file into a libtool object
51
 
#       execute            automatically set library path, then run a program
52
 
#       finish             complete the installation of libtool libraries
53
 
#       install            install libraries or executables
54
 
#       link               create a library or an executable
55
 
#       uninstall          remove libraries from an installed directory
56
 
#
57
 
# MODE-ARGS vary depending on the MODE.
58
 
# Try `$progname --help --mode=MODE' for a more detailed description of MODE.
59
 
#
60
 
# When reporting a bug, please describe a test case to reproduce it and
61
 
# include the following information:
62
 
#
63
 
#       host-triplet:   $host
64
 
#       shell:          $SHELL
65
 
#       compiler:               $LTCC
66
 
#       compiler flags:         $LTCFLAGS
67
 
#       linker:         $LD (gnu? $with_gnu_ld)
68
 
#       $progname:              (GNU libtool) 2.2.6 Debian-2.2.6a-4
69
 
#       automake:               $automake_version
70
 
#       autoconf:               $autoconf_version
71
 
#
72
 
# Report bugs to <bug-libtool@gnu.org>.
73
 
 
74
 
PROGRAM=ltmain.sh
75
 
PACKAGE=libtool
76
 
VERSION="2.2.6 Debian-2.2.6a-4"
77
 
TIMESTAMP=""
78
 
package_revision=1.3012
79
 
 
80
 
# Be Bourne compatible
81
 
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
82
 
  emulate sh
83
 
  NULLCMD=:
84
 
  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
85
 
  # is contrary to our usage.  Disable this feature.
86
 
  alias -g '${1+"$@"}'='"$@"'
87
 
  setopt NO_GLOB_SUBST
88
 
else
89
 
  case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
90
 
fi
91
 
BIN_SH=xpg4; export BIN_SH # for Tru64
92
 
DUALCASE=1; export DUALCASE # for MKS sh
93
 
 
94
 
# NLS nuisances: We save the old values to restore during execute mode.
95
 
# Only set LANG and LC_ALL to C if already set.
96
 
# These must not be set unconditionally because not all systems understand
97
 
# e.g. LANG=C (notably SCO).
98
 
lt_user_locale=
99
 
lt_safe_locale=
100
 
for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES
101
 
do
102
 
  eval "if test \"\${$lt_var+set}\" = set; then
103
 
          save_$lt_var=\$$lt_var
104
 
          $lt_var=C
105
 
          export $lt_var
106
 
          lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\"
107
 
          lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\"
108
 
        fi"
109
 
done
110
 
 
111
 
$lt_unset CDPATH
112
 
 
113
 
 
114
 
 
115
 
 
116
 
 
117
 
: ${CP="cp -f"}
118
 
: ${ECHO="echo"}
119
 
: ${EGREP="/bin/grep -E"}
120
 
: ${FGREP="/bin/grep -F"}
121
 
: ${GREP="/bin/grep"}
122
 
: ${LN_S="ln -s"}
123
 
: ${MAKE="make"}
124
 
: ${MKDIR="mkdir"}
125
 
: ${MV="mv -f"}
126
 
: ${RM="rm -f"}
127
 
: ${SED="/bin/sed"}
128
 
: ${SHELL="${CONFIG_SHELL-/bin/sh}"}
129
 
: ${Xsed="$SED -e 1s/^X//"}
130
 
 
131
 
# Global variables:
132
 
EXIT_SUCCESS=0
133
 
EXIT_FAILURE=1
134
 
EXIT_MISMATCH=63  # $? = 63 is used to indicate version mismatch to missing.
135
 
EXIT_SKIP=77      # $? = 77 is used to indicate a skipped test to automake.
136
 
 
137
 
exit_status=$EXIT_SUCCESS
138
 
 
139
 
# Make sure IFS has a sensible default
140
 
lt_nl='
141
 
'
142
 
IFS="   $lt_nl"
143
 
 
144
 
dirname="s,/[^/]*$,,"
145
 
basename="s,^.*/,,"
146
 
 
147
 
# func_dirname_and_basename file append nondir_replacement
148
 
# perform func_basename and func_dirname in a single function
149
 
# call:
150
 
#   dirname:  Compute the dirname of FILE.  If nonempty,
151
 
#             add APPEND to the result, otherwise set result
152
 
#             to NONDIR_REPLACEMENT.
153
 
#             value returned in "$func_dirname_result"
154
 
#   basename: Compute filename of FILE.
155
 
#             value retuned in "$func_basename_result"
156
 
# Implementation must be kept synchronized with func_dirname
157
 
# and func_basename. For efficiency, we do not delegate to
158
 
# those functions but instead duplicate the functionality here.
159
 
func_dirname_and_basename ()
160
 
{
161
 
  # Extract subdirectory from the argument.
162
 
  func_dirname_result=`$ECHO "X${1}" | $Xsed -e "$dirname"`
163
 
  if test "X$func_dirname_result" = "X${1}"; then
164
 
    func_dirname_result="${3}"
165
 
  else
166
 
    func_dirname_result="$func_dirname_result${2}"
167
 
  fi
168
 
  func_basename_result=`$ECHO "X${1}" | $Xsed -e "$basename"`
169
 
}
170
 
 
171
 
# Generated shell functions inserted here.
 
19
# along with this program; if not, write to the Free Software
 
20
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
21
#
 
22
# As a special exception to the GNU General Public License, if you
 
23
# distribute this file as part of a program that contains a
 
24
# configuration script generated by Autoconf, you may include it under
 
25
# the same distribution terms that you use for the rest of that program.
 
26
 
 
27
basename="s,^.*/,,g"
172
28
 
173
29
# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh
174
30
# is ksh but when the shell is invoked as "sh" and the current value of
178
34
progpath="$0"
179
35
 
180
36
# The name of this program:
181
 
# In the unlikely event $progname began with a '-', it would play havoc with
182
 
# func_echo (imagine progname=-n), so we prepend ./ in that case:
183
 
func_dirname_and_basename "$progpath"
184
 
progname=$func_basename_result
185
 
case $progname in
186
 
  -*) progname=./$progname ;;
187
 
esac
188
 
 
189
 
# Make sure we have an absolute path for reexecution:
190
 
case $progpath in
191
 
  [\\/]*|[A-Za-z]:\\*) ;;
192
 
  *[\\/]*)
193
 
     progdir=$func_dirname_result
194
 
     progdir=`cd "$progdir" && pwd`
195
 
     progpath="$progdir/$progname"
196
 
     ;;
197
 
  *)
198
 
     save_IFS="$IFS"
199
 
     IFS=:
200
 
     for progdir in $PATH; do
201
 
       IFS="$save_IFS"
202
 
       test -x "$progdir/$progname" && break
203
 
     done
204
 
     IFS="$save_IFS"
205
 
     test -n "$progdir" || progdir=`pwd`
206
 
     progpath="$progdir/$progname"
207
 
     ;;
208
 
esac
209
 
 
210
 
# Sed substitution that helps us do robust quoting.  It backslashifies
211
 
# metacharacters that are still active within double-quoted strings.
212
 
Xsed="${SED}"' -e 1s/^X//'
213
 
sed_quote_subst='s/\([`"$\\]\)/\\\1/g'
214
 
 
215
 
# Same as above, but do not quote variable references.
216
 
double_quote_subst='s/\(["`\\]\)/\\\1/g'
217
 
 
218
 
# Re-`\' parameter expansions in output of double_quote_subst that were
219
 
# `\'-ed in input to the same.  If an odd number of `\' preceded a '$'
220
 
# in input to double_quote_subst, that '$' was protected from expansion.
221
 
# Since each input `\' is now two `\'s, look for any number of runs of
222
 
# four `\'s followed by two `\'s and then a '$'.  `\' that '$'.
223
 
bs='\\'
224
 
bs2='\\\\'
225
 
bs4='\\\\\\\\'
226
 
dollar='\$'
227
 
sed_double_backslash="\
228
 
  s/$bs4/&\\
229
 
/g
230
 
  s/^$bs2$dollar/$bs&/
231
 
  s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g
232
 
  s/\n//g"
233
 
 
234
 
# Standard options:
235
 
opt_dry_run=false
236
 
opt_help=false
237
 
opt_quiet=false
238
 
opt_verbose=false
239
 
opt_warning=:
240
 
 
241
 
# func_echo arg...
242
 
# Echo program name prefixed message, along with the current mode
243
 
# name if it has been set yet.
244
 
func_echo ()
245
 
{
246
 
    $ECHO "$progname${mode+: }$mode: $*"
247
 
}
248
 
 
249
 
# func_verbose arg...
250
 
# Echo program name prefixed message in verbose mode only.
251
 
func_verbose ()
252
 
{
253
 
    $opt_verbose && func_echo ${1+"$@"}
254
 
 
255
 
    # A bug in bash halts the script if the last line of a function
256
 
    # fails when set -e is in force, so we need another command to
257
 
    # work around that:
258
 
    :
259
 
}
260
 
 
261
 
# func_error arg...
262
 
# Echo program name prefixed message to standard error.
263
 
func_error ()
264
 
{
265
 
    $ECHO "$progname${mode+: }$mode: "${1+"$@"} 1>&2
266
 
}
267
 
 
268
 
# func_warning arg...
269
 
# Echo program name prefixed warning message to standard error.
270
 
func_warning ()
271
 
{
272
 
    $opt_warning && $ECHO "$progname${mode+: }$mode: warning: "${1+"$@"} 1>&2
273
 
 
274
 
    # bash bug again:
275
 
    :
276
 
}
277
 
 
278
 
# func_fatal_error arg...
279
 
# Echo program name prefixed message to standard error, and exit.
280
 
func_fatal_error ()
281
 
{
282
 
    func_error ${1+"$@"}
283
 
    exit $EXIT_FAILURE
284
 
}
285
 
 
286
 
# func_fatal_help arg...
287
 
# Echo program name prefixed message to standard error, followed by
288
 
# a help hint, and exit.
289
 
func_fatal_help ()
290
 
{
291
 
    func_error ${1+"$@"}
292
 
    func_fatal_error "$help"
293
 
}
294
 
help="Try \`$progname --help' for more information."  ## default
295
 
 
296
 
 
297
 
# func_grep expression filename
298
 
# Check whether EXPRESSION matches any line of FILENAME, without output.
299
 
func_grep ()
300
 
{
301
 
    $GREP "$1" "$2" >/dev/null 2>&1
302
 
}
303
 
 
304
 
 
305
 
# func_mkdir_p directory-path
306
 
# Make sure the entire path to DIRECTORY-PATH is available.
307
 
func_mkdir_p ()
308
 
{
309
 
    my_directory_path="$1"
310
 
    my_dir_list=
311
 
 
312
 
    if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then
313
 
 
314
 
      # Protect directory names starting with `-'
315
 
      case $my_directory_path in
316
 
        -*) my_directory_path="./$my_directory_path" ;;
317
 
      esac
318
 
 
319
 
      # While some portion of DIR does not yet exist...
320
 
      while test ! -d "$my_directory_path"; do
321
 
        # ...make a list in topmost first order.  Use a colon delimited
322
 
        # list incase some portion of path contains whitespace.
323
 
        my_dir_list="$my_directory_path:$my_dir_list"
324
 
 
325
 
        # If the last portion added has no slash in it, the list is done
326
 
        case $my_directory_path in */*) ;; *) break ;; esac
327
 
 
328
 
        # ...otherwise throw away the child directory and loop
329
 
        my_directory_path=`$ECHO "X$my_directory_path" | $Xsed -e "$dirname"`
330
 
      done
331
 
      my_dir_list=`$ECHO "X$my_dir_list" | $Xsed -e 's,:*$,,'`
332
 
 
333
 
      save_mkdir_p_IFS="$IFS"; IFS=':'
334
 
      for my_dir in $my_dir_list; do
335
 
        IFS="$save_mkdir_p_IFS"
336
 
        # mkdir can fail with a `File exist' error if two processes
337
 
        # try to create one of the directories concurrently.  Don't
338
 
        # stop in that case!
339
 
        $MKDIR "$my_dir" 2>/dev/null || :
340
 
      done
341
 
      IFS="$save_mkdir_p_IFS"
342
 
 
343
 
      # Bail out if we (or some other process) failed to create a directory.
344
 
      test -d "$my_directory_path" || \
345
 
        func_fatal_error "Failed to create \`$1'"
346
 
    fi
347
 
}
348
 
 
349
 
 
350
 
# func_mktempdir [string]
351
 
# Make a temporary directory that won't clash with other running
352
 
# libtool processes, and avoids race conditions if possible.  If
353
 
# given, STRING is the basename for that directory.
354
 
func_mktempdir ()
355
 
{
356
 
    my_template="${TMPDIR-/tmp}/${1-$progname}"
357
 
 
358
 
    if test "$opt_dry_run" = ":"; then
359
 
      # Return a directory name, but don't create it in dry-run mode
360
 
      my_tmpdir="${my_template}-$$"
361
 
    else
362
 
 
363
 
      # If mktemp works, use that first and foremost
364
 
      my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null`
365
 
 
366
 
      if test ! -d "$my_tmpdir"; then
367
 
        # Failing that, at least try and use $RANDOM to avoid a race
368
 
        my_tmpdir="${my_template}-${RANDOM-0}$$"
369
 
 
370
 
        save_mktempdir_umask=`umask`
371
 
        umask 0077
372
 
        $MKDIR "$my_tmpdir"
373
 
        umask $save_mktempdir_umask
374
 
      fi
375
 
 
376
 
      # If we're not in dry-run mode, bomb out on failure
377
 
      test -d "$my_tmpdir" || \
378
 
        func_fatal_error "cannot create temporary directory \`$my_tmpdir'"
379
 
    fi
380
 
 
381
 
    $ECHO "X$my_tmpdir" | $Xsed
382
 
}
383
 
 
384
 
 
385
 
# func_quote_for_eval arg
386
 
# Aesthetically quote ARG to be evaled later.
387
 
# This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT
388
 
# is double-quoted, suitable for a subsequent eval, whereas
389
 
# FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters
390
 
# which are still active within double quotes backslashified.
391
 
func_quote_for_eval ()
392
 
{
393
 
    case $1 in
394
 
      *[\\\`\"\$]*)
395
 
        func_quote_for_eval_unquoted_result=`$ECHO "X$1" | $Xsed -e "$sed_quote_subst"` ;;
396
 
      *)
397
 
        func_quote_for_eval_unquoted_result="$1" ;;
398
 
    esac
399
 
 
400
 
    case $func_quote_for_eval_unquoted_result in
401
 
      # Double-quote args containing shell metacharacters to delay
402
 
      # word splitting, command substitution and and variable
403
 
      # expansion for a subsequent eval.
404
 
      # Many Bourne shells cannot handle close brackets correctly
405
 
      # in scan sets, so we specify it separately.
406
 
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \     ]*|*]*|"")
407
 
        func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\""
408
 
        ;;
409
 
      *)
410
 
        func_quote_for_eval_result="$func_quote_for_eval_unquoted_result"
411
 
    esac
412
 
}
413
 
 
414
 
 
415
 
# func_quote_for_expand arg
416
 
# Aesthetically quote ARG to be evaled later; same as above,
417
 
# but do not quote variable references.
418
 
func_quote_for_expand ()
419
 
{
420
 
    case $1 in
421
 
      *[\\\`\"]*)
422
 
        my_arg=`$ECHO "X$1" | $Xsed \
423
 
            -e "$double_quote_subst" -e "$sed_double_backslash"` ;;
424
 
      *)
425
 
        my_arg="$1" ;;
426
 
    esac
427
 
 
428
 
    case $my_arg in
429
 
      # Double-quote args containing shell metacharacters to delay
430
 
      # word splitting and command substitution for a subsequent eval.
431
 
      # Many Bourne shells cannot handle close brackets correctly
432
 
      # in scan sets, so we specify it separately.
433
 
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \     ]*|*]*|"")
434
 
        my_arg="\"$my_arg\""
435
 
        ;;
436
 
    esac
437
 
 
438
 
    func_quote_for_expand_result="$my_arg"
439
 
}
440
 
 
441
 
 
442
 
# func_show_eval cmd [fail_exp]
443
 
# Unless opt_silent is true, then output CMD.  Then, if opt_dryrun is
444
 
# not true, evaluate CMD.  If the evaluation of CMD fails, and FAIL_EXP
445
 
# is given, then evaluate it.
446
 
func_show_eval ()
447
 
{
448
 
    my_cmd="$1"
449
 
    my_fail_exp="${2-:}"
450
 
 
451
 
    ${opt_silent-false} || {
452
 
      func_quote_for_expand "$my_cmd"
453
 
      eval "func_echo $func_quote_for_expand_result"
454
 
    }
455
 
 
456
 
    if ${opt_dry_run-false}; then :; else
457
 
      eval "$my_cmd"
458
 
      my_status=$?
459
 
      if test "$my_status" -eq 0; then :; else
460
 
        eval "(exit $my_status); $my_fail_exp"
461
 
      fi
462
 
    fi
463
 
}
464
 
 
465
 
 
466
 
# func_show_eval_locale cmd [fail_exp]
467
 
# Unless opt_silent is true, then output CMD.  Then, if opt_dryrun is
468
 
# not true, evaluate CMD.  If the evaluation of CMD fails, and FAIL_EXP
469
 
# is given, then evaluate it.  Use the saved locale for evaluation.
470
 
func_show_eval_locale ()
471
 
{
472
 
    my_cmd="$1"
473
 
    my_fail_exp="${2-:}"
474
 
 
475
 
    ${opt_silent-false} || {
476
 
      func_quote_for_expand "$my_cmd"
477
 
      eval "func_echo $func_quote_for_expand_result"
478
 
    }
479
 
 
480
 
    if ${opt_dry_run-false}; then :; else
481
 
      eval "$lt_user_locale
482
 
            $my_cmd"
483
 
      my_status=$?
484
 
      eval "$lt_safe_locale"
485
 
      if test "$my_status" -eq 0; then :; else
486
 
        eval "(exit $my_status); $my_fail_exp"
487
 
      fi
488
 
    fi
489
 
}
490
 
 
491
 
 
492
 
 
493
 
 
494
 
 
495
 
# func_version
496
 
# Echo version message to standard output and exit.
497
 
func_version ()
498
 
{
499
 
    $SED -n '/^# '$PROGRAM' (GNU /,/# warranty; / {
500
 
        s/^# //
501
 
        s/^# *$//
502
 
        s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/
503
 
        p
504
 
     }' < "$progpath"
505
 
     exit $?
506
 
}
507
 
 
508
 
# func_usage
509
 
# Echo short help message to standard output and exit.
510
 
func_usage ()
511
 
{
512
 
    $SED -n '/^# Usage:/,/# -h/ {
513
 
        s/^# //
514
 
        s/^# *$//
515
 
        s/\$progname/'$progname'/
516
 
        p
517
 
    }' < "$progpath"
518
 
    $ECHO
519
 
    $ECHO "run \`$progname --help | more' for full usage"
520
 
    exit $?
521
 
}
522
 
 
523
 
# func_help
524
 
# Echo long help message to standard output and exit.
525
 
func_help ()
526
 
{
527
 
    $SED -n '/^# Usage:/,/# Report bugs to/ {
528
 
        s/^# //
529
 
        s/^# *$//
530
 
        s*\$progname*'$progname'*
531
 
        s*\$host*'"$host"'*
532
 
        s*\$SHELL*'"$SHELL"'*
533
 
        s*\$LTCC*'"$LTCC"'*
534
 
        s*\$LTCFLAGS*'"$LTCFLAGS"'*
535
 
        s*\$LD*'"$LD"'*
536
 
        s/\$with_gnu_ld/'"$with_gnu_ld"'/
537
 
        s/\$automake_version/'"`(automake --version) 2>/dev/null |$SED 1q`"'/
538
 
        s/\$autoconf_version/'"`(autoconf --version) 2>/dev/null |$SED 1q`"'/
539
 
        p
540
 
     }' < "$progpath"
541
 
    exit $?
542
 
}
543
 
 
544
 
# func_missing_arg argname
545
 
# Echo program name prefixed message to standard error and set global
546
 
# exit_cmd.
547
 
func_missing_arg ()
548
 
{
549
 
    func_error "missing argument for $1"
550
 
    exit_cmd=exit
551
 
}
552
 
 
553
 
exit_cmd=:
554
 
 
555
 
 
556
 
 
557
 
 
558
 
 
559
 
# Check that we have a working $ECHO.
 
37
progname=`echo "$progpath" | $SED $basename`
 
38
modename="$progname"
 
39
 
 
40
# Global variables:
 
41
EXIT_SUCCESS=0
 
42
EXIT_FAILURE=1
 
43
 
 
44
PROGRAM=ltmain.sh
 
45
PACKAGE=libtool
 
46
VERSION=1.5.22
 
47
TIMESTAMP=" (1.1220.2.365 2005/12/18 22:14:06)"
 
48
 
 
49
# See if we are running on zsh, and set the options which allow our
 
50
# commands through without removal of \ escapes.
 
51
if test -n "${ZSH_VERSION+set}" ; then
 
52
  setopt NO_GLOB_SUBST
 
53
fi
 
54
 
 
55
# Check that we have a working $echo.
560
56
if test "X$1" = X--no-reexec; then
561
57
  # Discard the --no-reexec flag, and continue.
562
58
  shift
563
59
elif test "X$1" = X--fallback-echo; then
564
60
  # Avoid inline document here, it may be left over
565
61
  :
566
 
elif test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t'; then
567
 
  # Yippee, $ECHO works!
 
62
elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then
 
63
  # Yippee, $echo works!
568
64
  :
569
65
else
570
 
  # Restart under the correct shell, and then maybe $ECHO will work.
 
66
  # Restart under the correct shell, and then maybe $echo will work.
571
67
  exec $SHELL "$progpath" --no-reexec ${1+"$@"}
572
68
fi
573
69
 
580
76
  exit $EXIT_SUCCESS
581
77
fi
582
78
 
 
79
default_mode=
 
80
help="Try \`$progname --help' for more information."
583
81
magic="%%%MAGIC variable%%%"
584
 
magic_exe="%%%MAGIC EXE variable%%%"
 
82
mkdir="mkdir"
 
83
mv="mv -f"
 
84
rm="rm -f"
 
85
 
 
86
# Sed substitution that helps us do robust quoting.  It backslashifies
 
87
# metacharacters that are still active within double-quoted strings.
 
88
Xsed="${SED}"' -e 1s/^X//'
 
89
sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g'
 
90
# test EBCDIC or ASCII
 
91
case `echo X|tr X '\101'` in
 
92
 A) # ASCII based system
 
93
    # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr
 
94
  SP2NL='tr \040 \012'
 
95
  NL2SP='tr \015\012 \040\040'
 
96
  ;;
 
97
 *) # EBCDIC based system
 
98
  SP2NL='tr \100 \n'
 
99
  NL2SP='tr \r\n \100\100'
 
100
  ;;
 
101
esac
 
102
 
 
103
# NLS nuisances.
 
104
# Only set LANG and LC_ALL to C if already set.
 
105
# These must not be set unconditionally because not all systems understand
 
106
# e.g. LANG=C (notably SCO).
 
107
# We save the old values to restore during execute mode.
 
108
if test "${LC_ALL+set}" = set; then
 
109
  save_LC_ALL="$LC_ALL"; LC_ALL=C; export LC_ALL
 
110
fi
 
111
if test "${LANG+set}" = set; then
 
112
  save_LANG="$LANG"; LANG=C; export LANG
 
113
fi
 
114
 
 
115
# Make sure IFS has a sensible default
 
116
lt_nl='
 
117
'
 
118
IFS="   $lt_nl"
 
119
 
 
120
if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then
 
121
  $echo "$modename: not configured to build any kind of library" 1>&2
 
122
  $echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2
 
123
  exit $EXIT_FAILURE
 
124
fi
585
125
 
586
126
# Global variables.
587
 
# $mode is unset
 
127
mode=$default_mode
588
128
nonopt=
 
129
prev=
 
130
prevopt=
 
131
run=
 
132
show="$echo"
 
133
show_help=
589
134
execute_dlfiles=
 
135
duplicate_deps=no
590
136
preserve_args=
591
137
lo2o="s/\\.lo\$/.${objext}/"
592
138
o2lo="s/\\.${objext}\$/.lo/"
593
 
extracted_archives=
594
 
extracted_serial=0
595
 
 
596
 
opt_dry_run=false
597
 
opt_duplicate_deps=false
598
 
opt_silent=false
599
 
opt_debug=:
600
 
 
601
 
# If this variable is set in any of the actions, the command in it
602
 
# will be execed at the end.  This prevents here-documents from being
603
 
# left over by shells.
604
 
exec_cmd=
605
 
 
606
 
# func_fatal_configuration arg...
607
 
# Echo program name prefixed message to standard error, followed by
608
 
# a configuration failure hint, and exit.
609
 
func_fatal_configuration ()
610
 
{
611
 
    func_error ${1+"$@"}
612
 
    func_error "See the $PACKAGE documentation for more information."
613
 
    func_fatal_error "Fatal configuration error."
614
 
}
615
 
 
616
 
 
617
 
# func_config
618
 
# Display the configuration for all the tags in this script.
619
 
func_config ()
620
 
{
621
 
    re_begincf='^# ### BEGIN LIBTOOL'
622
 
    re_endcf='^# ### END LIBTOOL'
623
 
 
624
 
    # Default configuration.
625
 
    $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath"
626
 
 
627
 
    # Now print the configurations for the tags.
628
 
    for tagname in $taglist; do
629
 
      $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath"
630
 
    done
631
 
 
632
 
    exit $?
633
 
}
634
 
 
635
 
# func_features
636
 
# Display the features supported by this script.
637
 
func_features ()
638
 
{
639
 
    $ECHO "host: $host"
640
 
    if test "$build_libtool_libs" = yes; then
641
 
      $ECHO "enable shared libraries"
642
 
    else
643
 
      $ECHO "disable shared libraries"
644
 
    fi
645
 
    if test "$build_old_libs" = yes; then
646
 
      $ECHO "enable static libraries"
647
 
    else
648
 
      $ECHO "disable static libraries"
649
 
    fi
650
 
 
651
 
    exit $?
652
 
}
653
 
 
654
 
# func_enable_tag tagname
655
 
# Verify that TAGNAME is valid, and either flag an error and exit, or
656
 
# enable the TAGNAME tag.  We also add TAGNAME to the global $taglist
657
 
# variable here.
658
 
func_enable_tag ()
659
 
{
660
 
  # Global variable:
661
 
  tagname="$1"
662
 
 
663
 
  re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$"
664
 
  re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$"
665
 
  sed_extractcf="/$re_begincf/,/$re_endcf/p"
666
 
 
667
 
  # Validate tagname.
668
 
  case $tagname in
669
 
    *[!-_A-Za-z0-9,/]*)
670
 
      func_fatal_error "invalid tag name: $tagname"
671
 
      ;;
672
 
  esac
673
 
 
674
 
  # Don't test for the "default" C tag, as we know it's
675
 
  # there but not specially marked.
676
 
  case $tagname in
677
 
    CC) ;;
678
 
    *)
679
 
      if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then
680
 
        taglist="$taglist $tagname"
681
 
 
682
 
        # Evaluate the configuration.  Be careful to quote the path
683
 
        # and the sed script, to avoid splitting on whitespace, but
684
 
        # also don't use non-portable quotes within backquotes within
685
 
        # quotes we have to do it in 2 steps:
686
 
        extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"`
687
 
        eval "$extractedcf"
688
 
      else
689
 
        func_error "ignoring unknown tag $tagname"
690
 
      fi
691
 
      ;;
692
 
  esac
693
 
}
694
 
 
695
 
# Parse options once, thoroughly.  This comes as soon as possible in
696
 
# the script to make things like `libtool --version' happen quickly.
697
 
{
698
 
 
699
 
  # Shorthand for --mode=foo, only valid as the first argument
700
 
  case $1 in
701
 
  clean|clea|cle|cl)
702
 
    shift; set dummy --mode clean ${1+"$@"}; shift
703
 
    ;;
704
 
  compile|compil|compi|comp|com|co|c)
705
 
    shift; set dummy --mode compile ${1+"$@"}; shift
706
 
    ;;
707
 
  execute|execut|execu|exec|exe|ex|e)
708
 
    shift; set dummy --mode execute ${1+"$@"}; shift
709
 
    ;;
710
 
  finish|finis|fini|fin|fi|f)
711
 
    shift; set dummy --mode finish ${1+"$@"}; shift
712
 
    ;;
713
 
  install|instal|insta|inst|ins|in|i)
714
 
    shift; set dummy --mode install ${1+"$@"}; shift
715
 
    ;;
716
 
  link|lin|li|l)
717
 
    shift; set dummy --mode link ${1+"$@"}; shift
718
 
    ;;
719
 
  uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u)
720
 
    shift; set dummy --mode uninstall ${1+"$@"}; shift
721
 
    ;;
722
 
  esac
723
 
 
724
 
  # Parse non-mode specific arguments:
725
 
  while test "$#" -gt 0; do
726
 
    opt="$1"
727
 
    shift
728
 
 
729
 
    case $opt in
730
 
      --config)         func_config                                     ;;
731
 
 
732
 
      --debug)          preserve_args="$preserve_args $opt"
733
 
                        func_echo "enabling shell trace mode"
734
 
                        opt_debug='set -x'
735
 
                        $opt_debug
736
 
                        ;;
737
 
 
738
 
      -dlopen)          test "$#" -eq 0 && func_missing_arg "$opt" && break
739
 
                        execute_dlfiles="$execute_dlfiles $1"
740
 
                        shift
741
 
                        ;;
742
 
 
743
 
      --dry-run | -n)   opt_dry_run=:                                   ;;
744
 
      --features)       func_features                                   ;;
745
 
      --finish)         mode="finish"                                   ;;
746
 
 
747
 
      --mode)           test "$#" -eq 0 && func_missing_arg "$opt" && break
748
 
                        case $1 in
749
 
                          # Valid mode arguments:
750
 
                          clean)        ;;
751
 
                          compile)      ;;
752
 
                          execute)      ;;
753
 
                          finish)       ;;
754
 
                          install)      ;;
755
 
                          link)         ;;
756
 
                          relink)       ;;
757
 
                          uninstall)    ;;
758
 
 
759
 
                          # Catch anything else as an error
760
 
                          *) func_error "invalid argument for $opt"
761
 
                             exit_cmd=exit
762
 
                             break
763
 
                             ;;
764
 
                        esac
765
 
 
766
 
                        mode="$1"
767
 
                        shift
768
 
                        ;;
769
 
 
770
 
      --preserve-dup-deps)
771
 
                        opt_duplicate_deps=:                            ;;
772
 
 
773
 
      --quiet|--silent) preserve_args="$preserve_args $opt"
774
 
                        opt_silent=:
775
 
                        ;;
776
 
 
777
 
      --verbose| -v)    preserve_args="$preserve_args $opt"
778
 
                        opt_silent=false
779
 
                        ;;
780
 
 
781
 
      --tag)            test "$#" -eq 0 && func_missing_arg "$opt" && break
782
 
                        preserve_args="$preserve_args $opt $1"
783
 
                        func_enable_tag "$1"    # tagname is set here
784
 
                        shift
785
 
                        ;;
786
 
 
787
 
      # Separate optargs to long options:
788
 
      -dlopen=*|--mode=*|--tag=*)
789
 
                        func_opt_split "$opt"
790
 
                        set dummy "$func_opt_split_opt" "$func_opt_split_arg" ${1+"$@"}
791
 
                        shift
792
 
                        ;;
793
 
 
794
 
      -\?|-h)           func_usage                                      ;;
795
 
      --help)           opt_help=:                                      ;;
796
 
      --version)        func_version                                    ;;
797
 
 
798
 
      -*)               func_fatal_help "unrecognized option \`$opt'"   ;;
799
 
 
800
 
      *)                nonopt="$opt"
801
 
                        break
802
 
                        ;;
803
 
    esac
804
 
  done
805
 
 
806
 
 
807
 
  case $host in
808
 
    *cygwin* | *mingw* | *pw32* | *cegcc*)
809
 
      # don't eliminate duplications in $postdeps and $predeps
810
 
      opt_duplicate_compiler_generated_deps=:
811
 
      ;;
812
 
    *)
813
 
      opt_duplicate_compiler_generated_deps=$opt_duplicate_deps
814
 
      ;;
815
 
  esac
816
 
 
817
 
  # Having warned about all mis-specified options, bail out if
818
 
  # anything was wrong.
819
 
  $exit_cmd $EXIT_FAILURE
820
 
}
821
 
 
822
 
# func_check_version_match
823
 
# Ensure that we are using m4 macros, and libtool script from the same
824
 
# release of libtool.
825
 
func_check_version_match ()
826
 
{
827
 
  if test "$package_revision" != "$macro_revision"; then
828
 
    if test "$VERSION" != "$macro_version"; then
829
 
      if test -z "$macro_version"; then
830
 
        cat >&2 <<_LT_EOF
831
 
$progname: Version mismatch error.  This is $PACKAGE $VERSION, but the
832
 
$progname: definition of this LT_INIT comes from an older release.
833
 
$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION
834
 
$progname: and run autoconf again.
835
 
_LT_EOF
836
 
      else
837
 
        cat >&2 <<_LT_EOF
838
 
$progname: Version mismatch error.  This is $PACKAGE $VERSION, but the
839
 
$progname: definition of this LT_INIT comes from $PACKAGE $macro_version.
840
 
$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION
841
 
$progname: and run autoconf again.
842
 
_LT_EOF
843
 
      fi
844
 
    else
845
 
      cat >&2 <<_LT_EOF
846
 
$progname: Version mismatch error.  This is $PACKAGE $VERSION, revision $package_revision,
847
 
$progname: but the definition of this LT_INIT comes from revision $macro_revision.
848
 
$progname: You should recreate aclocal.m4 with macros from revision $package_revision
849
 
$progname: of $PACKAGE $VERSION and run autoconf again.
850
 
_LT_EOF
851
 
    fi
852
 
 
853
 
    exit $EXIT_MISMATCH
854
 
  fi
855
 
}
856
 
 
857
 
 
858
 
## ----------- ##
859
 
##    Main.    ##
860
 
## ----------- ##
861
 
 
862
 
$opt_help || {
863
 
  # Sanity checks first:
864
 
  func_check_version_match
865
 
 
866
 
  if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then
867
 
    func_fatal_configuration "not configured to build any kind of library"
868
 
  fi
869
 
 
870
 
  test -z "$mode" && func_fatal_error "error: you must specify a MODE."
871
 
 
872
 
 
873
 
  # Darwin sucks
874
 
  eval std_shrext=\"$shrext_cmds\"
875
 
 
876
 
 
877
 
  # Only execute mode is allowed to have -dlopen flags.
878
 
  if test -n "$execute_dlfiles" && test "$mode" != execute; then
879
 
    func_error "unrecognized option \`-dlopen'"
880
 
    $ECHO "$help" 1>&2
881
 
    exit $EXIT_FAILURE
882
 
  fi
883
 
 
884
 
  # Change the help message to a mode-specific one.
885
 
  generic_help="$help"
886
 
  help="Try \`$progname --help --mode=$mode' for more information."
887
 
}
888
 
 
889
 
 
890
 
# func_lalib_p file
891
 
# True iff FILE is a libtool `.la' library or `.lo' object file.
892
 
# This function is only a basic sanity check; it will hardly flush out
893
 
# determined imposters.
894
 
func_lalib_p ()
895
 
{
896
 
    test -f "$1" &&
897
 
      $SED -e 4q "$1" 2>/dev/null \
898
 
        | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1
899
 
}
900
 
 
901
 
# func_lalib_unsafe_p file
902
 
# True iff FILE is a libtool `.la' library or `.lo' object file.
903
 
# This function implements the same check as func_lalib_p without
904
 
# resorting to external programs.  To this end, it redirects stdin and
905
 
# closes it afterwards, without saving the original file descriptor.
906
 
# As a safety measure, use it only where a negative result would be
907
 
# fatal anyway.  Works if `file' does not exist.
908
 
func_lalib_unsafe_p ()
909
 
{
910
 
    lalib_p=no
911
 
    if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then
912
 
        for lalib_p_l in 1 2 3 4
913
 
        do
914
 
            read lalib_p_line
915
 
            case "$lalib_p_line" in
916
 
                \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;;
917
 
            esac
918
 
        done
919
 
        exec 0<&5 5<&-
920
 
    fi
921
 
    test "$lalib_p" = yes
922
 
}
923
 
 
924
 
# func_ltwrapper_script_p file
925
 
# True iff FILE is a libtool wrapper script
926
 
# This function is only a basic sanity check; it will hardly flush out
927
 
# determined imposters.
928
 
func_ltwrapper_script_p ()
929
 
{
930
 
    func_lalib_p "$1"
931
 
}
932
 
 
933
 
# func_ltwrapper_executable_p file
934
 
# True iff FILE is a libtool wrapper executable
935
 
# This function is only a basic sanity check; it will hardly flush out
936
 
# determined imposters.
937
 
func_ltwrapper_executable_p ()
938
 
{
939
 
    func_ltwrapper_exec_suffix=
940
 
    case $1 in
941
 
    *.exe) ;;
942
 
    *) func_ltwrapper_exec_suffix=.exe ;;
943
 
    esac
944
 
    $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1
945
 
}
946
 
 
947
 
# func_ltwrapper_scriptname file
948
 
# Assumes file is an ltwrapper_executable
949
 
# uses $file to determine the appropriate filename for a
950
 
# temporary ltwrapper_script.
951
 
func_ltwrapper_scriptname ()
952
 
{
953
 
    func_ltwrapper_scriptname_result=""
954
 
    if func_ltwrapper_executable_p "$1"; then
955
 
        func_dirname_and_basename "$1" "" "."
956
 
        func_stripname '' '.exe' "$func_basename_result"
957
 
        func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper"
958
 
    fi
959
 
}
960
 
 
961
 
# func_ltwrapper_p file
962
 
# True iff FILE is a libtool wrapper script or wrapper executable
963
 
# This function is only a basic sanity check; it will hardly flush out
964
 
# determined imposters.
965
 
func_ltwrapper_p ()
966
 
{
967
 
    func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1"
968
 
}
969
 
 
970
 
 
971
 
# func_execute_cmds commands fail_cmd
972
 
# Execute tilde-delimited COMMANDS.
973
 
# If FAIL_CMD is given, eval that upon failure.
974
 
# FAIL_CMD may read-access the current command in variable CMD!
975
 
func_execute_cmds ()
976
 
{
977
 
    $opt_debug
978
 
    save_ifs=$IFS; IFS='~'
979
 
    for cmd in $1; do
980
 
      IFS=$save_ifs
981
 
      eval cmd=\"$cmd\"
982
 
      func_show_eval "$cmd" "${2-:}"
983
 
    done
984
 
    IFS=$save_ifs
985
 
}
986
 
 
987
 
 
988
 
# func_source file
989
 
# Source FILE, adding directory component if necessary.
990
 
# Note that it is not necessary on cygwin/mingw to append a dot to
991
 
# FILE even if both FILE and FILE.exe exist: automatic-append-.exe
992
 
# behavior happens only for exec(3), not for open(2)!  Also, sourcing
993
 
# `FILE.' does not work on cygwin managed mounts.
994
 
func_source ()
995
 
{
996
 
    $opt_debug
997
 
    case $1 in
998
 
    */* | *\\*) . "$1" ;;
999
 
    *)          . "./$1" ;;
1000
 
    esac
 
139
 
 
140
#####################################
 
141
# Shell function definitions:
 
142
# This seems to be the best place for them
 
143
 
 
144
# func_mktempdir [string]
 
145
# Make a temporary directory that won't clash with other running
 
146
# libtool processes, and avoids race conditions if possible.  If
 
147
# given, STRING is the basename for that directory.
 
148
func_mktempdir ()
 
149
{
 
150
    my_template="${TMPDIR-/tmp}/${1-$progname}"
 
151
 
 
152
    if test "$run" = ":"; then
 
153
      # Return a directory name, but don't create it in dry-run mode
 
154
      my_tmpdir="${my_template}-$$"
 
155
    else
 
156
 
 
157
      # If mktemp works, use that first and foremost
 
158
      my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null`
 
159
 
 
160
      if test ! -d "$my_tmpdir"; then
 
161
        # Failing that, at least try and use $RANDOM to avoid a race
 
162
        my_tmpdir="${my_template}-${RANDOM-0}$$"
 
163
 
 
164
        save_mktempdir_umask=`umask`
 
165
        umask 0077
 
166
        $mkdir "$my_tmpdir"
 
167
        umask $save_mktempdir_umask
 
168
      fi
 
169
 
 
170
      # If we're not in dry-run mode, bomb out on failure
 
171
      test -d "$my_tmpdir" || {
 
172
        $echo "cannot create temporary directory \`$my_tmpdir'" 1>&2
 
173
        exit $EXIT_FAILURE
 
174
      }
 
175
    fi
 
176
 
 
177
    $echo "X$my_tmpdir" | $Xsed
 
178
}
 
179
 
 
180
 
 
181
# func_win32_libid arg
 
182
# return the library type of file 'arg'
 
183
#
 
184
# Need a lot of goo to handle *both* DLLs and import libs
 
185
# Has to be a shell function in order to 'eat' the argument
 
186
# that is supplied when $file_magic_command is called.
 
187
func_win32_libid ()
 
188
{
 
189
  win32_libid_type="unknown"
 
190
  win32_fileres=`file -L $1 2>/dev/null`
 
191
  case $win32_fileres in
 
192
  *ar\ archive\ import\ library*) # definitely import
 
193
    win32_libid_type="x86 archive import"
 
194
    ;;
 
195
  *ar\ archive*) # could be an import, or static
 
196
    if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | \
 
197
      $EGREP -e 'file format pe-i386(.*architecture: i386)?' >/dev/null ; then
 
198
      win32_nmres=`eval $NM -f posix -A $1 | \
 
199
        $SED -n -e '1,100{/ I /{s,.*,import,;p;q;};}'`
 
200
      case $win32_nmres in
 
201
      import*)  win32_libid_type="x86 archive import";;
 
202
      *)        win32_libid_type="x86 archive static";;
 
203
      esac
 
204
    fi
 
205
    ;;
 
206
  *DLL*)
 
207
    win32_libid_type="x86 DLL"
 
208
    ;;
 
209
  *executable*) # but shell scripts are "executable" too...
 
210
    case $win32_fileres in
 
211
    *MS\ Windows\ PE\ Intel*)
 
212
      win32_libid_type="x86 DLL"
 
213
      ;;
 
214
    esac
 
215
    ;;
 
216
  esac
 
217
  $echo $win32_libid_type
1001
218
}
1002
219
 
1003
220
 
1009
226
# arg is usually of the form 'gcc ...'
1010
227
func_infer_tag ()
1011
228
{
1012
 
    $opt_debug
1013
229
    if test -n "$available_tags" && test -z "$tagname"; then
1014
230
      CC_quoted=
1015
231
      for arg in $CC; do
1016
 
        func_quote_for_eval "$arg"
1017
 
        CC_quoted="$CC_quoted $func_quote_for_eval_result"
 
232
        case $arg in
 
233
          *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
 
234
          arg="\"$arg\""
 
235
          ;;
 
236
        esac
 
237
        CC_quoted="$CC_quoted $arg"
1018
238
      done
1019
239
      case $@ in
1020
240
      # Blanks in the command may have been stripped by the calling shell,
1021
241
      # but not from the CC environment variable when configure was run.
1022
 
      " $CC "* | "$CC "* | " `$ECHO $CC` "* | "`$ECHO $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$ECHO $CC_quoted` "* | "`$ECHO $CC_quoted` "*) ;;
 
242
      " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*) ;;
1023
243
      # Blanks at the start of $base_compile will cause this to fail
1024
244
      # if we don't check for them as well.
1025
245
      *)
1026
246
        for z in $available_tags; do
1027
 
          if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then
 
247
          if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then
1028
248
            # Evaluate the configuration.
1029
249
            eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`"
1030
250
            CC_quoted=
1031
251
            for arg in $CC; do
1032
 
              # Double-quote args containing other shell metacharacters.
1033
 
              func_quote_for_eval "$arg"
1034
 
              CC_quoted="$CC_quoted $func_quote_for_eval_result"
1035
 
            done
 
252
            # Double-quote args containing other shell metacharacters.
 
253
            case $arg in
 
254
              *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \     ]*|*]*|"")
 
255
              arg="\"$arg\""
 
256
              ;;
 
257
            esac
 
258
            CC_quoted="$CC_quoted $arg"
 
259
          done
1036
260
            case "$@ " in
1037
 
              " $CC "* | "$CC "* | " `$ECHO $CC` "* | "`$ECHO $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$ECHO $CC_quoted` "* | "`$ECHO $CC_quoted` "*)
 
261
              " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*)
1038
262
              # The compiler in the base compile command matches
1039
263
              # the one in the tagged configuration.
1040
264
              # Assume this is the tagged configuration we want.
1048
272
        # was found and let the user know that the "--tag" command
1049
273
        # line option must be used.
1050
274
        if test -z "$tagname"; then
1051
 
          func_echo "unable to infer tagged configuration"
1052
 
          func_fatal_error "specify a tag with \`--tag'"
1053
 
#       else
1054
 
#         func_verbose "using $tagname tagged configuration"
1055
 
        fi
1056
 
        ;;
1057
 
      esac
1058
 
    fi
1059
 
}
1060
 
 
1061
 
 
1062
 
 
1063
 
# func_write_libtool_object output_name pic_name nonpic_name
1064
 
# Create a libtool object file (analogous to a ".la" file),
1065
 
# but don't create it if we're doing a dry run.
1066
 
func_write_libtool_object ()
1067
 
{
1068
 
    write_libobj=${1}
 
275
          $echo "$modename: unable to infer tagged configuration"
 
276
          $echo "$modename: specify a tag with \`--tag'" 1>&2
 
277
          exit $EXIT_FAILURE
 
278
#        else
 
279
#          $echo "$modename: using $tagname tagged configuration"
 
280
        fi
 
281
        ;;
 
282
      esac
 
283
    fi
 
284
}
 
285
 
 
286
 
 
287
# func_extract_an_archive dir oldlib
 
288
func_extract_an_archive ()
 
289
{
 
290
    f_ex_an_ar_dir="$1"; shift
 
291
    f_ex_an_ar_oldlib="$1"
 
292
 
 
293
    $show "(cd $f_ex_an_ar_dir && $AR x $f_ex_an_ar_oldlib)"
 
294
    $run eval "(cd \$f_ex_an_ar_dir && $AR x \$f_ex_an_ar_oldlib)" || exit $?
 
295
    if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then
 
296
     :
 
297
    else
 
298
      $echo "$modename: ERROR: object name conflicts: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" 1>&2
 
299
      exit $EXIT_FAILURE
 
300
    fi
 
301
}
 
302
 
 
303
# func_extract_archives gentop oldlib ...
 
304
func_extract_archives ()
 
305
{
 
306
    my_gentop="$1"; shift
 
307
    my_oldlibs=${1+"$@"}
 
308
    my_oldobjs=""
 
309
    my_xlib=""
 
310
    my_xabs=""
 
311
    my_xdir=""
 
312
    my_status=""
 
313
 
 
314
    $show "${rm}r $my_gentop"
 
315
    $run ${rm}r "$my_gentop"
 
316
    $show "$mkdir $my_gentop"
 
317
    $run $mkdir "$my_gentop"
 
318
    my_status=$?
 
319
    if test "$my_status" -ne 0 && test ! -d "$my_gentop"; then
 
320
      exit $my_status
 
321
    fi
 
322
 
 
323
    for my_xlib in $my_oldlibs; do
 
324
      # Extract the objects.
 
325
      case $my_xlib in
 
326
        [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;;
 
327
        *) my_xabs=`pwd`"/$my_xlib" ;;
 
328
      esac
 
329
      my_xlib=`$echo "X$my_xlib" | $Xsed -e 's%^.*/%%'`
 
330
      my_xdir="$my_gentop/$my_xlib"
 
331
 
 
332
      $show "${rm}r $my_xdir"
 
333
      $run ${rm}r "$my_xdir"
 
334
      $show "$mkdir $my_xdir"
 
335
      $run $mkdir "$my_xdir"
 
336
      exit_status=$?
 
337
      if test "$exit_status" -ne 0 && test ! -d "$my_xdir"; then
 
338
        exit $exit_status
 
339
      fi
 
340
      case $host in
 
341
      *-darwin*)
 
342
        $show "Extracting $my_xabs"
 
343
        # Do not bother doing anything if just a dry run
 
344
        if test -z "$run"; then
 
345
          darwin_orig_dir=`pwd`
 
346
          cd $my_xdir || exit $?
 
347
          darwin_archive=$my_xabs
 
348
          darwin_curdir=`pwd`
 
349
          darwin_base_archive=`$echo "X$darwin_archive" | $Xsed -e 's%^.*/%%'`
 
350
          darwin_arches=`lipo -info "$darwin_archive" 2>/dev/null | $EGREP Architectures 2>/dev/null`
 
351
          if test -n "$darwin_arches"; then 
 
352
            darwin_arches=`echo "$darwin_arches" | $SED -e 's/.*are://'`
 
353
            darwin_arch=
 
354
            $show "$darwin_base_archive has multiple architectures $darwin_arches"
 
355
            for darwin_arch in  $darwin_arches ; do
 
356
              mkdir -p "unfat-$$/${darwin_base_archive}-${darwin_arch}"
 
357
              lipo -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}"
 
358
              cd "unfat-$$/${darwin_base_archive}-${darwin_arch}"
 
359
              func_extract_an_archive "`pwd`" "${darwin_base_archive}"
 
360
              cd "$darwin_curdir"
 
361
              $rm "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}"
 
362
            done # $darwin_arches
 
363
      ## Okay now we have a bunch of thin objects, gotta fatten them up :)
 
364
            darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print| xargs basename | sort -u | $NL2SP`
 
365
            darwin_file=
 
366
            darwin_files=
 
367
            for darwin_file in $darwin_filelist; do
 
368
              darwin_files=`find unfat-$$ -name $darwin_file -print | $NL2SP`
 
369
              lipo -create -output "$darwin_file" $darwin_files
 
370
            done # $darwin_filelist
 
371
            ${rm}r unfat-$$
 
372
            cd "$darwin_orig_dir"
 
373
          else
 
374
            cd "$darwin_orig_dir"
 
375
            func_extract_an_archive "$my_xdir" "$my_xabs"
 
376
          fi # $darwin_arches
 
377
        fi # $run
 
378
        ;;
 
379
      *)
 
380
        func_extract_an_archive "$my_xdir" "$my_xabs"
 
381
        ;;
 
382
      esac
 
383
      my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP`
 
384
    done
 
385
    func_extract_archives_result="$my_oldobjs"
 
386
}
 
387
# End of Shell function definitions
 
388
#####################################
 
389
 
 
390
# Darwin sucks
 
391
eval std_shrext=\"$shrext_cmds\"
 
392
 
 
393
disable_libs=no
 
394
 
 
395
# Parse our command line options once, thoroughly.
 
396
while test "$#" -gt 0
 
397
do
 
398
  arg="$1"
 
399
  shift
 
400
 
 
401
  case $arg in
 
402
  -*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;;
 
403
  *) optarg= ;;
 
404
  esac
 
405
 
 
406
  # If the previous option needs an argument, assign it.
 
407
  if test -n "$prev"; then
 
408
    case $prev in
 
409
    execute_dlfiles)
 
410
      execute_dlfiles="$execute_dlfiles $arg"
 
411
      ;;
 
412
    tag)
 
413
      tagname="$arg"
 
414
      preserve_args="${preserve_args}=$arg"
 
415
 
 
416
      # Check whether tagname contains only valid characters
 
417
      case $tagname in
 
418
      *[!-_A-Za-z0-9,/]*)
 
419
        $echo "$progname: invalid tag name: $tagname" 1>&2
 
420
        exit $EXIT_FAILURE
 
421
        ;;
 
422
      esac
 
423
 
 
424
      case $tagname in
 
425
      CC)
 
426
        # Don't test for the "default" C tag, as we know, it's there, but
 
427
        # not specially marked.
 
428
        ;;
 
429
      *)
 
430
        if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "$progpath" > /dev/null; then
 
431
          taglist="$taglist $tagname"
 
432
          # Evaluate the configuration.
 
433
          eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$tagname'$/,/^# ### END LIBTOOL TAG CONFIG: '$tagname'$/p' < $progpath`"
 
434
        else
 
435
          $echo "$progname: ignoring unknown tag $tagname" 1>&2
 
436
        fi
 
437
        ;;
 
438
      esac
 
439
      ;;
 
440
    *)
 
441
      eval "$prev=\$arg"
 
442
      ;;
 
443
    esac
 
444
 
 
445
    prev=
 
446
    prevopt=
 
447
    continue
 
448
  fi
 
449
 
 
450
  # Have we seen a non-optional argument yet?
 
451
  case $arg in
 
452
  --help)
 
453
    show_help=yes
 
454
    ;;
 
455
 
 
456
  --version)
 
457
    $echo "$PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP"
 
458
    $echo
 
459
    $echo "Copyright (C) 2005  Free Software Foundation, Inc."
 
460
    $echo "This is free software; see the source for copying conditions.  There is NO"
 
461
    $echo "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
 
462
    exit $?
 
463
    ;;
 
464
 
 
465
  --config)
 
466
    ${SED} -e '1,/^# ### BEGIN LIBTOOL CONFIG/d' -e '/^# ### END LIBTOOL CONFIG/,$d' $progpath
 
467
    # Now print the configurations for the tags.
 
468
    for tagname in $taglist; do
 
469
      ${SED} -n -e "/^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$/,/^# ### END LIBTOOL TAG CONFIG: $tagname$/p" < "$progpath"
 
470
    done
 
471
    exit $?
 
472
    ;;
 
473
 
 
474
  --debug)
 
475
    $echo "$progname: enabling shell trace mode"
 
476
    set -x
 
477
    preserve_args="$preserve_args $arg"
 
478
    ;;
 
479
 
 
480
  --dry-run | -n)
 
481
    run=:
 
482
    ;;
 
483
 
 
484
  --features)
 
485
    $echo "host: $host"
1069
486
    if test "$build_libtool_libs" = yes; then
1070
 
      write_lobj=\'${2}\'
 
487
      $echo "enable shared libraries"
1071
488
    else
1072
 
      write_lobj=none
 
489
      $echo "disable shared libraries"
1073
490
    fi
1074
 
 
1075
491
    if test "$build_old_libs" = yes; then
1076
 
      write_oldobj=\'${3}\'
 
492
      $echo "enable static libraries"
1077
493
    else
1078
 
      write_oldobj=none
 
494
      $echo "disable static libraries"
1079
495
    fi
1080
 
 
1081
 
    $opt_dry_run || {
1082
 
      cat >${write_libobj}T <<EOF
1083
 
# $write_libobj - a libtool object file
1084
 
# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
1085
 
#
1086
 
# Please DO NOT delete this file!
1087
 
# It is necessary for linking the library.
1088
 
 
1089
 
# Name of the PIC object.
1090
 
pic_object=$write_lobj
1091
 
 
1092
 
# Name of the non-PIC object
1093
 
non_pic_object=$write_oldobj
1094
 
 
1095
 
EOF
1096
 
      $MV "${write_libobj}T" "${write_libobj}"
1097
 
    }
1098
 
}
1099
 
 
1100
 
# func_mode_compile arg...
1101
 
func_mode_compile ()
1102
 
{
1103
 
    $opt_debug
 
496
    exit $?
 
497
    ;;
 
498
 
 
499
  --finish) mode="finish" ;;
 
500
 
 
501
  --mode) prevopt="--mode" prev=mode ;;
 
502
  --mode=*) mode="$optarg" ;;
 
503
 
 
504
  --preserve-dup-deps) duplicate_deps="yes" ;;
 
505
 
 
506
  --quiet | --silent)
 
507
    show=:
 
508
    preserve_args="$preserve_args $arg"
 
509
    ;;
 
510
 
 
511
  --tag)
 
512
    prevopt="--tag"
 
513
    prev=tag
 
514
    preserve_args="$preserve_args --tag"
 
515
    ;;
 
516
  --tag=*)
 
517
    set tag "$optarg" ${1+"$@"}
 
518
    shift
 
519
    prev=tag
 
520
    preserve_args="$preserve_args --tag"
 
521
    ;;
 
522
 
 
523
  -dlopen)
 
524
    prevopt="-dlopen"
 
525
    prev=execute_dlfiles
 
526
    ;;
 
527
 
 
528
  -*)
 
529
    $echo "$modename: unrecognized option \`$arg'" 1>&2
 
530
    $echo "$help" 1>&2
 
531
    exit $EXIT_FAILURE
 
532
    ;;
 
533
 
 
534
  *)
 
535
    nonopt="$arg"
 
536
    break
 
537
    ;;
 
538
  esac
 
539
done
 
540
 
 
541
if test -n "$prevopt"; then
 
542
  $echo "$modename: option \`$prevopt' requires an argument" 1>&2
 
543
  $echo "$help" 1>&2
 
544
  exit $EXIT_FAILURE
 
545
fi
 
546
 
 
547
case $disable_libs in
 
548
no) 
 
549
  ;;
 
550
shared)
 
551
  build_libtool_libs=no
 
552
  build_old_libs=yes
 
553
  ;;
 
554
static)
 
555
  build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac`
 
556
  ;;
 
557
esac
 
558
 
 
559
# If this variable is set in any of the actions, the command in it
 
560
# will be execed at the end.  This prevents here-documents from being
 
561
# left over by shells.
 
562
exec_cmd=
 
563
 
 
564
if test -z "$show_help"; then
 
565
 
 
566
  # Infer the operation mode.
 
567
  if test -z "$mode"; then
 
568
    $echo "*** Warning: inferring the mode of operation is deprecated." 1>&2
 
569
    $echo "*** Future versions of Libtool will require --mode=MODE be specified." 1>&2
 
570
    case $nonopt in
 
571
    *cc | cc* | *++ | gcc* | *-gcc* | g++* | xlc*)
 
572
      mode=link
 
573
      for arg
 
574
      do
 
575
        case $arg in
 
576
        -c)
 
577
           mode=compile
 
578
           break
 
579
           ;;
 
580
        esac
 
581
      done
 
582
      ;;
 
583
    *db | *dbx | *strace | *truss)
 
584
      mode=execute
 
585
      ;;
 
586
    *install*|cp|mv)
 
587
      mode=install
 
588
      ;;
 
589
    *rm)
 
590
      mode=uninstall
 
591
      ;;
 
592
    *)
 
593
      # If we have no mode, but dlfiles were specified, then do execute mode.
 
594
      test -n "$execute_dlfiles" && mode=execute
 
595
 
 
596
      # Just use the default operation mode.
 
597
      if test -z "$mode"; then
 
598
        if test -n "$nonopt"; then
 
599
          $echo "$modename: warning: cannot infer operation mode from \`$nonopt'" 1>&2
 
600
        else
 
601
          $echo "$modename: warning: cannot infer operation mode without MODE-ARGS" 1>&2
 
602
        fi
 
603
      fi
 
604
      ;;
 
605
    esac
 
606
  fi
 
607
 
 
608
  # Only execute mode is allowed to have -dlopen flags.
 
609
  if test -n "$execute_dlfiles" && test "$mode" != execute; then
 
610
    $echo "$modename: unrecognized option \`-dlopen'" 1>&2
 
611
    $echo "$help" 1>&2
 
612
    exit $EXIT_FAILURE
 
613
  fi
 
614
 
 
615
  # Change the help message to a mode-specific one.
 
616
  generic_help="$help"
 
617
  help="Try \`$modename --help --mode=$mode' for more information."
 
618
 
 
619
  # These modes are in order of execution frequency so that they run quickly.
 
620
  case $mode in
 
621
  # libtool compile mode
 
622
  compile)
 
623
    modename="$modename: compile"
1104
624
    # Get the compilation command and the source file.
1105
625
    base_compile=
1106
626
    srcfile="$nonopt"  #  always keep a non-empty value in "srcfile"
1109
629
    arg_mode=normal
1110
630
    libobj=
1111
631
    later=
1112
 
    pie_flag=
1113
632
 
1114
633
    for arg
1115
634
    do
1130
649
        # Accept any command-line options.
1131
650
        case $arg in
1132
651
        -o)
1133
 
          test -n "$libobj" && \
1134
 
            func_fatal_error "you cannot specify \`-o' more than once"
 
652
          if test -n "$libobj" ; then
 
653
            $echo "$modename: you cannot specify \`-o' more than once" 1>&2
 
654
            exit $EXIT_FAILURE
 
655
          fi
1135
656
          arg_mode=target
1136
657
          continue
1137
658
          ;;
1138
659
 
1139
 
        -pie | -fpie | -fPIE)
1140
 
          pie_flag="$pie_flag $arg"
1141
 
          continue
1142
 
          ;;
1143
 
 
1144
 
        -shared | -static | -prefer-pic | -prefer-non-pic)
 
660
        -static | -prefer-pic | -prefer-non-pic)
1145
661
          later="$later $arg"
1146
662
          continue
1147
663
          ;;
1157
673
          ;;            #  replaced later.  I would guess that would be a bug.
1158
674
 
1159
675
        -Wc,*)
1160
 
          func_stripname '-Wc,' '' "$arg"
1161
 
          args=$func_stripname_result
 
676
          args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"`
1162
677
          lastarg=
1163
678
          save_ifs="$IFS"; IFS=','
1164
 
          for arg in $args; do
 
679
          for arg in $args; do
1165
680
            IFS="$save_ifs"
1166
 
            func_quote_for_eval "$arg"
1167
 
            lastarg="$lastarg $func_quote_for_eval_result"
 
681
 
 
682
            # Double-quote args containing other shell metacharacters.
 
683
            # Many Bourne shells cannot handle close brackets correctly
 
684
            # in scan sets, so we specify it separately.
 
685
            case $arg in
 
686
              *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \     ]*|*]*|"")
 
687
              arg="\"$arg\""
 
688
              ;;
 
689
            esac
 
690
            lastarg="$lastarg $arg"
1168
691
          done
1169
692
          IFS="$save_ifs"
1170
 
          func_stripname ' ' '' "$lastarg"
1171
 
          lastarg=$func_stripname_result
 
693
          lastarg=`$echo "X$lastarg" | $Xsed -e "s/^ //"`
1172
694
 
1173
695
          # Add the arguments to base_compile.
1174
696
          base_compile="$base_compile $lastarg"
1175
697
          continue
1176
698
          ;;
1177
699
 
1178
 
        *)
 
700
        * )
1179
701
          # Accept the current argument as the source file.
1180
702
          # The previous "srcfile" becomes the current argument.
1181
703
          #
1187
709
      esac    #  case $arg_mode
1188
710
 
1189
711
      # Aesthetically quote the previous argument.
1190
 
      func_quote_for_eval "$lastarg"
1191
 
      base_compile="$base_compile $func_quote_for_eval_result"
 
712
      lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"`
 
713
 
 
714
      case $lastarg in
 
715
      # Double-quote args containing other shell metacharacters.
 
716
      # Many Bourne shells cannot handle close brackets correctly
 
717
      # in scan sets, and some SunOS ksh mistreat backslash-escaping
 
718
      # in scan sets (worked around with variable expansion),
 
719
      # and furthermore cannot handle '|' '&' '(' ')' in scan sets 
 
720
      # at all, so we specify them separately.
 
721
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \     ]*|*]*|"")
 
722
        lastarg="\"$lastarg\""
 
723
        ;;
 
724
      esac
 
725
 
 
726
      base_compile="$base_compile $lastarg"
1192
727
    done # for arg
1193
728
 
1194
729
    case $arg_mode in
1195
730
    arg)
1196
 
      func_fatal_error "you must specify an argument for -Xcompile"
 
731
      $echo "$modename: you must specify an argument for -Xcompile"
 
732
      exit $EXIT_FAILURE
1197
733
      ;;
1198
734
    target)
1199
 
      func_fatal_error "you must specify a target with \`-o'"
 
735
      $echo "$modename: you must specify a target with \`-o'" 1>&2
 
736
      exit $EXIT_FAILURE
1200
737
      ;;
1201
738
    *)
1202
739
      # Get the name of the library object.
1203
 
      test -z "$libobj" && {
1204
 
        func_basename "$srcfile"
1205
 
        libobj="$func_basename_result"
1206
 
      }
 
740
      [ -z "$libobj" ] && libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'`
1207
741
      ;;
1208
742
    esac
1209
743
 
1210
744
    # Recognize several different file suffixes.
1211
745
    # If the user specifies -o file.o, it is replaced with file.lo
 
746
    xform='[cCFSifmso]'
1212
747
    case $libobj in
1213
 
    *.[cCFSifmso] | \
1214
 
    *.ada | *.adb | *.ads | *.asm | \
1215
 
    *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \
1216
 
    *.[fF][09]? | *.for | *.java | *.obj | *.sx)
1217
 
      func_xform "$libobj"
1218
 
      libobj=$func_xform_result
1219
 
      ;;
 
748
    *.ada) xform=ada ;;
 
749
    *.adb) xform=adb ;;
 
750
    *.ads) xform=ads ;;
 
751
    *.asm) xform=asm ;;
 
752
    *.c++) xform=c++ ;;
 
753
    *.cc) xform=cc ;;
 
754
    *.ii) xform=ii ;;
 
755
    *.class) xform=class ;;
 
756
    *.cpp) xform=cpp ;;
 
757
    *.cxx) xform=cxx ;;
 
758
    *.f90) xform=f90 ;;
 
759
    *.for) xform=for ;;
 
760
    *.java) xform=java ;;
1220
761
    esac
1221
762
 
 
763
    libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"`
 
764
 
1222
765
    case $libobj in
1223
 
    *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;;
 
766
    *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;;
1224
767
    *)
1225
 
      func_fatal_error "cannot determine name of library object from \`$libobj'"
 
768
      $echo "$modename: cannot determine name of library object from \`$libobj'" 1>&2
 
769
      exit $EXIT_FAILURE
1226
770
      ;;
1227
771
    esac
1228
772
 
1230
774
 
1231
775
    for arg in $later; do
1232
776
      case $arg in
1233
 
      -shared)
1234
 
        test "$build_libtool_libs" != yes && \
1235
 
          func_fatal_configuration "can not build a shared library"
1236
 
        build_old_libs=no
1237
 
        continue
1238
 
        ;;
1239
 
 
1240
777
      -static)
1241
 
        build_libtool_libs=no
1242
778
        build_old_libs=yes
1243
779
        continue
1244
780
        ;;
1255
791
      esac
1256
792
    done
1257
793
 
1258
 
    func_quote_for_eval "$libobj"
1259
 
    test "X$libobj" != "X$func_quote_for_eval_result" \
1260
 
      && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"'    &()|`$[]' \
1261
 
      && func_warning "libobj name \`$libobj' may not contain shell special characters."
1262
 
    func_dirname_and_basename "$obj" "/" ""
1263
 
    objname="$func_basename_result"
1264
 
    xdir="$func_dirname_result"
 
794
    qlibobj=`$echo "X$libobj" | $Xsed -e "$sed_quote_subst"`
 
795
    case $qlibobj in
 
796
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \     ]*|*]*|"")
 
797
        qlibobj="\"$qlibobj\"" ;;
 
798
    esac
 
799
    test "X$libobj" != "X$qlibobj" \
 
800
        && $echo "X$libobj" | grep '[]~#^*{};<>?"'"'"'  &()|`$[]' \
 
801
        && $echo "$modename: libobj name \`$libobj' may not contain shell special characters."
 
802
    objname=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`
 
803
    xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`
 
804
    if test "X$xdir" = "X$obj"; then
 
805
      xdir=
 
806
    else
 
807
      xdir=$xdir/
 
808
    fi
1265
809
    lobj=${xdir}$objdir/$objname
1266
810
 
1267
 
    test -z "$base_compile" && \
1268
 
      func_fatal_help "you must specify a compilation command"
 
811
    if test -z "$base_compile"; then
 
812
      $echo "$modename: you must specify a compilation command" 1>&2
 
813
      $echo "$help" 1>&2
 
814
      exit $EXIT_FAILURE
 
815
    fi
1269
816
 
1270
817
    # Delete any leftover library objects.
1271
818
    if test "$build_old_libs" = yes; then
1274
821
      removelist="$lobj $libobj ${libobj}T"
1275
822
    fi
1276
823
 
 
824
    $run $rm $removelist
 
825
    trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15
 
826
 
1277
827
    # On Cygwin there's no "real" PIC flag so we must build both object types
1278
828
    case $host_os in
1279
 
    cygwin* | mingw* | pw32* | os2* | cegcc*)
 
829
    cygwin* | mingw* | pw32* | os2*)
1280
830
      pic_mode=default
1281
831
      ;;
1282
832
    esac
1288
838
    # Calculate the filename of the output object if compiler does
1289
839
    # not support -o with -c
1290
840
    if test "$compiler_c_o" = no; then
1291
 
      output_obj=`$ECHO "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext}
 
841
      output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext}
1292
842
      lockfile="$output_obj.lock"
 
843
      removelist="$removelist $output_obj $lockfile"
 
844
      trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15
1293
845
    else
1294
846
      output_obj=
1295
847
      need_locks=no
1299
851
    # Lock this critical section if it is needed
1300
852
    # We use this script file to make the link, it avoids creating a new file
1301
853
    if test "$need_locks" = yes; then
1302
 
      until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do
1303
 
        func_echo "Waiting for $lockfile to be removed"
 
854
      until $run ln "$progpath" "$lockfile" 2>/dev/null; do
 
855
        $show "Waiting for $lockfile to be removed"
1304
856
        sleep 2
1305
857
      done
1306
858
    elif test "$need_locks" = warn; then
1307
859
      if test -f "$lockfile"; then
1308
 
        $ECHO "\
 
860
        $echo "\
1309
861
*** ERROR, $lockfile exists and contains:
1310
862
`cat $lockfile 2>/dev/null`
1311
863
 
1316
868
avoid parallel builds (make -j) in this platform, or get a better
1317
869
compiler."
1318
870
 
1319
 
        $opt_dry_run || $RM $removelist
 
871
        $run $rm $removelist
1320
872
        exit $EXIT_FAILURE
1321
873
      fi
1322
 
      removelist="$removelist $output_obj"
1323
 
      $ECHO "$srcfile" > "$lockfile"
 
874
      $echo "$srcfile" > "$lockfile"
1324
875
    fi
1325
876
 
1326
 
    $opt_dry_run || $RM $removelist
1327
 
    removelist="$removelist $lockfile"
1328
 
    trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15
1329
 
 
1330
877
    if test -n "$fix_srcfile_path"; then
1331
878
      eval srcfile=\"$fix_srcfile_path\"
1332
879
    fi
1333
 
    func_quote_for_eval "$srcfile"
1334
 
    qsrcfile=$func_quote_for_eval_result
 
880
    qsrcfile=`$echo "X$srcfile" | $Xsed -e "$sed_quote_subst"`
 
881
    case $qsrcfile in
 
882
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \     ]*|*]*|"")
 
883
      qsrcfile="\"$qsrcfile\"" ;;
 
884
    esac
 
885
 
 
886
    $run $rm "$libobj" "${libobj}T"
 
887
 
 
888
    # Create a libtool object file (analogous to a ".la" file),
 
889
    # but don't create it if we're doing a dry run.
 
890
    test -z "$run" && cat > ${libobj}T <<EOF
 
891
# $libobj - a libtool object file
 
892
# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
 
893
#
 
894
# Please DO NOT delete this file!
 
895
# It is necessary for linking the library.
 
896
 
 
897
# Name of the PIC object.
 
898
EOF
1335
899
 
1336
900
    # Only build a PIC object if we are building libtool libraries.
1337
901
    if test "$build_libtool_libs" = yes; then
1345
909
        command="$base_compile $qsrcfile"
1346
910
      fi
1347
911
 
1348
 
      func_mkdir_p "$xdir$objdir"
 
912
      if test ! -d "${xdir}$objdir"; then
 
913
        $show "$mkdir ${xdir}$objdir"
 
914
        $run $mkdir ${xdir}$objdir
 
915
        exit_status=$?
 
916
        if test "$exit_status" -ne 0 && test ! -d "${xdir}$objdir"; then
 
917
          exit $exit_status
 
918
        fi
 
919
      fi
1349
920
 
1350
921
      if test -z "$output_obj"; then
1351
922
        # Place PIC objects in $objdir
1352
923
        command="$command -o $lobj"
1353
924
      fi
1354
925
 
1355
 
      func_show_eval_locale "$command"  \
1356
 
          'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE'
 
926
      $run $rm "$lobj" "$output_obj"
 
927
 
 
928
      $show "$command"
 
929
      if $run eval "$command"; then :
 
930
      else
 
931
        test -n "$output_obj" && $run $rm $removelist
 
932
        exit $EXIT_FAILURE
 
933
      fi
1357
934
 
1358
935
      if test "$need_locks" = warn &&
1359
936
         test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
1360
 
        $ECHO "\
 
937
        $echo "\
1361
938
*** ERROR, $lockfile contains:
1362
939
`cat $lockfile 2>/dev/null`
1363
940
 
1371
948
avoid parallel builds (make -j) in this platform, or get a better
1372
949
compiler."
1373
950
 
1374
 
        $opt_dry_run || $RM $removelist
 
951
        $run $rm $removelist
1375
952
        exit $EXIT_FAILURE
1376
953
      fi
1377
954
 
1378
955
      # Just move the object if needed, then go on to compile the next one
1379
956
      if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then
1380
 
        func_show_eval '$MV "$output_obj" "$lobj"' \
1381
 
          'error=$?; $opt_dry_run || $RM $removelist; exit $error'
 
957
        $show "$mv $output_obj $lobj"
 
958
        if $run $mv $output_obj $lobj; then :
 
959
        else
 
960
          error=$?
 
961
          $run $rm $removelist
 
962
          exit $error
 
963
        fi
1382
964
      fi
1383
965
 
 
966
      # Append the name of the PIC object to the libtool object file.
 
967
      test -z "$run" && cat >> ${libobj}T <<EOF
 
968
pic_object='$objdir/$objname'
 
969
 
 
970
EOF
 
971
 
1384
972
      # Allow error messages only from the first compilation.
1385
973
      if test "$suppress_opt" = yes; then
1386
 
        suppress_output=' >/dev/null 2>&1'
 
974
        suppress_output=' >/dev/null 2>&1'
1387
975
      fi
 
976
    else
 
977
      # No PIC object so indicate it doesn't exist in the libtool
 
978
      # object file.
 
979
      test -z "$run" && cat >> ${libobj}T <<EOF
 
980
pic_object=none
 
981
 
 
982
EOF
1388
983
    fi
1389
984
 
1390
985
    # Only build a position-dependent object if we build old libraries.
1391
986
    if test "$build_old_libs" = yes; then
1392
987
      if test "$pic_mode" != yes; then
1393
988
        # Don't build PIC code
1394
 
        command="$base_compile $qsrcfile$pie_flag"
 
989
        command="$base_compile $qsrcfile"
1395
990
      else
1396
991
        command="$base_compile $qsrcfile $pic_flag"
1397
992
      fi
1401
996
 
1402
997
      # Suppress compiler output if we already did a PIC compilation.
1403
998
      command="$command$suppress_output"
1404
 
      func_show_eval_locale "$command" \
1405
 
        '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE'
 
999
      $run $rm "$obj" "$output_obj"
 
1000
      $show "$command"
 
1001
      if $run eval "$command"; then :
 
1002
      else
 
1003
        $run $rm $removelist
 
1004
        exit $EXIT_FAILURE
 
1005
      fi
1406
1006
 
1407
1007
      if test "$need_locks" = warn &&
1408
1008
         test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
1409
 
        $ECHO "\
 
1009
        $echo "\
1410
1010
*** ERROR, $lockfile contains:
1411
1011
`cat $lockfile 2>/dev/null`
1412
1012
 
1420
1020
avoid parallel builds (make -j) in this platform, or get a better
1421
1021
compiler."
1422
1022
 
1423
 
        $opt_dry_run || $RM $removelist
 
1023
        $run $rm $removelist
1424
1024
        exit $EXIT_FAILURE
1425
1025
      fi
1426
1026
 
1427
1027
      # Just move the object if needed
1428
1028
      if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then
1429
 
        func_show_eval '$MV "$output_obj" "$obj"' \
1430
 
          'error=$?; $opt_dry_run || $RM $removelist; exit $error'
1431
 
      fi
1432
 
    fi
1433
 
 
1434
 
    $opt_dry_run || {
1435
 
      func_write_libtool_object "$libobj" "$objdir/$objname" "$objname"
1436
 
 
1437
 
      # Unlock the critical section if it was locked
1438
 
      if test "$need_locks" != no; then
1439
 
        removelist=$lockfile
1440
 
        $RM "$lockfile"
1441
 
      fi
1442
 
    }
1443
 
 
1444
 
    exit $EXIT_SUCCESS
1445
 
}
1446
 
 
1447
 
$opt_help || {
1448
 
test "$mode" = compile && func_mode_compile ${1+"$@"}
1449
 
}
1450
 
 
1451
 
func_mode_help ()
1452
 
{
1453
 
    # We need to display help for each of the modes.
1454
 
    case $mode in
1455
 
      "")
1456
 
        # Generic help is extracted from the usage comments
1457
 
        # at the start of this file.
1458
 
        func_help
1459
 
        ;;
1460
 
 
1461
 
      clean)
1462
 
        $ECHO \
1463
 
"Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE...
1464
 
 
1465
 
Remove files from the build directory.
1466
 
 
1467
 
RM is the name of the program to use to delete files associated with each FILE
1468
 
(typically \`/bin/rm').  RM-OPTIONS are options (such as \`-f') to be passed
1469
 
to RM.
1470
 
 
1471
 
If FILE is a libtool library, object or program, all the files associated
1472
 
with it are deleted. Otherwise, only FILE itself is deleted using RM."
1473
 
        ;;
1474
 
 
1475
 
      compile)
1476
 
      $ECHO \
1477
 
"Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE
1478
 
 
1479
 
Compile a source file into a libtool library object.
1480
 
 
1481
 
This mode accepts the following additional options:
1482
 
 
1483
 
  -o OUTPUT-FILE    set the output file name to OUTPUT-FILE
1484
 
  -no-suppress      do not suppress compiler output for multiple passes
1485
 
  -prefer-pic       try to building PIC objects only
1486
 
  -prefer-non-pic   try to building non-PIC objects only
1487
 
  -shared           do not build a \`.o' file suitable for static linking
1488
 
  -static           only build a \`.o' file suitable for static linking
1489
 
 
1490
 
COMPILE-COMMAND is a command to be used in creating a \`standard' object file
1491
 
from the given SOURCEFILE.
1492
 
 
1493
 
The output file name is determined by removing the directory component from
1494
 
SOURCEFILE, then substituting the C source code suffix \`.c' with the
1495
 
library object suffix, \`.lo'."
1496
 
        ;;
1497
 
 
1498
 
      execute)
1499
 
        $ECHO \
1500
 
"Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]...
1501
 
 
1502
 
Automatically set library path, then run a program.
1503
 
 
1504
 
This mode accepts the following additional options:
1505
 
 
1506
 
  -dlopen FILE      add the directory containing FILE to the library path
1507
 
 
1508
 
This mode sets the library path environment variable according to \`-dlopen'
1509
 
flags.
1510
 
 
1511
 
If any of the ARGS are libtool executable wrappers, then they are translated
1512
 
into their corresponding uninstalled binary, and any of their required library
1513
 
directories are added to the library path.
1514
 
 
1515
 
Then, COMMAND is executed, with ARGS as arguments."
1516
 
        ;;
1517
 
 
1518
 
      finish)
1519
 
        $ECHO \
1520
 
"Usage: $progname [OPTION]... --mode=finish [LIBDIR]...
1521
 
 
1522
 
Complete the installation of libtool libraries.
1523
 
 
1524
 
Each LIBDIR is a directory that contains libtool libraries.
1525
 
 
1526
 
The commands that this mode executes may require superuser privileges.  Use
1527
 
the \`--dry-run' option if you just want to see what would be executed."
1528
 
        ;;
1529
 
 
1530
 
      install)
1531
 
        $ECHO \
1532
 
"Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND...
1533
 
 
1534
 
Install executables or libraries.
1535
 
 
1536
 
INSTALL-COMMAND is the installation command.  The first component should be
1537
 
either the \`install' or \`cp' program.
1538
 
 
1539
 
The following components of INSTALL-COMMAND are treated specially:
1540
 
 
1541
 
  -inst-prefix PREFIX-DIR  Use PREFIX-DIR as a staging area for installation
1542
 
 
1543
 
The rest of the components are interpreted as arguments to that command (only
1544
 
BSD-compatible install options are recognized)."
1545
 
        ;;
1546
 
 
1547
 
      link)
1548
 
        $ECHO \
1549
 
"Usage: $progname [OPTION]... --mode=link LINK-COMMAND...
1550
 
 
1551
 
Link object files or libraries together to form another library, or to
1552
 
create an executable program.
1553
 
 
1554
 
LINK-COMMAND is a command using the C compiler that you would use to create
1555
 
a program from several object files.
1556
 
 
1557
 
The following components of LINK-COMMAND are treated specially:
1558
 
 
1559
 
  -all-static       do not do any dynamic linking at all
1560
 
  -avoid-version    do not add a version suffix if possible
1561
 
  -dlopen FILE      \`-dlpreopen' FILE if it cannot be dlopened at runtime
1562
 
  -dlpreopen FILE   link in FILE and add its symbols to lt_preloaded_symbols
1563
 
  -export-dynamic   allow symbols from OUTPUT-FILE to be resolved with dlsym(3)
1564
 
  -export-symbols SYMFILE
1565
 
                    try to export only the symbols listed in SYMFILE
1566
 
  -export-symbols-regex REGEX
1567
 
                    try to export only the symbols matching REGEX
1568
 
  -LLIBDIR          search LIBDIR for required installed libraries
1569
 
  -lNAME            OUTPUT-FILE requires the installed library libNAME
1570
 
  -module           build a library that can dlopened
1571
 
  -no-fast-install  disable the fast-install mode
1572
 
  -no-install       link a not-installable executable
1573
 
  -no-undefined     declare that a library does not refer to external symbols
1574
 
  -o OUTPUT-FILE    create OUTPUT-FILE from the specified objects
1575
 
  -objectlist FILE  Use a list of object files found in FILE to specify objects
1576
 
  -precious-files-regex REGEX
1577
 
                    don't remove output files matching REGEX
1578
 
  -release RELEASE  specify package release information
1579
 
  -rpath LIBDIR     the created library will eventually be installed in LIBDIR
1580
 
  -R[ ]LIBDIR       add LIBDIR to the runtime path of programs and libraries
1581
 
  -shared           only do dynamic linking of libtool libraries
1582
 
  -shrext SUFFIX    override the standard shared library file extension
1583
 
  -static           do not do any dynamic linking of uninstalled libtool libraries
1584
 
  -static-libtool-libs
1585
 
                    do not do any dynamic linking of libtool libraries
1586
 
  -version-info CURRENT[:REVISION[:AGE]]
1587
 
                    specify library version info [each variable defaults to 0]
1588
 
  -weak LIBNAME     declare that the target provides the LIBNAME interface
1589
 
 
1590
 
All other options (arguments beginning with \`-') are ignored.
1591
 
 
1592
 
Every other argument is treated as a filename.  Files ending in \`.la' are
1593
 
treated as uninstalled libtool libraries, other files are standard or library
1594
 
object files.
1595
 
 
1596
 
If the OUTPUT-FILE ends in \`.la', then a libtool library is created,
1597
 
only library objects (\`.lo' files) may be specified, and \`-rpath' is
1598
 
required, except when creating a convenience library.
1599
 
 
1600
 
If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created
1601
 
using \`ar' and \`ranlib', or on Windows using \`lib'.
1602
 
 
1603
 
If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file
1604
 
is created, otherwise an executable program is created."
1605
 
        ;;
1606
 
 
1607
 
      uninstall)
1608
 
        $ECHO \
1609
 
"Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...
1610
 
 
1611
 
Remove libraries from an installation directory.
1612
 
 
1613
 
RM is the name of the program to use to delete files associated with each FILE
1614
 
(typically \`/bin/rm').  RM-OPTIONS are options (such as \`-f') to be passed
1615
 
to RM.
1616
 
 
1617
 
If FILE is a libtool library, all the files associated with it are deleted.
1618
 
Otherwise, only FILE itself is deleted using RM."
1619
 
        ;;
1620
 
 
1621
 
      *)
1622
 
        func_fatal_help "invalid operation mode \`$mode'"
1623
 
        ;;
1624
 
    esac
1625
 
 
1626
 
    $ECHO
1627
 
    $ECHO "Try \`$progname --help' for more information about other modes."
1628
 
 
1629
 
    exit $?
1630
 
}
1631
 
 
1632
 
  # Now that we've collected a possible --mode arg, show help if necessary
1633
 
  $opt_help && func_mode_help
1634
 
 
1635
 
 
1636
 
# func_mode_execute arg...
1637
 
func_mode_execute ()
1638
 
{
1639
 
    $opt_debug
1640
 
    # The first argument is the command name.
1641
 
    cmd="$nonopt"
1642
 
    test -z "$cmd" && \
1643
 
      func_fatal_help "you must specify a COMMAND"
1644
 
 
1645
 
    # Handle -dlopen flags immediately.
1646
 
    for file in $execute_dlfiles; do
1647
 
      test -f "$file" \
1648
 
        || func_fatal_help "\`$file' is not a file"
1649
 
 
1650
 
      dir=
1651
 
      case $file in
1652
 
      *.la)
1653
 
        # Check to see that this really is a libtool archive.
1654
 
        func_lalib_unsafe_p "$file" \
1655
 
          || func_fatal_help "\`$lib' is not a valid libtool archive"
1656
 
 
1657
 
        # Read the libtool library.
1658
 
        dlname=
1659
 
        library_names=
1660
 
        func_source "$file"
1661
 
 
1662
 
        # Skip this library if it cannot be dlopened.
1663
 
        if test -z "$dlname"; then
1664
 
          # Warn if it was a shared library.
1665
 
          test -n "$library_names" && \
1666
 
            func_warning "\`$file' was not linked with \`-export-dynamic'"
1667
 
          continue
1668
 
        fi
1669
 
 
1670
 
        func_dirname "$file" "" "."
1671
 
        dir="$func_dirname_result"
1672
 
 
1673
 
        if test -f "$dir/$objdir/$dlname"; then
1674
 
          dir="$dir/$objdir"
1675
 
        else
1676
 
          if test ! -f "$dir/$dlname"; then
1677
 
            func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'"
1678
 
          fi
1679
 
        fi
1680
 
        ;;
1681
 
 
1682
 
      *.lo)
1683
 
        # Just add the directory containing the .lo file.
1684
 
        func_dirname "$file" "" "."
1685
 
        dir="$func_dirname_result"
1686
 
        ;;
1687
 
 
1688
 
      *)
1689
 
        func_warning "\`-dlopen' is ignored for non-libtool libraries and objects"
1690
 
        continue
1691
 
        ;;
1692
 
      esac
1693
 
 
1694
 
      # Get the absolute pathname.
1695
 
      absdir=`cd "$dir" && pwd`
1696
 
      test -n "$absdir" && dir="$absdir"
1697
 
 
1698
 
      # Now add the directory to shlibpath_var.
1699
 
      if eval "test -z \"\$$shlibpath_var\""; then
1700
 
        eval "$shlibpath_var=\"\$dir\""
1701
 
      else
1702
 
        eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\""
1703
 
      fi
1704
 
    done
1705
 
 
1706
 
    # This variable tells wrapper scripts just to set shlibpath_var
1707
 
    # rather than running their programs.
1708
 
    libtool_execute_magic="$magic"
1709
 
 
1710
 
    # Check if any of the arguments is a wrapper script.
1711
 
    args=
1712
 
    for file
1713
 
    do
1714
 
      case $file in
1715
 
      -*) ;;
1716
 
      *)
1717
 
        # Do a test to see if this is really a libtool program.
1718
 
        if func_ltwrapper_script_p "$file"; then
1719
 
          func_source "$file"
1720
 
          # Transform arg to wrapped name.
1721
 
          file="$progdir/$program"
1722
 
        elif func_ltwrapper_executable_p "$file"; then
1723
 
          func_ltwrapper_scriptname "$file"
1724
 
          func_source "$func_ltwrapper_scriptname_result"
1725
 
          # Transform arg to wrapped name.
1726
 
          file="$progdir/$program"
1727
 
        fi
1728
 
        ;;
1729
 
      esac
1730
 
      # Quote arguments (to preserve shell metacharacters).
1731
 
      func_quote_for_eval "$file"
1732
 
      args="$args $func_quote_for_eval_result"
1733
 
    done
1734
 
 
1735
 
    if test "X$opt_dry_run" = Xfalse; then
1736
 
      if test -n "$shlibpath_var"; then
1737
 
        # Export the shlibpath_var.
1738
 
        eval "export $shlibpath_var"
1739
 
      fi
1740
 
 
1741
 
      # Restore saved environment variables
1742
 
      for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES
1743
 
      do
1744
 
        eval "if test \"\${save_$lt_var+set}\" = set; then
1745
 
                $lt_var=\$save_$lt_var; export $lt_var
1746
 
              else
1747
 
                $lt_unset $lt_var
1748
 
              fi"
1749
 
      done
1750
 
 
1751
 
      # Now prepare to actually exec the command.
1752
 
      exec_cmd="\$cmd$args"
1753
 
    else
1754
 
      # Display what would be done.
1755
 
      if test -n "$shlibpath_var"; then
1756
 
        eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\""
1757
 
        $ECHO "export $shlibpath_var"
1758
 
      fi
1759
 
      $ECHO "$cmd$args"
1760
 
      exit $EXIT_SUCCESS
1761
 
    fi
1762
 
}
1763
 
 
1764
 
test "$mode" = execute && func_mode_execute ${1+"$@"}
1765
 
 
1766
 
 
1767
 
# func_mode_finish arg...
1768
 
func_mode_finish ()
1769
 
{
1770
 
    $opt_debug
1771
 
    libdirs="$nonopt"
1772
 
    admincmds=
1773
 
 
1774
 
    if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
1775
 
      for dir
1776
 
      do
1777
 
        libdirs="$libdirs $dir"
1778
 
      done
1779
 
 
1780
 
      for libdir in $libdirs; do
1781
 
        if test -n "$finish_cmds"; then
1782
 
          # Do each command in the finish commands.
1783
 
          func_execute_cmds "$finish_cmds" 'admincmds="$admincmds
1784
 
'"$cmd"'"'
1785
 
        fi
1786
 
        if test -n "$finish_eval"; then
1787
 
          # Do the single finish_eval.
1788
 
          eval cmds=\"$finish_eval\"
1789
 
          $opt_dry_run || eval "$cmds" || admincmds="$admincmds
1790
 
       $cmds"
1791
 
        fi
1792
 
      done
1793
 
    fi
1794
 
 
1795
 
    # Exit here if they wanted silent mode.
1796
 
    $opt_silent && exit $EXIT_SUCCESS
1797
 
 
1798
 
    $ECHO "X----------------------------------------------------------------------" | $Xsed
1799
 
    $ECHO "Libraries have been installed in:"
1800
 
    for libdir in $libdirs; do
1801
 
      $ECHO "   $libdir"
1802
 
    done
1803
 
    $ECHO
1804
 
    $ECHO "If you ever happen to want to link against installed libraries"
1805
 
    $ECHO "in a given directory, LIBDIR, you must either use libtool, and"
1806
 
    $ECHO "specify the full pathname of the library, or use the \`-LLIBDIR'"
1807
 
    $ECHO "flag during linking and do at least one of the following:"
1808
 
    if test -n "$shlibpath_var"; then
1809
 
      $ECHO "   - add LIBDIR to the \`$shlibpath_var' environment variable"
1810
 
      $ECHO "     during execution"
1811
 
    fi
1812
 
    if test -n "$runpath_var"; then
1813
 
      $ECHO "   - add LIBDIR to the \`$runpath_var' environment variable"
1814
 
      $ECHO "     during linking"
1815
 
    fi
1816
 
    if test -n "$hardcode_libdir_flag_spec"; then
1817
 
      libdir=LIBDIR
1818
 
      eval flag=\"$hardcode_libdir_flag_spec\"
1819
 
 
1820
 
      $ECHO "   - use the \`$flag' linker flag"
1821
 
    fi
1822
 
    if test -n "$admincmds"; then
1823
 
      $ECHO "   - have your system administrator run these commands:$admincmds"
1824
 
    fi
1825
 
    if test -f /etc/ld.so.conf; then
1826
 
      $ECHO "   - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
1827
 
    fi
1828
 
    $ECHO
1829
 
 
1830
 
    $ECHO "See any operating system documentation about shared libraries for"
1831
 
    case $host in
1832
 
      solaris2.[6789]|solaris2.1[0-9])
1833
 
        $ECHO "more information, such as the ld(1), crle(1) and ld.so(8) manual"
1834
 
        $ECHO "pages."
1835
 
        ;;
1836
 
      *)
1837
 
        $ECHO "more information, such as the ld(1) and ld.so(8) manual pages."
1838
 
        ;;
1839
 
    esac
1840
 
    $ECHO "X----------------------------------------------------------------------" | $Xsed
1841
 
    exit $EXIT_SUCCESS
1842
 
}
1843
 
 
1844
 
test "$mode" = finish && func_mode_finish ${1+"$@"}
1845
 
 
1846
 
 
1847
 
# func_mode_install arg...
1848
 
func_mode_install ()
1849
 
{
1850
 
    $opt_debug
1851
 
    # There may be an optional sh(1) argument at the beginning of
1852
 
    # install_prog (especially on Windows NT).
1853
 
    if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh ||
1854
 
       # Allow the use of GNU shtool's install command.
1855
 
       $ECHO "X$nonopt" | $GREP shtool >/dev/null; then
1856
 
      # Aesthetically quote it.
1857
 
      func_quote_for_eval "$nonopt"
1858
 
      install_prog="$func_quote_for_eval_result "
1859
 
      arg=$1
1860
 
      shift
1861
 
    else
1862
 
      install_prog=
1863
 
      arg=$nonopt
1864
 
    fi
1865
 
 
1866
 
    # The real first argument should be the name of the installation program.
1867
 
    # Aesthetically quote it.
1868
 
    func_quote_for_eval "$arg"
1869
 
    install_prog="$install_prog$func_quote_for_eval_result"
1870
 
 
1871
 
    # We need to accept at least all the BSD install flags.
1872
 
    dest=
1873
 
    files=
1874
 
    opts=
1875
 
    prev=
1876
 
    install_type=
1877
 
    isdir=no
1878
 
    stripme=
1879
 
    for arg
1880
 
    do
1881
 
      if test -n "$dest"; then
1882
 
        files="$files $dest"
1883
 
        dest=$arg
1884
 
        continue
1885
 
      fi
1886
 
 
1887
 
      case $arg in
1888
 
      -d) isdir=yes ;;
1889
 
      -f)
1890
 
        case " $install_prog " in
1891
 
        *[\\\ /]cp\ *) ;;
1892
 
        *) prev=$arg ;;
1893
 
        esac
1894
 
        ;;
1895
 
      -g | -m | -o)
1896
 
        prev=$arg
1897
 
        ;;
1898
 
      -s)
1899
 
        stripme=" -s"
1900
 
        continue
1901
 
        ;;
1902
 
      -*)
1903
 
        ;;
1904
 
      *)
1905
 
        # If the previous option needed an argument, then skip it.
1906
 
        if test -n "$prev"; then
1907
 
          prev=
1908
 
        else
1909
 
          dest=$arg
1910
 
          continue
1911
 
        fi
1912
 
        ;;
1913
 
      esac
1914
 
 
1915
 
      # Aesthetically quote the argument.
1916
 
      func_quote_for_eval "$arg"
1917
 
      install_prog="$install_prog $func_quote_for_eval_result"
1918
 
    done
1919
 
 
1920
 
    test -z "$install_prog" && \
1921
 
      func_fatal_help "you must specify an install program"
1922
 
 
1923
 
    test -n "$prev" && \
1924
 
      func_fatal_help "the \`$prev' option requires an argument"
1925
 
 
1926
 
    if test -z "$files"; then
1927
 
      if test -z "$dest"; then
1928
 
        func_fatal_help "no file or destination specified"
1929
 
      else
1930
 
        func_fatal_help "you must specify a destination"
1931
 
      fi
1932
 
    fi
1933
 
 
1934
 
    # Strip any trailing slash from the destination.
1935
 
    func_stripname '' '/' "$dest"
1936
 
    dest=$func_stripname_result
1937
 
 
1938
 
    # Check to see that the destination is a directory.
1939
 
    test -d "$dest" && isdir=yes
1940
 
    if test "$isdir" = yes; then
1941
 
      destdir="$dest"
1942
 
      destname=
1943
 
    else
1944
 
      func_dirname_and_basename "$dest" "" "."
1945
 
      destdir="$func_dirname_result"
1946
 
      destname="$func_basename_result"
1947
 
 
1948
 
      # Not a directory, so check to see that there is only one file specified.
1949
 
      set dummy $files; shift
1950
 
      test "$#" -gt 1 && \
1951
 
        func_fatal_help "\`$dest' is not a directory"
1952
 
    fi
1953
 
    case $destdir in
1954
 
    [\\/]* | [A-Za-z]:[\\/]*) ;;
1955
 
    *)
1956
 
      for file in $files; do
1957
 
        case $file in
1958
 
        *.lo) ;;
1959
 
        *)
1960
 
          func_fatal_help "\`$destdir' must be an absolute directory name"
1961
 
          ;;
1962
 
        esac
1963
 
      done
1964
 
      ;;
1965
 
    esac
1966
 
 
1967
 
    # This variable tells wrapper scripts just to set variables rather
1968
 
    # than running their programs.
1969
 
    libtool_install_magic="$magic"
1970
 
 
1971
 
    staticlibs=
1972
 
    future_libdirs=
1973
 
    current_libdirs=
1974
 
    for file in $files; do
1975
 
 
1976
 
      # Do each installation.
1977
 
      case $file in
1978
 
      *.$libext)
1979
 
        # Do the static libraries later.
1980
 
        staticlibs="$staticlibs $file"
1981
 
        ;;
1982
 
 
1983
 
      *.la)
1984
 
        # Check to see that this really is a libtool archive.
1985
 
        func_lalib_unsafe_p "$file" \
1986
 
          || func_fatal_help "\`$file' is not a valid libtool archive"
1987
 
 
1988
 
        library_names=
1989
 
        old_library=
1990
 
        relink_command=
1991
 
        func_source "$file"
1992
 
 
1993
 
        # Add the libdir to current_libdirs if it is the destination.
1994
 
        if test "X$destdir" = "X$libdir"; then
1995
 
          case "$current_libdirs " in
1996
 
          *" $libdir "*) ;;
1997
 
          *) current_libdirs="$current_libdirs $libdir" ;;
1998
 
          esac
1999
 
        else
2000
 
          # Note the libdir as a future libdir.
2001
 
          case "$future_libdirs " in
2002
 
          *" $libdir "*) ;;
2003
 
          *) future_libdirs="$future_libdirs $libdir" ;;
2004
 
          esac
2005
 
        fi
2006
 
 
2007
 
        func_dirname "$file" "/" ""
2008
 
        dir="$func_dirname_result"
2009
 
        dir="$dir$objdir"
2010
 
 
2011
 
        if test -n "$relink_command"; then
2012
 
          # Determine the prefix the user has applied to our future dir.
2013
 
          inst_prefix_dir=`$ECHO "X$destdir" | $Xsed -e "s%$libdir\$%%"`
2014
 
 
2015
 
          # Don't allow the user to place us outside of our expected
2016
 
          # location b/c this prevents finding dependent libraries that
2017
 
          # are installed to the same prefix.
2018
 
          # At present, this check doesn't affect windows .dll's that
2019
 
          # are installed into $libdir/../bin (currently, that works fine)
2020
 
          # but it's something to keep an eye on.
2021
 
          test "$inst_prefix_dir" = "$destdir" && \
2022
 
            func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir"
2023
 
 
2024
 
          if test -n "$inst_prefix_dir"; then
2025
 
            # Stick the inst_prefix_dir data into the link command.
2026
 
            relink_command=`$ECHO "X$relink_command" | $Xsed -e "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"`
2027
 
          else
2028
 
            relink_command=`$ECHO "X$relink_command" | $Xsed -e "s%@inst_prefix_dir@%%"`
2029
 
          fi
2030
 
 
2031
 
          func_warning "relinking \`$file'"
2032
 
          func_show_eval "$relink_command" \
2033
 
            'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"'
2034
 
        fi
2035
 
 
2036
 
        # See the names of the shared library.
2037
 
        set dummy $library_names; shift
2038
 
        if test -n "$1"; then
2039
 
          realname="$1"
2040
 
          shift
2041
 
 
2042
 
          srcname="$realname"
2043
 
          test -n "$relink_command" && srcname="$realname"T
2044
 
 
2045
 
          # Install the shared library and build the symlinks.
2046
 
          func_show_eval "$install_prog $dir/$srcname $destdir/$realname" \
2047
 
              'exit $?'
2048
 
          tstripme="$stripme"
2049
 
          case $host_os in
2050
 
          cygwin* | mingw* | pw32* | cegcc*)
2051
 
            case $realname in
2052
 
            *.dll.a)
2053
 
              tstripme=""
2054
 
              ;;
2055
 
            esac
2056
 
            ;;
2057
 
          esac
2058
 
          if test -n "$tstripme" && test -n "$striplib"; then
2059
 
            func_show_eval "$striplib $destdir/$realname" 'exit $?'
2060
 
          fi
2061
 
 
2062
 
          if test "$#" -gt 0; then
2063
 
            # Delete the old symlinks, and create new ones.
2064
 
            # Try `ln -sf' first, because the `ln' binary might depend on
2065
 
            # the symlink we replace!  Solaris /bin/ln does not understand -f,
2066
 
            # so we also need to try rm && ln -s.
2067
 
            for linkname
2068
 
            do
2069
 
              test "$linkname" != "$realname" \
2070
 
                && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })"
2071
 
            done
2072
 
          fi
2073
 
 
2074
 
          # Do each command in the postinstall commands.
2075
 
          lib="$destdir/$realname"
2076
 
          func_execute_cmds "$postinstall_cmds" 'exit $?'
2077
 
        fi
2078
 
 
2079
 
        # Install the pseudo-library for information purposes.
2080
 
        func_basename "$file"
2081
 
        name="$func_basename_result"
2082
 
        instname="$dir/$name"i
2083
 
        func_show_eval "$install_prog $instname $destdir/$name" 'exit $?'
2084
 
 
2085
 
        # Maybe install the static library, too.
2086
 
        test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
2087
 
        ;;
2088
 
 
2089
 
      *.lo)
2090
 
        # Install (i.e. copy) a libtool object.
2091
 
 
2092
 
        # Figure out destination file name, if it wasn't already specified.
2093
 
        if test -n "$destname"; then
2094
 
          destfile="$destdir/$destname"
2095
 
        else
2096
 
          func_basename "$file"
2097
 
          destfile="$func_basename_result"
2098
 
          destfile="$destdir/$destfile"
2099
 
        fi
2100
 
 
2101
 
        # Deduce the name of the destination old-style object file.
2102
 
        case $destfile in
2103
 
        *.lo)
2104
 
          func_lo2o "$destfile"
2105
 
          staticdest=$func_lo2o_result
2106
 
          ;;
2107
 
        *.$objext)
2108
 
          staticdest="$destfile"
2109
 
          destfile=
2110
 
          ;;
2111
 
        *)
2112
 
          func_fatal_help "cannot copy a libtool object to \`$destfile'"
2113
 
          ;;
2114
 
        esac
2115
 
 
2116
 
        # Install the libtool object if requested.
2117
 
        test -n "$destfile" && \
2118
 
          func_show_eval "$install_prog $file $destfile" 'exit $?'
2119
 
 
2120
 
        # Install the old object if enabled.
2121
 
        if test "$build_old_libs" = yes; then
2122
 
          # Deduce the name of the old-style object file.
2123
 
          func_lo2o "$file"
2124
 
          staticobj=$func_lo2o_result
2125
 
          func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?'
2126
 
        fi
2127
 
        exit $EXIT_SUCCESS
2128
 
        ;;
2129
 
 
2130
 
      *)
2131
 
        # Figure out destination file name, if it wasn't already specified.
2132
 
        if test -n "$destname"; then
2133
 
          destfile="$destdir/$destname"
2134
 
        else
2135
 
          func_basename "$file"
2136
 
          destfile="$func_basename_result"
2137
 
          destfile="$destdir/$destfile"
2138
 
        fi
2139
 
 
2140
 
        # If the file is missing, and there is a .exe on the end, strip it
2141
 
        # because it is most likely a libtool script we actually want to
2142
 
        # install
2143
 
        stripped_ext=""
2144
 
        case $file in
2145
 
          *.exe)
2146
 
            if test ! -f "$file"; then
2147
 
              func_stripname '' '.exe' "$file"
2148
 
              file=$func_stripname_result
2149
 
              stripped_ext=".exe"
2150
 
            fi
2151
 
            ;;
2152
 
        esac
2153
 
 
2154
 
        # Do a test to see if this is really a libtool program.
2155
 
        case $host in
2156
 
        *cygwin* | *mingw*)
2157
 
            if func_ltwrapper_executable_p "$file"; then
2158
 
              func_ltwrapper_scriptname "$file"
2159
 
              wrapper=$func_ltwrapper_scriptname_result
2160
 
            else
2161
 
              func_stripname '' '.exe' "$file"
2162
 
              wrapper=$func_stripname_result
2163
 
            fi
2164
 
            ;;
2165
 
        *)
2166
 
            wrapper=$file
2167
 
            ;;
2168
 
        esac
2169
 
        if func_ltwrapper_script_p "$wrapper"; then
2170
 
          notinst_deplibs=
2171
 
          relink_command=
2172
 
 
2173
 
          func_source "$wrapper"
2174
 
 
2175
 
          # Check the variables that should have been set.
2176
 
          test -z "$generated_by_libtool_version" && \
2177
 
            func_fatal_error "invalid libtool wrapper script \`$wrapper'"
2178
 
 
2179
 
          finalize=yes
2180
 
          for lib in $notinst_deplibs; do
2181
 
            # Check to see that each library is installed.
2182
 
            libdir=
2183
 
            if test -f "$lib"; then
2184
 
              func_source "$lib"
2185
 
            fi
2186
 
            libfile="$libdir/"`$ECHO "X$lib" | $Xsed -e 's%^.*/%%g'` ### testsuite: skip nested quoting test
2187
 
            if test -n "$libdir" && test ! -f "$libfile"; then
2188
 
              func_warning "\`$lib' has not been installed in \`$libdir'"
2189
 
              finalize=no
2190
 
            fi
2191
 
          done
2192
 
 
2193
 
          relink_command=
2194
 
          func_source "$wrapper"
2195
 
 
2196
 
          outputname=
2197
 
          if test "$fast_install" = no && test -n "$relink_command"; then
2198
 
            $opt_dry_run || {
2199
 
              if test "$finalize" = yes; then
2200
 
                tmpdir=`func_mktempdir`
2201
 
                func_basename "$file$stripped_ext"
2202
 
                file="$func_basename_result"
2203
 
                outputname="$tmpdir/$file"
2204
 
                # Replace the output file specification.
2205
 
                relink_command=`$ECHO "X$relink_command" | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g'`
2206
 
 
2207
 
                $opt_silent || {
2208
 
                  func_quote_for_expand "$relink_command"
2209
 
                  eval "func_echo $func_quote_for_expand_result"
2210
 
                }
2211
 
                if eval "$relink_command"; then :
2212
 
                  else
2213
 
                  func_error "error: relink \`$file' with the above command before installing it"
2214
 
                  $opt_dry_run || ${RM}r "$tmpdir"
2215
 
                  continue
2216
 
                fi
2217
 
                file="$outputname"
2218
 
              else
2219
 
                func_warning "cannot relink \`$file'"
2220
 
              fi
2221
 
            }
2222
 
          else
2223
 
            # Install the binary that we compiled earlier.
2224
 
            file=`$ECHO "X$file$stripped_ext" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"`
2225
 
          fi
2226
 
        fi
2227
 
 
2228
 
        # remove .exe since cygwin /usr/bin/install will append another
2229
 
        # one anyway
2230
 
        case $install_prog,$host in
2231
 
        */usr/bin/install*,*cygwin*)
2232
 
          case $file:$destfile in
2233
 
          *.exe:*.exe)
2234
 
            # this is ok
2235
 
            ;;
2236
 
          *.exe:*)
2237
 
            destfile=$destfile.exe
2238
 
            ;;
2239
 
          *:*.exe)
2240
 
            func_stripname '' '.exe' "$destfile"
2241
 
            destfile=$func_stripname_result
2242
 
            ;;
2243
 
          esac
2244
 
          ;;
2245
 
        esac
2246
 
        func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?'
2247
 
        $opt_dry_run || if test -n "$outputname"; then
2248
 
          ${RM}r "$tmpdir"
2249
 
        fi
2250
 
        ;;
2251
 
      esac
2252
 
    done
2253
 
 
2254
 
    for file in $staticlibs; do
2255
 
      func_basename "$file"
2256
 
      name="$func_basename_result"
2257
 
 
2258
 
      # Set up the ranlib parameters.
2259
 
      oldlib="$destdir/$name"
2260
 
 
2261
 
      func_show_eval "$install_prog \$file \$oldlib" 'exit $?'
2262
 
 
2263
 
      if test -n "$stripme" && test -n "$old_striplib"; then
2264
 
        func_show_eval "$old_striplib $oldlib" 'exit $?'
2265
 
      fi
2266
 
 
2267
 
      # Do each command in the postinstall commands.
2268
 
      func_execute_cmds "$old_postinstall_cmds" 'exit $?'
2269
 
    done
2270
 
 
2271
 
    test -n "$future_libdirs" && \
2272
 
      func_warning "remember to run \`$progname --finish$future_libdirs'"
2273
 
 
2274
 
    if test -n "$current_libdirs"; then
2275
 
      # Maybe just do a dry run.
2276
 
      $opt_dry_run && current_libdirs=" -n$current_libdirs"
2277
 
      exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs'
2278
 
    else
2279
 
      exit $EXIT_SUCCESS
2280
 
    fi
2281
 
}
2282
 
 
2283
 
test "$mode" = install && func_mode_install ${1+"$@"}
2284
 
 
2285
 
 
2286
 
# func_generate_dlsyms outputname originator pic_p
2287
 
# Extract symbols from dlprefiles and create ${outputname}S.o with
2288
 
# a dlpreopen symbol table.
2289
 
func_generate_dlsyms ()
2290
 
{
2291
 
    $opt_debug
2292
 
    my_outputname="$1"
2293
 
    my_originator="$2"
2294
 
    my_pic_p="${3-no}"
2295
 
    my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'`
2296
 
    my_dlsyms=
2297
 
 
2298
 
    if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
2299
 
      if test -n "$NM" && test -n "$global_symbol_pipe"; then
2300
 
        my_dlsyms="${my_outputname}S.c"
2301
 
      else
2302
 
        func_error "not configured to extract global symbols from dlpreopened files"
2303
 
      fi
2304
 
    fi
2305
 
 
2306
 
    if test -n "$my_dlsyms"; then
2307
 
      case $my_dlsyms in
2308
 
      "") ;;
2309
 
      *.c)
2310
 
        # Discover the nlist of each of the dlfiles.
2311
 
        nlist="$output_objdir/${my_outputname}.nm"
2312
 
 
2313
 
        func_show_eval "$RM $nlist ${nlist}S ${nlist}T"
2314
 
 
2315
 
        # Parse the name list into a source file.
2316
 
        func_verbose "creating $output_objdir/$my_dlsyms"
2317
 
 
2318
 
        $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\
2319
 
/* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */
2320
 
/* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */
2321
 
 
2322
 
#ifdef __cplusplus
2323
 
extern \"C\" {
2324
 
#endif
2325
 
 
2326
 
/* External symbol declarations for the compiler. */\
2327
 
"
2328
 
 
2329
 
        if test "$dlself" = yes; then
2330
 
          func_verbose "generating symbol list for \`$output'"
2331
 
 
2332
 
          $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist"
2333
 
 
2334
 
          # Add our own program objects to the symbol list.
2335
 
          progfiles=`$ECHO "X$objs$old_deplibs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
2336
 
          for progfile in $progfiles; do
2337
 
            func_verbose "extracting global C symbols from \`$progfile'"
2338
 
            $opt_dry_run || eval "$NM $progfile | $global_symbol_pipe >> '$nlist'"
2339
 
          done
2340
 
 
2341
 
          if test -n "$exclude_expsyms"; then
2342
 
            $opt_dry_run || {
2343
 
              eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T'
2344
 
              eval '$MV "$nlist"T "$nlist"'
2345
 
            }
2346
 
          fi
2347
 
 
2348
 
          if test -n "$export_symbols_regex"; then
2349
 
            $opt_dry_run || {
2350
 
              eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T'
2351
 
              eval '$MV "$nlist"T "$nlist"'
2352
 
            }
2353
 
          fi
2354
 
 
2355
 
          # Prepare the list of exported symbols
2356
 
          if test -z "$export_symbols"; then
2357
 
            export_symbols="$output_objdir/$outputname.exp"
2358
 
            $opt_dry_run || {
2359
 
              $RM $export_symbols
2360
 
              eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"'
2361
 
              case $host in
2362
 
              *cygwin* | *mingw* | *cegcc* )
2363
 
                eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
2364
 
                eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"'
2365
 
                ;;
2366
 
              esac
2367
 
            }
2368
 
          else
2369
 
            $opt_dry_run || {
2370
 
              eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"'
2371
 
              eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T'
2372
 
              eval '$MV "$nlist"T "$nlist"'
2373
 
              case $host in
2374
 
                *cygwin | *mingw* | *cegcc* )
2375
 
                  eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
2376
 
                  eval 'cat "$nlist" >> "$output_objdir/$outputname.def"'
2377
 
                  ;;
2378
 
              esac
2379
 
            }
2380
 
          fi
2381
 
        fi
2382
 
 
2383
 
        for dlprefile in $dlprefiles; do
2384
 
          func_verbose "extracting global C symbols from \`$dlprefile'"
2385
 
          func_basename "$dlprefile"
2386
 
          name="$func_basename_result"
2387
 
          $opt_dry_run || {
2388
 
            eval '$ECHO ": $name " >> "$nlist"'
2389
 
            eval "$NM $dlprefile 2>/dev/null | $global_symbol_pipe >> '$nlist'"
2390
 
          }
2391
 
        done
2392
 
 
2393
 
        $opt_dry_run || {
2394
 
          # Make sure we have at least an empty file.
2395
 
          test -f "$nlist" || : > "$nlist"
2396
 
 
2397
 
          if test -n "$exclude_expsyms"; then
2398
 
            $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T
2399
 
            $MV "$nlist"T "$nlist"
2400
 
          fi
2401
 
 
2402
 
          # Try sorting and uniquifying the output.
2403
 
          if $GREP -v "^: " < "$nlist" |
2404
 
              if sort -k 3 </dev/null >/dev/null 2>&1; then
2405
 
                sort -k 3
2406
 
              else
2407
 
                sort +2
2408
 
              fi |
2409
 
              uniq > "$nlist"S; then
2410
 
            :
2411
 
          else
2412
 
            $GREP -v "^: " < "$nlist" > "$nlist"S
2413
 
          fi
2414
 
 
2415
 
          if test -f "$nlist"S; then
2416
 
            eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"'
2417
 
          else
2418
 
            $ECHO '/* NONE */' >> "$output_objdir/$my_dlsyms"
2419
 
          fi
2420
 
 
2421
 
          $ECHO >> "$output_objdir/$my_dlsyms" "\
2422
 
 
2423
 
/* The mapping between symbol names and symbols.  */
2424
 
typedef struct {
2425
 
  const char *name;
2426
 
  void *address;
2427
 
} lt_dlsymlist;
2428
 
"
2429
 
          case $host in
2430
 
          *cygwin* | *mingw* | *cegcc* )
2431
 
            $ECHO >> "$output_objdir/$my_dlsyms" "\
2432
 
/* DATA imports from DLLs on WIN32 con't be const, because
2433
 
   runtime relocations are performed -- see ld's documentation
2434
 
   on pseudo-relocs.  */"
2435
 
            lt_dlsym_const= ;;
2436
 
          *osf5*)
2437
 
            echo >> "$output_objdir/$my_dlsyms" "\
2438
 
/* This system does not cope well with relocations in const data */"
2439
 
            lt_dlsym_const= ;;
2440
 
          *)
2441
 
            lt_dlsym_const=const ;;
2442
 
          esac
2443
 
 
2444
 
          $ECHO >> "$output_objdir/$my_dlsyms" "\
2445
 
extern $lt_dlsym_const lt_dlsymlist
2446
 
lt_${my_prefix}_LTX_preloaded_symbols[];
2447
 
$lt_dlsym_const lt_dlsymlist
2448
 
lt_${my_prefix}_LTX_preloaded_symbols[] =
2449
 
{\
2450
 
  { \"$my_originator\", (void *) 0 },"
2451
 
 
2452
 
          case $need_lib_prefix in
2453
 
          no)
2454
 
            eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms"
2455
 
            ;;
2456
 
          *)
2457
 
            eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms"
2458
 
            ;;
2459
 
          esac
2460
 
          $ECHO >> "$output_objdir/$my_dlsyms" "\
2461
 
  {0, (void *) 0}
2462
 
};
2463
 
 
2464
 
/* This works around a problem in FreeBSD linker */
2465
 
#ifdef FREEBSD_WORKAROUND
2466
 
static const void *lt_preloaded_setup() {
2467
 
  return lt_${my_prefix}_LTX_preloaded_symbols;
2468
 
}
2469
 
#endif
2470
 
 
2471
 
#ifdef __cplusplus
2472
 
}
2473
 
#endif\
2474
 
"
2475
 
        } # !$opt_dry_run
2476
 
 
2477
 
        pic_flag_for_symtable=
2478
 
        case "$compile_command " in
2479
 
        *" -static "*) ;;
2480
 
        *)
2481
 
          case $host in
2482
 
          # compiling the symbol table file with pic_flag works around
2483
 
          # a FreeBSD bug that causes programs to crash when -lm is
2484
 
          # linked before any other PIC object.  But we must not use
2485
 
          # pic_flag when linking with -static.  The problem exists in
2486
 
          # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1.
2487
 
          *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)
2488
 
            pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;;
2489
 
          *-*-hpux*)
2490
 
            pic_flag_for_symtable=" $pic_flag"  ;;
2491
 
          *)
2492
 
            if test "X$my_pic_p" != Xno; then
2493
 
              pic_flag_for_symtable=" $pic_flag"
2494
 
            fi
2495
 
            ;;
2496
 
          esac
2497
 
          ;;
2498
 
        esac
2499
 
        symtab_cflags=
2500
 
        for arg in $LTCFLAGS; do
2501
 
          case $arg in
2502
 
          -pie | -fpie | -fPIE) ;;
2503
 
          *) symtab_cflags="$symtab_cflags $arg" ;;
2504
 
          esac
2505
 
        done
2506
 
 
2507
 
        # Now compile the dynamic symbol file.
2508
 
        func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?'
2509
 
 
2510
 
        # Clean up the generated files.
2511
 
        func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"'
2512
 
 
2513
 
        # Transform the symbol file into the correct name.
2514
 
        symfileobj="$output_objdir/${my_outputname}S.$objext"
2515
 
        case $host in
2516
 
        *cygwin* | *mingw* | *cegcc* )
2517
 
          if test -f "$output_objdir/$my_outputname.def"; then
2518
 
            compile_command=`$ECHO "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"`
2519
 
            finalize_command=`$ECHO "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"`
2520
 
          else
2521
 
            compile_command=`$ECHO "X$compile_command" | $Xsed -e "s%@SYMFILE@%$symfileobj%"`
2522
 
            finalize_command=`$ECHO "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$symfileobj%"`
2523
 
          fi
2524
 
          ;;
2525
 
        *)
2526
 
          compile_command=`$ECHO "X$compile_command" | $Xsed -e "s%@SYMFILE@%$symfileobj%"`
2527
 
          finalize_command=`$ECHO "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$symfileobj%"`
2528
 
          ;;
2529
 
        esac
2530
 
        ;;
2531
 
      *)
2532
 
        func_fatal_error "unknown suffix for \`$my_dlsyms'"
2533
 
        ;;
2534
 
      esac
2535
 
    else
2536
 
      # We keep going just in case the user didn't refer to
2537
 
      # lt_preloaded_symbols.  The linker will fail if global_symbol_pipe
2538
 
      # really was required.
2539
 
 
2540
 
      # Nullify the symbol file.
2541
 
      compile_command=`$ECHO "X$compile_command" | $Xsed -e "s% @SYMFILE@%%"`
2542
 
      finalize_command=`$ECHO "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"`
2543
 
    fi
2544
 
}
2545
 
 
2546
 
# func_win32_libid arg
2547
 
# return the library type of file 'arg'
2548
 
#
2549
 
# Need a lot of goo to handle *both* DLLs and import libs
2550
 
# Has to be a shell function in order to 'eat' the argument
2551
 
# that is supplied when $file_magic_command is called.
2552
 
func_win32_libid ()
2553
 
{
2554
 
  $opt_debug
2555
 
  win32_libid_type="unknown"
2556
 
  win32_fileres=`file -L $1 2>/dev/null`
2557
 
  case $win32_fileres in
2558
 
  *ar\ archive\ import\ library*) # definitely import
2559
 
    win32_libid_type="x86 archive import"
2560
 
    ;;
2561
 
  *ar\ archive*) # could be an import, or static
2562
 
    if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null |
2563
 
       $EGREP 'file format pe-i386(.*architecture: i386)?' >/dev/null ; then
2564
 
      win32_nmres=`eval $NM -f posix -A $1 |
2565
 
        $SED -n -e '
2566
 
            1,100{
2567
 
                / I /{
2568
 
                    s,.*,import,
2569
 
                    p
2570
 
                    q
2571
 
                }
2572
 
            }'`
2573
 
      case $win32_nmres in
2574
 
      import*)  win32_libid_type="x86 archive import";;
2575
 
      *)        win32_libid_type="x86 archive static";;
2576
 
      esac
2577
 
    fi
2578
 
    ;;
2579
 
  *DLL*)
2580
 
    win32_libid_type="x86 DLL"
2581
 
    ;;
2582
 
  *executable*) # but shell scripts are "executable" too...
2583
 
    case $win32_fileres in
2584
 
    *MS\ Windows\ PE\ Intel*)
2585
 
      win32_libid_type="x86 DLL"
2586
 
      ;;
2587
 
    esac
2588
 
    ;;
2589
 
  esac
2590
 
  $ECHO "$win32_libid_type"
2591
 
}
2592
 
 
2593
 
 
2594
 
 
2595
 
# func_extract_an_archive dir oldlib
2596
 
func_extract_an_archive ()
2597
 
{
2598
 
    $opt_debug
2599
 
    f_ex_an_ar_dir="$1"; shift
2600
 
    f_ex_an_ar_oldlib="$1"
2601
 
    func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" 'exit $?'
2602
 
    if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then
2603
 
     :
2604
 
    else
2605
 
      func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib"
2606
 
    fi
2607
 
}
2608
 
 
2609
 
 
2610
 
# func_extract_archives gentop oldlib ...
2611
 
func_extract_archives ()
2612
 
{
2613
 
    $opt_debug
2614
 
    my_gentop="$1"; shift
2615
 
    my_oldlibs=${1+"$@"}
2616
 
    my_oldobjs=""
2617
 
    my_xlib=""
2618
 
    my_xabs=""
2619
 
    my_xdir=""
2620
 
 
2621
 
    for my_xlib in $my_oldlibs; do
2622
 
      # Extract the objects.
2623
 
      case $my_xlib in
2624
 
        [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;;
2625
 
        *) my_xabs=`pwd`"/$my_xlib" ;;
2626
 
      esac
2627
 
      func_basename "$my_xlib"
2628
 
      my_xlib="$func_basename_result"
2629
 
      my_xlib_u=$my_xlib
2630
 
      while :; do
2631
 
        case " $extracted_archives " in
2632
 
        *" $my_xlib_u "*)
2633
 
          func_arith $extracted_serial + 1
2634
 
          extracted_serial=$func_arith_result
2635
 
          my_xlib_u=lt$extracted_serial-$my_xlib ;;
2636
 
        *) break ;;
2637
 
        esac
2638
 
      done
2639
 
      extracted_archives="$extracted_archives $my_xlib_u"
2640
 
      my_xdir="$my_gentop/$my_xlib_u"
2641
 
 
2642
 
      func_mkdir_p "$my_xdir"
2643
 
 
2644
 
      case $host in
2645
 
      *-darwin*)
2646
 
        func_verbose "Extracting $my_xabs"
2647
 
        # Do not bother doing anything if just a dry run
2648
 
        $opt_dry_run || {
2649
 
          darwin_orig_dir=`pwd`
2650
 
          cd $my_xdir || exit $?
2651
 
          darwin_archive=$my_xabs
2652
 
          darwin_curdir=`pwd`
2653
 
          darwin_base_archive=`basename "$darwin_archive"`
2654
 
          darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true`
2655
 
          if test -n "$darwin_arches"; then
2656
 
            darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'`
2657
 
            darwin_arch=
2658
 
            func_verbose "$darwin_base_archive has multiple architectures $darwin_arches"
2659
 
            for darwin_arch in  $darwin_arches ; do
2660
 
              func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}"
2661
 
              $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}"
2662
 
              cd "unfat-$$/${darwin_base_archive}-${darwin_arch}"
2663
 
              func_extract_an_archive "`pwd`" "${darwin_base_archive}"
2664
 
              cd "$darwin_curdir"
2665
 
              $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}"
2666
 
            done # $darwin_arches
2667
 
            ## Okay now we've a bunch of thin objects, gotta fatten them up :)
2668
 
            darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u`
2669
 
            darwin_file=
2670
 
            darwin_files=
2671
 
            for darwin_file in $darwin_filelist; do
2672
 
              darwin_files=`find unfat-$$ -name $darwin_file -print | $NL2SP`
2673
 
              $LIPO -create -output "$darwin_file" $darwin_files
2674
 
            done # $darwin_filelist
2675
 
            $RM -rf unfat-$$
2676
 
            cd "$darwin_orig_dir"
2677
 
          else
2678
 
            cd $darwin_orig_dir
2679
 
            func_extract_an_archive "$my_xdir" "$my_xabs"
2680
 
          fi # $darwin_arches
2681
 
        } # !$opt_dry_run
2682
 
        ;;
2683
 
      *)
2684
 
        func_extract_an_archive "$my_xdir" "$my_xabs"
2685
 
        ;;
2686
 
      esac
2687
 
      my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP`
2688
 
    done
2689
 
 
2690
 
    func_extract_archives_result="$my_oldobjs"
2691
 
}
2692
 
 
2693
 
 
2694
 
 
2695
 
# func_emit_wrapper_part1 [arg=no]
2696
 
#
2697
 
# Emit the first part of a libtool wrapper script on stdout.
2698
 
# For more information, see the description associated with
2699
 
# func_emit_wrapper(), below.
2700
 
func_emit_wrapper_part1 ()
2701
 
{
2702
 
        func_emit_wrapper_part1_arg1=no
2703
 
        if test -n "$1" ; then
2704
 
          func_emit_wrapper_part1_arg1=$1
2705
 
        fi
2706
 
 
2707
 
        $ECHO "\
2708
 
#! $SHELL
2709
 
 
2710
 
# $output - temporary wrapper script for $objdir/$outputname
2711
 
# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
2712
 
#
2713
 
# The $output program cannot be directly executed until all the libtool
2714
 
# libraries that it depends on are installed.
2715
 
#
2716
 
# This wrapper script should never be moved out of the build directory.
2717
 
# If it is, it will not operate correctly.
2718
 
 
2719
 
# Sed substitution that helps us do robust quoting.  It backslashifies
2720
 
# metacharacters that are still active within double-quoted strings.
2721
 
Xsed='${SED} -e 1s/^X//'
2722
 
sed_quote_subst='$sed_quote_subst'
2723
 
 
2724
 
# Be Bourne compatible
2725
 
if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then
2726
 
  emulate sh
2727
 
  NULLCMD=:
2728
 
  # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which
2729
 
  # is contrary to our usage.  Disable this feature.
2730
 
  alias -g '\${1+\"\$@\"}'='\"\$@\"'
2731
 
  setopt NO_GLOB_SUBST
2732
 
else
2733
 
  case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac
2734
 
fi
2735
 
BIN_SH=xpg4; export BIN_SH # for Tru64
2736
 
DUALCASE=1; export DUALCASE # for MKS sh
2737
 
 
2738
 
# The HP-UX ksh and POSIX shell print the target directory to stdout
2739
 
# if CDPATH is set.
2740
 
(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
2741
 
 
2742
 
relink_command=\"$relink_command\"
2743
 
 
2744
 
# This environment variable determines our operation mode.
2745
 
if test \"\$libtool_install_magic\" = \"$magic\"; then
2746
 
  # install mode needs the following variables:
2747
 
  generated_by_libtool_version='$macro_version'
2748
 
  notinst_deplibs='$notinst_deplibs'
2749
 
else
2750
 
  # When we are sourced in execute mode, \$file and \$ECHO are already set.
2751
 
  if test \"\$libtool_execute_magic\" != \"$magic\"; then
2752
 
    ECHO=\"$qecho\"
2753
 
    file=\"\$0\"
2754
 
    # Make sure echo works.
2755
 
    if test \"X\$1\" = X--no-reexec; then
2756
 
      # Discard the --no-reexec flag, and continue.
2757
 
      shift
2758
 
    elif test \"X\`{ \$ECHO '\t'; } 2>/dev/null\`\" = 'X\t'; then
2759
 
      # Yippee, \$ECHO works!
2760
 
      :
2761
 
    else
2762
 
      # Restart under the correct shell, and then maybe \$ECHO will work.
2763
 
      exec $SHELL \"\$0\" --no-reexec \${1+\"\$@\"}
2764
 
    fi
2765
 
  fi\
2766
 
"
2767
 
        $ECHO "\
2768
 
 
2769
 
  # Find the directory that this script lives in.
2770
 
  thisdir=\`\$ECHO \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\`
2771
 
  test \"x\$thisdir\" = \"x\$file\" && thisdir=.
2772
 
 
2773
 
  # Follow symbolic links until we get to the real thisdir.
2774
 
  file=\`ls -ld \"\$file\" | ${SED} -n 's/.*-> //p'\`
2775
 
  while test -n \"\$file\"; do
2776
 
    destdir=\`\$ECHO \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\`
2777
 
 
2778
 
    # If there was a directory component, then change thisdir.
2779
 
    if test \"x\$destdir\" != \"x\$file\"; then
2780
 
      case \"\$destdir\" in
2781
 
      [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;;
2782
 
      *) thisdir=\"\$thisdir/\$destdir\" ;;
2783
 
      esac
2784
 
    fi
2785
 
 
2786
 
    file=\`\$ECHO \"X\$file\" | \$Xsed -e 's%^.*/%%'\`
2787
 
    file=\`ls -ld \"\$thisdir/\$file\" | ${SED} -n 's/.*-> //p'\`
2788
 
  done
2789
 
"
2790
 
}
2791
 
# end: func_emit_wrapper_part1
2792
 
 
2793
 
# func_emit_wrapper_part2 [arg=no]
2794
 
#
2795
 
# Emit the second part of a libtool wrapper script on stdout.
2796
 
# For more information, see the description associated with
2797
 
# func_emit_wrapper(), below.
2798
 
func_emit_wrapper_part2 ()
2799
 
{
2800
 
        func_emit_wrapper_part2_arg1=no
2801
 
        if test -n "$1" ; then
2802
 
          func_emit_wrapper_part2_arg1=$1
2803
 
        fi
2804
 
 
2805
 
        $ECHO "\
2806
 
 
2807
 
  # Usually 'no', except on cygwin/mingw when embedded into
2808
 
  # the cwrapper.
2809
 
  WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_part2_arg1
2810
 
  if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then
2811
 
    # special case for '.'
2812
 
    if test \"\$thisdir\" = \".\"; then
2813
 
      thisdir=\`pwd\`
2814
 
    fi
2815
 
    # remove .libs from thisdir
2816
 
    case \"\$thisdir\" in
2817
 
    *[\\\\/]$objdir ) thisdir=\`\$ECHO \"X\$thisdir\" | \$Xsed -e 's%[\\\\/][^\\\\/]*$%%'\` ;;
2818
 
    $objdir )   thisdir=. ;;
2819
 
    esac
2820
 
  fi
2821
 
 
2822
 
  # Try to get the absolute directory name.
2823
 
  absdir=\`cd \"\$thisdir\" && pwd\`
2824
 
  test -n \"\$absdir\" && thisdir=\"\$absdir\"
2825
 
"
2826
 
 
2827
 
        if test "$fast_install" = yes; then
2828
 
          $ECHO "\
2829
 
  program=lt-'$outputname'$exeext
2830
 
  progdir=\"\$thisdir/$objdir\"
2831
 
 
2832
 
  if test ! -f \"\$progdir/\$program\" ||
2833
 
     { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\
2834
 
       test \"X\$file\" != \"X\$progdir/\$program\"; }; then
2835
 
 
2836
 
    file=\"\$\$-\$program\"
2837
 
 
2838
 
    if test ! -d \"\$progdir\"; then
2839
 
      $MKDIR \"\$progdir\"
2840
 
    else
2841
 
      $RM \"\$progdir/\$file\"
2842
 
    fi"
2843
 
 
2844
 
          $ECHO "\
2845
 
 
2846
 
    # relink executable if necessary
2847
 
    if test -n \"\$relink_command\"; then
2848
 
      if relink_command_output=\`eval \$relink_command 2>&1\`; then :
2849
 
      else
2850
 
        $ECHO \"\$relink_command_output\" >&2
2851
 
        $RM \"\$progdir/\$file\"
2852
 
        exit 1
2853
 
      fi
2854
 
    fi
2855
 
 
2856
 
    $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null ||
2857
 
    { $RM \"\$progdir/\$program\";
2858
 
      $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; }
2859
 
    $RM \"\$progdir/\$file\"
2860
 
  fi"
2861
 
        else
2862
 
          $ECHO "\
2863
 
  program='$outputname'
2864
 
  progdir=\"\$thisdir/$objdir\"
2865
 
"
2866
 
        fi
2867
 
 
2868
 
        $ECHO "\
2869
 
 
2870
 
  if test -f \"\$progdir/\$program\"; then"
2871
 
 
2872
 
        # Export our shlibpath_var if we have one.
2873
 
        if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
2874
 
          $ECHO "\
2875
 
    # Add our own library path to $shlibpath_var
2876
 
    $shlibpath_var=\"$temp_rpath\$$shlibpath_var\"
2877
 
 
2878
 
    # Some systems cannot cope with colon-terminated $shlibpath_var
2879
 
    # The second colon is a workaround for a bug in BeOS R4 sed
2880
 
    $shlibpath_var=\`\$ECHO \"X\$$shlibpath_var\" | \$Xsed -e 's/::*\$//'\`
2881
 
 
2882
 
    export $shlibpath_var
2883
 
"
2884
 
        fi
2885
 
 
2886
 
        # fixup the dll searchpath if we need to.
2887
 
        if test -n "$dllsearchpath"; then
2888
 
          $ECHO "\
2889
 
    # Add the dll search path components to the executable PATH
2890
 
    PATH=$dllsearchpath:\$PATH
2891
 
"
2892
 
        fi
2893
 
 
2894
 
        $ECHO "\
2895
 
    if test \"\$libtool_execute_magic\" != \"$magic\"; then
2896
 
      # Run the actual program with our arguments.
2897
 
"
2898
 
        case $host in
2899
 
        # Backslashes separate directories on plain windows
2900
 
        *-*-mingw | *-*-os2* | *-cegcc*)
2901
 
          $ECHO "\
2902
 
      exec \"\$progdir\\\\\$program\" \${1+\"\$@\"}
2903
 
"
2904
 
          ;;
2905
 
 
2906
 
        *)
2907
 
          $ECHO "\
2908
 
      exec \"\$progdir/\$program\" \${1+\"\$@\"}
2909
 
"
2910
 
          ;;
2911
 
        esac
2912
 
        $ECHO "\
2913
 
      \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2
2914
 
      exit 1
2915
 
    fi
2916
 
  else
2917
 
    # The program doesn't exist.
2918
 
    \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2
2919
 
    \$ECHO \"This script is just a wrapper for \$program.\" 1>&2
2920
 
    $ECHO \"See the $PACKAGE documentation for more information.\" 1>&2
2921
 
    exit 1
2922
 
  fi
2923
 
fi\
2924
 
"
2925
 
}
2926
 
# end: func_emit_wrapper_part2
2927
 
 
2928
 
 
2929
 
# func_emit_wrapper [arg=no]
2930
 
#
2931
 
# Emit a libtool wrapper script on stdout.
2932
 
# Don't directly open a file because we may want to
2933
 
# incorporate the script contents within a cygwin/mingw
2934
 
# wrapper executable.  Must ONLY be called from within
2935
 
# func_mode_link because it depends on a number of variables
2936
 
# set therein.
2937
 
#
2938
 
# ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR
2939
 
# variable will take.  If 'yes', then the emitted script
2940
 
# will assume that the directory in which it is stored is
2941
 
# the $objdir directory.  This is a cygwin/mingw-specific
2942
 
# behavior.
2943
 
func_emit_wrapper ()
2944
 
{
2945
 
        func_emit_wrapper_arg1=no
2946
 
        if test -n "$1" ; then
2947
 
          func_emit_wrapper_arg1=$1
2948
 
        fi
2949
 
 
2950
 
        # split this up so that func_emit_cwrapperexe_src
2951
 
        # can call each part independently.
2952
 
        func_emit_wrapper_part1 "${func_emit_wrapper_arg1}"
2953
 
        func_emit_wrapper_part2 "${func_emit_wrapper_arg1}"
2954
 
}
2955
 
 
2956
 
 
2957
 
# func_to_host_path arg
2958
 
#
2959
 
# Convert paths to host format when used with build tools.
2960
 
# Intended for use with "native" mingw (where libtool itself
2961
 
# is running under the msys shell), or in the following cross-
2962
 
# build environments:
2963
 
#    $build          $host
2964
 
#    mingw (msys)    mingw  [e.g. native]
2965
 
#    cygwin          mingw
2966
 
#    *nix + wine     mingw
2967
 
# where wine is equipped with the `winepath' executable.
2968
 
# In the native mingw case, the (msys) shell automatically
2969
 
# converts paths for any non-msys applications it launches,
2970
 
# but that facility isn't available from inside the cwrapper.
2971
 
# Similar accommodations are necessary for $host mingw and
2972
 
# $build cygwin.  Calling this function does no harm for other
2973
 
# $host/$build combinations not listed above.
2974
 
#
2975
 
# ARG is the path (on $build) that should be converted to
2976
 
# the proper representation for $host. The result is stored
2977
 
# in $func_to_host_path_result.
2978
 
func_to_host_path ()
2979
 
{
2980
 
  func_to_host_path_result="$1"
2981
 
  if test -n "$1" ; then
2982
 
    case $host in
2983
 
      *mingw* )
2984
 
        lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g'
2985
 
        case $build in
2986
 
          *mingw* ) # actually, msys
2987
 
            # awkward: cmd appends spaces to result
2988
 
            lt_sed_strip_trailing_spaces="s/[ ]*\$//"
2989
 
            func_to_host_path_tmp1=`( cmd //c echo "$1" |\
2990
 
              $SED -e "$lt_sed_strip_trailing_spaces" ) 2>/dev/null || echo ""`
2991
 
            func_to_host_path_result=`echo "$func_to_host_path_tmp1" |\
2992
 
              $SED -e "$lt_sed_naive_backslashify"`
2993
 
            ;;
2994
 
          *cygwin* )
2995
 
            func_to_host_path_tmp1=`cygpath -w "$1"`
2996
 
            func_to_host_path_result=`echo "$func_to_host_path_tmp1" |\
2997
 
              $SED -e "$lt_sed_naive_backslashify"`
2998
 
            ;;
2999
 
          * )
3000
 
            # Unfortunately, winepath does not exit with a non-zero
3001
 
            # error code, so we are forced to check the contents of
3002
 
            # stdout. On the other hand, if the command is not
3003
 
            # found, the shell will set an exit code of 127 and print
3004
 
            # *an error message* to stdout. So we must check for both
3005
 
            # error code of zero AND non-empty stdout, which explains
3006
 
            # the odd construction:
3007
 
            func_to_host_path_tmp1=`winepath -w "$1" 2>/dev/null`
3008
 
            if test "$?" -eq 0 && test -n "${func_to_host_path_tmp1}"; then
3009
 
              func_to_host_path_result=`echo "$func_to_host_path_tmp1" |\
3010
 
                $SED -e "$lt_sed_naive_backslashify"`
3011
 
            else
3012
 
              # Allow warning below.
3013
 
              func_to_host_path_result=""
3014
 
            fi
3015
 
            ;;
3016
 
        esac
3017
 
        if test -z "$func_to_host_path_result" ; then
3018
 
          func_error "Could not determine host path corresponding to"
3019
 
          func_error "  '$1'"
3020
 
          func_error "Continuing, but uninstalled executables may not work."
3021
 
          # Fallback:
3022
 
          func_to_host_path_result="$1"
3023
 
        fi
3024
 
        ;;
3025
 
    esac
3026
 
  fi
3027
 
}
3028
 
# end: func_to_host_path
3029
 
 
3030
 
# func_to_host_pathlist arg
3031
 
#
3032
 
# Convert pathlists to host format when used with build tools.
3033
 
# See func_to_host_path(), above. This function supports the
3034
 
# following $build/$host combinations (but does no harm for
3035
 
# combinations not listed here):
3036
 
#    $build          $host
3037
 
#    mingw (msys)    mingw  [e.g. native]
3038
 
#    cygwin          mingw
3039
 
#    *nix + wine     mingw
3040
 
#
3041
 
# Path separators are also converted from $build format to
3042
 
# $host format. If ARG begins or ends with a path separator
3043
 
# character, it is preserved (but converted to $host format)
3044
 
# on output.
3045
 
#
3046
 
# ARG is a pathlist (on $build) that should be converted to
3047
 
# the proper representation on $host. The result is stored
3048
 
# in $func_to_host_pathlist_result.
3049
 
func_to_host_pathlist ()
3050
 
{
3051
 
  func_to_host_pathlist_result="$1"
3052
 
  if test -n "$1" ; then
3053
 
    case $host in
3054
 
      *mingw* )
3055
 
        lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g'
3056
 
        # Remove leading and trailing path separator characters from
3057
 
        # ARG. msys behavior is inconsistent here, cygpath turns them
3058
 
        # into '.;' and ';.', and winepath ignores them completely.
3059
 
        func_to_host_pathlist_tmp2="$1"
3060
 
        # Once set for this call, this variable should not be
3061
 
        # reassigned. It is used in tha fallback case.
3062
 
        func_to_host_pathlist_tmp1=`echo "$func_to_host_pathlist_tmp2" |\
3063
 
          $SED -e 's|^:*||' -e 's|:*$||'`
3064
 
        case $build in
3065
 
          *mingw* ) # Actually, msys.
3066
 
            # Awkward: cmd appends spaces to result.
3067
 
            lt_sed_strip_trailing_spaces="s/[ ]*\$//"
3068
 
            func_to_host_pathlist_tmp2=`( cmd //c echo "$func_to_host_pathlist_tmp1" |\
3069
 
              $SED -e "$lt_sed_strip_trailing_spaces" ) 2>/dev/null || echo ""`
3070
 
            func_to_host_pathlist_result=`echo "$func_to_host_pathlist_tmp2" |\
3071
 
              $SED -e "$lt_sed_naive_backslashify"`
3072
 
            ;;
3073
 
          *cygwin* )
3074
 
            func_to_host_pathlist_tmp2=`cygpath -w -p "$func_to_host_pathlist_tmp1"`
3075
 
            func_to_host_pathlist_result=`echo "$func_to_host_pathlist_tmp2" |\
3076
 
              $SED -e "$lt_sed_naive_backslashify"`
3077
 
            ;;
3078
 
          * )
3079
 
            # unfortunately, winepath doesn't convert pathlists
3080
 
            func_to_host_pathlist_result=""
3081
 
            func_to_host_pathlist_oldIFS=$IFS
3082
 
            IFS=:
3083
 
            for func_to_host_pathlist_f in $func_to_host_pathlist_tmp1 ; do
3084
 
              IFS=$func_to_host_pathlist_oldIFS
3085
 
              if test -n "$func_to_host_pathlist_f" ; then
3086
 
                func_to_host_path "$func_to_host_pathlist_f"
3087
 
                if test -n "$func_to_host_path_result" ; then
3088
 
                  if test -z "$func_to_host_pathlist_result" ; then
3089
 
                    func_to_host_pathlist_result="$func_to_host_path_result"
3090
 
                  else
3091
 
                    func_to_host_pathlist_result="$func_to_host_pathlist_result;$func_to_host_path_result"
3092
 
                  fi
3093
 
                fi
3094
 
              fi
3095
 
              IFS=:
3096
 
            done
3097
 
            IFS=$func_to_host_pathlist_oldIFS
3098
 
            ;;
3099
 
        esac
3100
 
        if test -z "$func_to_host_pathlist_result" ; then
3101
 
          func_error "Could not determine the host path(s) corresponding to"
3102
 
          func_error "  '$1'"
3103
 
          func_error "Continuing, but uninstalled executables may not work."
3104
 
          # Fallback. This may break if $1 contains DOS-style drive
3105
 
          # specifications. The fix is not to complicate the expression
3106
 
          # below, but for the user to provide a working wine installation
3107
 
          # with winepath so that path translation in the cross-to-mingw
3108
 
          # case works properly.
3109
 
          lt_replace_pathsep_nix_to_dos="s|:|;|g"
3110
 
          func_to_host_pathlist_result=`echo "$func_to_host_pathlist_tmp1" |\
3111
 
            $SED -e "$lt_replace_pathsep_nix_to_dos"`
3112
 
        fi
3113
 
        # Now, add the leading and trailing path separators back
3114
 
        case "$1" in
3115
 
          :* ) func_to_host_pathlist_result=";$func_to_host_pathlist_result"
3116
 
            ;;
3117
 
        esac
3118
 
        case "$1" in
3119
 
          *: ) func_to_host_pathlist_result="$func_to_host_pathlist_result;"
3120
 
            ;;
3121
 
        esac
3122
 
        ;;
3123
 
    esac
3124
 
  fi
3125
 
}
3126
 
# end: func_to_host_pathlist
3127
 
 
3128
 
# func_emit_cwrapperexe_src
3129
 
# emit the source code for a wrapper executable on stdout
3130
 
# Must ONLY be called from within func_mode_link because
3131
 
# it depends on a number of variable set therein.
3132
 
func_emit_cwrapperexe_src ()
3133
 
{
3134
 
        cat <<EOF
3135
 
 
3136
 
/* $cwrappersource - temporary wrapper executable for $objdir/$outputname
3137
 
   Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
3138
 
 
3139
 
   The $output program cannot be directly executed until all the libtool
3140
 
   libraries that it depends on are installed.
3141
 
 
3142
 
   This wrapper executable should never be moved out of the build directory.
3143
 
   If it is, it will not operate correctly.
3144
 
 
3145
 
   Currently, it simply execs the wrapper *script* "$SHELL $output",
3146
 
   but could eventually absorb all of the scripts functionality and
3147
 
   exec $objdir/$outputname directly.
3148
 
*/
3149
 
EOF
3150
 
            cat <<"EOF"
3151
 
#include <stdio.h>
3152
 
#include <stdlib.h>
3153
 
#ifdef _MSC_VER
3154
 
# include <direct.h>
3155
 
# include <process.h>
3156
 
# include <io.h>
3157
 
# define setmode _setmode
3158
 
#else
3159
 
# include <unistd.h>
3160
 
# include <stdint.h>
3161
 
# ifdef __CYGWIN__
3162
 
#  include <io.h>
3163
 
#  define HAVE_SETENV
3164
 
#  ifdef __STRICT_ANSI__
3165
 
char *realpath (const char *, char *);
3166
 
int putenv (char *);
3167
 
int setenv (const char *, const char *, int);
3168
 
#  endif
3169
 
# endif
3170
 
#endif
3171
 
#include <malloc.h>
3172
 
#include <stdarg.h>
3173
 
#include <assert.h>
3174
 
#include <string.h>
3175
 
#include <ctype.h>
3176
 
#include <errno.h>
3177
 
#include <fcntl.h>
3178
 
#include <sys/stat.h>
3179
 
 
3180
 
#if defined(PATH_MAX)
3181
 
# define LT_PATHMAX PATH_MAX
3182
 
#elif defined(MAXPATHLEN)
3183
 
# define LT_PATHMAX MAXPATHLEN
3184
 
#else
3185
 
# define LT_PATHMAX 1024
3186
 
#endif
3187
 
 
3188
 
#ifndef S_IXOTH
3189
 
# define S_IXOTH 0
3190
 
#endif
3191
 
#ifndef S_IXGRP
3192
 
# define S_IXGRP 0
3193
 
#endif
3194
 
 
3195
 
#ifdef _MSC_VER
3196
 
# define S_IXUSR _S_IEXEC
3197
 
# define stat _stat
3198
 
# ifndef _INTPTR_T_DEFINED
3199
 
#  define intptr_t int
3200
 
# endif
3201
 
#endif
3202
 
 
3203
 
#ifndef DIR_SEPARATOR
3204
 
# define DIR_SEPARATOR '/'
3205
 
# define PATH_SEPARATOR ':'
3206
 
#endif
3207
 
 
3208
 
#if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \
3209
 
  defined (__OS2__)
3210
 
# define HAVE_DOS_BASED_FILE_SYSTEM
3211
 
# define FOPEN_WB "wb"
3212
 
# ifndef DIR_SEPARATOR_2
3213
 
#  define DIR_SEPARATOR_2 '\\'
3214
 
# endif
3215
 
# ifndef PATH_SEPARATOR_2
3216
 
#  define PATH_SEPARATOR_2 ';'
3217
 
# endif
3218
 
#endif
3219
 
 
3220
 
#ifndef DIR_SEPARATOR_2
3221
 
# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)
3222
 
#else /* DIR_SEPARATOR_2 */
3223
 
# define IS_DIR_SEPARATOR(ch) \
3224
 
        (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))
3225
 
#endif /* DIR_SEPARATOR_2 */
3226
 
 
3227
 
#ifndef PATH_SEPARATOR_2
3228
 
# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR)
3229
 
#else /* PATH_SEPARATOR_2 */
3230
 
# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2)
3231
 
#endif /* PATH_SEPARATOR_2 */
3232
 
 
3233
 
#ifdef __CYGWIN__
3234
 
# define FOPEN_WB "wb"
3235
 
#endif
3236
 
 
3237
 
#ifndef FOPEN_WB
3238
 
# define FOPEN_WB "w"
3239
 
#endif
3240
 
#ifndef _O_BINARY
3241
 
# define _O_BINARY 0
3242
 
#endif
3243
 
 
3244
 
#define XMALLOC(type, num)      ((type *) xmalloc ((num) * sizeof(type)))
3245
 
#define XFREE(stale) do { \
3246
 
  if (stale) { free ((void *) stale); stale = 0; } \
3247
 
} while (0)
3248
 
 
3249
 
#undef LTWRAPPER_DEBUGPRINTF
3250
 
#if defined DEBUGWRAPPER
3251
 
# define LTWRAPPER_DEBUGPRINTF(args) ltwrapper_debugprintf args
3252
 
static void
3253
 
ltwrapper_debugprintf (const char *fmt, ...)
3254
 
{
3255
 
    va_list args;
3256
 
    va_start (args, fmt);
3257
 
    (void) vfprintf (stderr, fmt, args);
3258
 
    va_end (args);
3259
 
}
3260
 
#else
3261
 
# define LTWRAPPER_DEBUGPRINTF(args)
3262
 
#endif
3263
 
 
3264
 
const char *program_name = NULL;
3265
 
 
3266
 
void *xmalloc (size_t num);
3267
 
char *xstrdup (const char *string);
3268
 
const char *base_name (const char *name);
3269
 
char *find_executable (const char *wrapper);
3270
 
char *chase_symlinks (const char *pathspec);
3271
 
int make_executable (const char *path);
3272
 
int check_executable (const char *path);
3273
 
char *strendzap (char *str, const char *pat);
3274
 
void lt_fatal (const char *message, ...);
3275
 
void lt_setenv (const char *name, const char *value);
3276
 
char *lt_extend_str (const char *orig_value, const char *add, int to_end);
3277
 
void lt_opt_process_env_set (const char *arg);
3278
 
void lt_opt_process_env_prepend (const char *arg);
3279
 
void lt_opt_process_env_append (const char *arg);
3280
 
int lt_split_name_value (const char *arg, char** name, char** value);
3281
 
void lt_update_exe_path (const char *name, const char *value);
3282
 
void lt_update_lib_path (const char *name, const char *value);
3283
 
 
3284
 
static const char *script_text_part1 =
3285
 
EOF
3286
 
 
3287
 
            func_emit_wrapper_part1 yes |
3288
 
                $SED -e 's/\([\\"]\)/\\\1/g' \
3289
 
                     -e 's/^/  "/' -e 's/$/\\n"/'
3290
 
            echo ";"
3291
 
            cat <<EOF
3292
 
 
3293
 
static const char *script_text_part2 =
3294
 
EOF
3295
 
            func_emit_wrapper_part2 yes |
3296
 
                $SED -e 's/\([\\"]\)/\\\1/g' \
3297
 
                     -e 's/^/  "/' -e 's/$/\\n"/'
3298
 
            echo ";"
3299
 
 
3300
 
            cat <<EOF
3301
 
const char * MAGIC_EXE = "$magic_exe";
3302
 
const char * LIB_PATH_VARNAME = "$shlibpath_var";
3303
 
EOF
3304
 
 
3305
 
            if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
3306
 
              func_to_host_pathlist "$temp_rpath"
3307
 
              cat <<EOF
3308
 
const char * LIB_PATH_VALUE   = "$func_to_host_pathlist_result";
3309
 
EOF
3310
 
            else
3311
 
              cat <<"EOF"
3312
 
const char * LIB_PATH_VALUE   = "";
3313
 
EOF
3314
 
            fi
3315
 
 
3316
 
            if test -n "$dllsearchpath"; then
3317
 
              func_to_host_pathlist "$dllsearchpath:"
3318
 
              cat <<EOF
3319
 
const char * EXE_PATH_VARNAME = "PATH";
3320
 
const char * EXE_PATH_VALUE   = "$func_to_host_pathlist_result";
3321
 
EOF
3322
 
            else
3323
 
              cat <<"EOF"
3324
 
const char * EXE_PATH_VARNAME = "";
3325
 
const char * EXE_PATH_VALUE   = "";
3326
 
EOF
3327
 
            fi
3328
 
 
3329
 
            if test "$fast_install" = yes; then
3330
 
              cat <<EOF
3331
 
const char * TARGET_PROGRAM_NAME = "lt-$outputname"; /* hopefully, no .exe */
3332
 
EOF
3333
 
            else
3334
 
              cat <<EOF
3335
 
const char * TARGET_PROGRAM_NAME = "$outputname"; /* hopefully, no .exe */
3336
 
EOF
3337
 
            fi
3338
 
 
3339
 
 
3340
 
            cat <<"EOF"
3341
 
 
3342
 
#define LTWRAPPER_OPTION_PREFIX         "--lt-"
3343
 
#define LTWRAPPER_OPTION_PREFIX_LENGTH  5
3344
 
 
3345
 
static const size_t opt_prefix_len         = LTWRAPPER_OPTION_PREFIX_LENGTH;
3346
 
static const char *ltwrapper_option_prefix = LTWRAPPER_OPTION_PREFIX;
3347
 
 
3348
 
static const char *dumpscript_opt       = LTWRAPPER_OPTION_PREFIX "dump-script";
3349
 
 
3350
 
static const size_t env_set_opt_len     = LTWRAPPER_OPTION_PREFIX_LENGTH + 7;
3351
 
static const char *env_set_opt          = LTWRAPPER_OPTION_PREFIX "env-set";
3352
 
  /* argument is putenv-style "foo=bar", value of foo is set to bar */
3353
 
 
3354
 
static const size_t env_prepend_opt_len = LTWRAPPER_OPTION_PREFIX_LENGTH + 11;
3355
 
static const char *env_prepend_opt      = LTWRAPPER_OPTION_PREFIX "env-prepend";
3356
 
  /* argument is putenv-style "foo=bar", new value of foo is bar${foo} */
3357
 
 
3358
 
static const size_t env_append_opt_len  = LTWRAPPER_OPTION_PREFIX_LENGTH + 10;
3359
 
static const char *env_append_opt       = LTWRAPPER_OPTION_PREFIX "env-append";
3360
 
  /* argument is putenv-style "foo=bar", new value of foo is ${foo}bar */
3361
 
 
3362
 
int
3363
 
main (int argc, char *argv[])
3364
 
{
3365
 
  char **newargz;
3366
 
  int  newargc;
3367
 
  char *tmp_pathspec;
3368
 
  char *actual_cwrapper_path;
3369
 
  char *actual_cwrapper_name;
3370
 
  char *target_name;
3371
 
  char *lt_argv_zero;
3372
 
  intptr_t rval = 127;
3373
 
 
3374
 
  int i;
3375
 
 
3376
 
  program_name = (char *) xstrdup (base_name (argv[0]));
3377
 
  LTWRAPPER_DEBUGPRINTF (("(main) argv[0]      : %s\n", argv[0]));
3378
 
  LTWRAPPER_DEBUGPRINTF (("(main) program_name : %s\n", program_name));
3379
 
 
3380
 
  /* very simple arg parsing; don't want to rely on getopt */
3381
 
  for (i = 1; i < argc; i++)
3382
 
    {
3383
 
      if (strcmp (argv[i], dumpscript_opt) == 0)
3384
 
        {
3385
 
EOF
3386
 
            case "$host" in
3387
 
              *mingw* | *cygwin* )
3388
 
                # make stdout use "unix" line endings
3389
 
                echo "          setmode(1,_O_BINARY);"
3390
 
                ;;
3391
 
              esac
3392
 
 
3393
 
            cat <<"EOF"
3394
 
          printf ("%s", script_text_part1);
3395
 
          printf ("%s", script_text_part2);
3396
 
          return 0;
3397
 
        }
3398
 
    }
3399
 
 
3400
 
  newargz = XMALLOC (char *, argc + 1);
3401
 
  tmp_pathspec = find_executable (argv[0]);
3402
 
  if (tmp_pathspec == NULL)
3403
 
    lt_fatal ("Couldn't find %s", argv[0]);
3404
 
  LTWRAPPER_DEBUGPRINTF (("(main) found exe (before symlink chase) at : %s\n",
3405
 
                          tmp_pathspec));
3406
 
 
3407
 
  actual_cwrapper_path = chase_symlinks (tmp_pathspec);
3408
 
  LTWRAPPER_DEBUGPRINTF (("(main) found exe (after symlink chase) at : %s\n",
3409
 
                          actual_cwrapper_path));
3410
 
  XFREE (tmp_pathspec);
3411
 
 
3412
 
  actual_cwrapper_name = xstrdup( base_name (actual_cwrapper_path));
3413
 
  strendzap (actual_cwrapper_path, actual_cwrapper_name);
3414
 
 
3415
 
  /* wrapper name transforms */
3416
 
  strendzap (actual_cwrapper_name, ".exe");
3417
 
  tmp_pathspec = lt_extend_str (actual_cwrapper_name, ".exe", 1);
3418
 
  XFREE (actual_cwrapper_name);
3419
 
  actual_cwrapper_name = tmp_pathspec;
3420
 
  tmp_pathspec = 0;
3421
 
 
3422
 
  /* target_name transforms -- use actual target program name; might have lt- prefix */
3423
 
  target_name = xstrdup (base_name (TARGET_PROGRAM_NAME));
3424
 
  strendzap (target_name, ".exe");
3425
 
  tmp_pathspec = lt_extend_str (target_name, ".exe", 1);
3426
 
  XFREE (target_name);
3427
 
  target_name = tmp_pathspec;
3428
 
  tmp_pathspec = 0;
3429
 
 
3430
 
  LTWRAPPER_DEBUGPRINTF (("(main) libtool target name: %s\n",
3431
 
                          target_name));
3432
 
EOF
3433
 
 
3434
 
            cat <<EOF
3435
 
  newargz[0] =
3436
 
    XMALLOC (char, (strlen (actual_cwrapper_path) +
3437
 
                    strlen ("$objdir") + 1 + strlen (actual_cwrapper_name) + 1));
3438
 
  strcpy (newargz[0], actual_cwrapper_path);
3439
 
  strcat (newargz[0], "$objdir");
3440
 
  strcat (newargz[0], "/");
3441
 
EOF
3442
 
 
3443
 
            cat <<"EOF"
3444
 
  /* stop here, and copy so we don't have to do this twice */
3445
 
  tmp_pathspec = xstrdup (newargz[0]);
3446
 
 
3447
 
  /* do NOT want the lt- prefix here, so use actual_cwrapper_name */
3448
 
  strcat (newargz[0], actual_cwrapper_name);
3449
 
 
3450
 
  /* DO want the lt- prefix here if it exists, so use target_name */
3451
 
  lt_argv_zero = lt_extend_str (tmp_pathspec, target_name, 1);
3452
 
  XFREE (tmp_pathspec);
3453
 
  tmp_pathspec = NULL;
3454
 
EOF
3455
 
 
3456
 
            case $host_os in
3457
 
              mingw*)
3458
 
            cat <<"EOF"
3459
 
  {
3460
 
    char* p;
3461
 
    while ((p = strchr (newargz[0], '\\')) != NULL)
3462
 
      {
3463
 
        *p = '/';
3464
 
      }
3465
 
    while ((p = strchr (lt_argv_zero, '\\')) != NULL)
3466
 
      {
3467
 
        *p = '/';
3468
 
      }
3469
 
  }
3470
 
EOF
3471
 
            ;;
3472
 
            esac
3473
 
 
3474
 
            cat <<"EOF"
3475
 
  XFREE (target_name);
3476
 
  XFREE (actual_cwrapper_path);
3477
 
  XFREE (actual_cwrapper_name);
3478
 
 
3479
 
  lt_setenv ("BIN_SH", "xpg4"); /* for Tru64 */
3480
 
  lt_setenv ("DUALCASE", "1");  /* for MSK sh */
3481
 
  lt_update_lib_path (LIB_PATH_VARNAME, LIB_PATH_VALUE);
3482
 
  lt_update_exe_path (EXE_PATH_VARNAME, EXE_PATH_VALUE);
3483
 
 
3484
 
  newargc=0;
3485
 
  for (i = 1; i < argc; i++)
3486
 
    {
3487
 
      if (strncmp (argv[i], env_set_opt, env_set_opt_len) == 0)
3488
 
        {
3489
 
          if (argv[i][env_set_opt_len] == '=')
3490
 
            {
3491
 
              const char *p = argv[i] + env_set_opt_len + 1;
3492
 
              lt_opt_process_env_set (p);
3493
 
            }
3494
 
          else if (argv[i][env_set_opt_len] == '\0' && i + 1 < argc)
3495
 
            {
3496
 
              lt_opt_process_env_set (argv[++i]); /* don't copy */
3497
 
            }
3498
 
          else
3499
 
            lt_fatal ("%s missing required argument", env_set_opt);
3500
 
          continue;
3501
 
        }
3502
 
      if (strncmp (argv[i], env_prepend_opt, env_prepend_opt_len) == 0)
3503
 
        {
3504
 
          if (argv[i][env_prepend_opt_len] == '=')
3505
 
            {
3506
 
              const char *p = argv[i] + env_prepend_opt_len + 1;
3507
 
              lt_opt_process_env_prepend (p);
3508
 
            }
3509
 
          else if (argv[i][env_prepend_opt_len] == '\0' && i + 1 < argc)
3510
 
            {
3511
 
              lt_opt_process_env_prepend (argv[++i]); /* don't copy */
3512
 
            }
3513
 
          else
3514
 
            lt_fatal ("%s missing required argument", env_prepend_opt);
3515
 
          continue;
3516
 
        }
3517
 
      if (strncmp (argv[i], env_append_opt, env_append_opt_len) == 0)
3518
 
        {
3519
 
          if (argv[i][env_append_opt_len] == '=')
3520
 
            {
3521
 
              const char *p = argv[i] + env_append_opt_len + 1;
3522
 
              lt_opt_process_env_append (p);
3523
 
            }
3524
 
          else if (argv[i][env_append_opt_len] == '\0' && i + 1 < argc)
3525
 
            {
3526
 
              lt_opt_process_env_append (argv[++i]); /* don't copy */
3527
 
            }
3528
 
          else
3529
 
            lt_fatal ("%s missing required argument", env_append_opt);
3530
 
          continue;
3531
 
        }
3532
 
      if (strncmp (argv[i], ltwrapper_option_prefix, opt_prefix_len) == 0)
3533
 
        {
3534
 
          /* however, if there is an option in the LTWRAPPER_OPTION_PREFIX
3535
 
             namespace, but it is not one of the ones we know about and
3536
 
             have already dealt with, above (inluding dump-script), then
3537
 
             report an error. Otherwise, targets might begin to believe
3538
 
             they are allowed to use options in the LTWRAPPER_OPTION_PREFIX
3539
 
             namespace. The first time any user complains about this, we'll
3540
 
             need to make LTWRAPPER_OPTION_PREFIX a configure-time option
3541
 
             or a configure.ac-settable value.
3542
 
           */
3543
 
          lt_fatal ("Unrecognized option in %s namespace: '%s'",
3544
 
                    ltwrapper_option_prefix, argv[i]);
3545
 
        }
3546
 
      /* otherwise ... */
3547
 
      newargz[++newargc] = xstrdup (argv[i]);
3548
 
    }
3549
 
  newargz[++newargc] = NULL;
3550
 
 
3551
 
  LTWRAPPER_DEBUGPRINTF     (("(main) lt_argv_zero : %s\n", (lt_argv_zero ? lt_argv_zero : "<NULL>")));
3552
 
  for (i = 0; i < newargc; i++)
3553
 
    {
3554
 
      LTWRAPPER_DEBUGPRINTF (("(main) newargz[%d]   : %s\n", i, (newargz[i] ? newargz[i] : "<NULL>")));
3555
 
    }
3556
 
 
3557
 
EOF
3558
 
 
3559
 
            case $host_os in
3560
 
              mingw*)
3561
 
                cat <<"EOF"
3562
 
  /* execv doesn't actually work on mingw as expected on unix */
3563
 
  rval = _spawnv (_P_WAIT, lt_argv_zero, (const char * const *) newargz);
3564
 
  if (rval == -1)
3565
 
    {
3566
 
      /* failed to start process */
3567
 
      LTWRAPPER_DEBUGPRINTF (("(main) failed to launch target \"%s\": errno = %d\n", lt_argv_zero, errno));
3568
 
      return 127;
3569
 
    }
3570
 
  return rval;
3571
 
EOF
3572
 
                ;;
3573
 
              *)
3574
 
                cat <<"EOF"
3575
 
  execv (lt_argv_zero, newargz);
3576
 
  return rval; /* =127, but avoids unused variable warning */
3577
 
EOF
3578
 
                ;;
3579
 
            esac
3580
 
 
3581
 
            cat <<"EOF"
3582
 
}
3583
 
 
3584
 
void *
3585
 
xmalloc (size_t num)
3586
 
{
3587
 
  void *p = (void *) malloc (num);
3588
 
  if (!p)
3589
 
    lt_fatal ("Memory exhausted");
3590
 
 
3591
 
  return p;
3592
 
}
3593
 
 
3594
 
char *
3595
 
xstrdup (const char *string)
3596
 
{
3597
 
  return string ? strcpy ((char *) xmalloc (strlen (string) + 1),
3598
 
                          string) : NULL;
3599
 
}
3600
 
 
3601
 
const char *
3602
 
base_name (const char *name)
3603
 
{
3604
 
  const char *base;
3605
 
 
3606
 
#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
3607
 
  /* Skip over the disk name in MSDOS pathnames. */
3608
 
  if (isalpha ((unsigned char) name[0]) && name[1] == ':')
3609
 
    name += 2;
3610
 
#endif
3611
 
 
3612
 
  for (base = name; *name; name++)
3613
 
    if (IS_DIR_SEPARATOR (*name))
3614
 
      base = name + 1;
3615
 
  return base;
3616
 
}
3617
 
 
3618
 
int
3619
 
check_executable (const char *path)
3620
 
{
3621
 
  struct stat st;
3622
 
 
3623
 
  LTWRAPPER_DEBUGPRINTF (("(check_executable)  : %s\n",
3624
 
                          path ? (*path ? path : "EMPTY!") : "NULL!"));
3625
 
  if ((!path) || (!*path))
3626
 
    return 0;
3627
 
 
3628
 
  if ((stat (path, &st) >= 0)
3629
 
      && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
3630
 
    return 1;
3631
 
  else
3632
 
    return 0;
3633
 
}
3634
 
 
3635
 
int
3636
 
make_executable (const char *path)
3637
 
{
3638
 
  int rval = 0;
3639
 
  struct stat st;
3640
 
 
3641
 
  LTWRAPPER_DEBUGPRINTF (("(make_executable)   : %s\n",
3642
 
                          path ? (*path ? path : "EMPTY!") : "NULL!"));
3643
 
  if ((!path) || (!*path))
3644
 
    return 0;
3645
 
 
3646
 
  if (stat (path, &st) >= 0)
3647
 
    {
3648
 
      rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR);
3649
 
    }
3650
 
  return rval;
3651
 
}
3652
 
 
3653
 
/* Searches for the full path of the wrapper.  Returns
3654
 
   newly allocated full path name if found, NULL otherwise
3655
 
   Does not chase symlinks, even on platforms that support them.
3656
 
*/
3657
 
char *
3658
 
find_executable (const char *wrapper)
3659
 
{
3660
 
  int has_slash = 0;
3661
 
  const char *p;
3662
 
  const char *p_next;
3663
 
  /* static buffer for getcwd */
3664
 
  char tmp[LT_PATHMAX + 1];
3665
 
  int tmp_len;
3666
 
  char *concat_name;
3667
 
 
3668
 
  LTWRAPPER_DEBUGPRINTF (("(find_executable)   : %s\n",
3669
 
                          wrapper ? (*wrapper ? wrapper : "EMPTY!") : "NULL!"));
3670
 
 
3671
 
  if ((wrapper == NULL) || (*wrapper == '\0'))
3672
 
    return NULL;
3673
 
 
3674
 
  /* Absolute path? */
3675
 
#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
3676
 
  if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':')
3677
 
    {
3678
 
      concat_name = xstrdup (wrapper);
3679
 
      if (check_executable (concat_name))
3680
 
        return concat_name;
3681
 
      XFREE (concat_name);
3682
 
    }
3683
 
  else
3684
 
    {
3685
 
#endif
3686
 
      if (IS_DIR_SEPARATOR (wrapper[0]))
3687
 
        {
3688
 
          concat_name = xstrdup (wrapper);
3689
 
          if (check_executable (concat_name))
3690
 
            return concat_name;
3691
 
          XFREE (concat_name);
3692
 
        }
3693
 
#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
3694
 
    }
3695
 
#endif
3696
 
 
3697
 
  for (p = wrapper; *p; p++)
3698
 
    if (*p == '/')
3699
 
      {
3700
 
        has_slash = 1;
3701
 
        break;
3702
 
      }
3703
 
  if (!has_slash)
3704
 
    {
3705
 
      /* no slashes; search PATH */
3706
 
      const char *path = getenv ("PATH");
3707
 
      if (path != NULL)
3708
 
        {
3709
 
          for (p = path; *p; p = p_next)
3710
 
            {
3711
 
              const char *q;
3712
 
              size_t p_len;
3713
 
              for (q = p; *q; q++)
3714
 
                if (IS_PATH_SEPARATOR (*q))
3715
 
                  break;
3716
 
              p_len = q - p;
3717
 
              p_next = (*q == '\0' ? q : q + 1);
3718
 
              if (p_len == 0)
3719
 
                {
3720
 
                  /* empty path: current directory */
3721
 
                  if (getcwd (tmp, LT_PATHMAX) == NULL)
3722
 
                    lt_fatal ("getcwd failed");
3723
 
                  tmp_len = strlen (tmp);
3724
 
                  concat_name =
3725
 
                    XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);
3726
 
                  memcpy (concat_name, tmp, tmp_len);
3727
 
                  concat_name[tmp_len] = '/';
3728
 
                  strcpy (concat_name + tmp_len + 1, wrapper);
3729
 
                }
3730
 
              else
3731
 
                {
3732
 
                  concat_name =
3733
 
                    XMALLOC (char, p_len + 1 + strlen (wrapper) + 1);
3734
 
                  memcpy (concat_name, p, p_len);
3735
 
                  concat_name[p_len] = '/';
3736
 
                  strcpy (concat_name + p_len + 1, wrapper);
3737
 
                }
3738
 
              if (check_executable (concat_name))
3739
 
                return concat_name;
3740
 
              XFREE (concat_name);
3741
 
            }
3742
 
        }
3743
 
      /* not found in PATH; assume curdir */
3744
 
    }
3745
 
  /* Relative path | not found in path: prepend cwd */
3746
 
  if (getcwd (tmp, LT_PATHMAX) == NULL)
3747
 
    lt_fatal ("getcwd failed");
3748
 
  tmp_len = strlen (tmp);
3749
 
  concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);
3750
 
  memcpy (concat_name, tmp, tmp_len);
3751
 
  concat_name[tmp_len] = '/';
3752
 
  strcpy (concat_name + tmp_len + 1, wrapper);
3753
 
 
3754
 
  if (check_executable (concat_name))
3755
 
    return concat_name;
3756
 
  XFREE (concat_name);
3757
 
  return NULL;
3758
 
}
3759
 
 
3760
 
char *
3761
 
chase_symlinks (const char *pathspec)
3762
 
{
3763
 
#ifndef S_ISLNK
3764
 
  return xstrdup (pathspec);
3765
 
#else
3766
 
  char buf[LT_PATHMAX];
3767
 
  struct stat s;
3768
 
  char *tmp_pathspec = xstrdup (pathspec);
3769
 
  char *p;
3770
 
  int has_symlinks = 0;
3771
 
  while (strlen (tmp_pathspec) && !has_symlinks)
3772
 
    {
3773
 
      LTWRAPPER_DEBUGPRINTF (("checking path component for symlinks: %s\n",
3774
 
                              tmp_pathspec));
3775
 
      if (lstat (tmp_pathspec, &s) == 0)
3776
 
        {
3777
 
          if (S_ISLNK (s.st_mode) != 0)
3778
 
            {
3779
 
              has_symlinks = 1;
3780
 
              break;
3781
 
            }
3782
 
 
3783
 
          /* search backwards for last DIR_SEPARATOR */
3784
 
          p = tmp_pathspec + strlen (tmp_pathspec) - 1;
3785
 
          while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
3786
 
            p--;
3787
 
          if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
3788
 
            {
3789
 
              /* no more DIR_SEPARATORS left */
3790
 
              break;
3791
 
            }
3792
 
          *p = '\0';
3793
 
        }
3794
 
      else
3795
 
        {
3796
 
          char *errstr = strerror (errno);
3797
 
          lt_fatal ("Error accessing file %s (%s)", tmp_pathspec, errstr);
3798
 
        }
3799
 
    }
3800
 
  XFREE (tmp_pathspec);
3801
 
 
3802
 
  if (!has_symlinks)
3803
 
    {
3804
 
      return xstrdup (pathspec);
3805
 
    }
3806
 
 
3807
 
  tmp_pathspec = realpath (pathspec, buf);
3808
 
  if (tmp_pathspec == 0)
3809
 
    {
3810
 
      lt_fatal ("Could not follow symlinks for %s", pathspec);
3811
 
    }
3812
 
  return xstrdup (tmp_pathspec);
3813
 
#endif
3814
 
}
3815
 
 
3816
 
char *
3817
 
strendzap (char *str, const char *pat)
3818
 
{
3819
 
  size_t len, patlen;
3820
 
 
3821
 
  assert (str != NULL);
3822
 
  assert (pat != NULL);
3823
 
 
3824
 
  len = strlen (str);
3825
 
  patlen = strlen (pat);
3826
 
 
3827
 
  if (patlen <= len)
3828
 
    {
3829
 
      str += len - patlen;
3830
 
      if (strcmp (str, pat) == 0)
3831
 
        *str = '\0';
3832
 
    }
3833
 
  return str;
3834
 
}
3835
 
 
3836
 
static void
3837
 
lt_error_core (int exit_status, const char *mode,
3838
 
               const char *message, va_list ap)
3839
 
{
3840
 
  fprintf (stderr, "%s: %s: ", program_name, mode);
3841
 
  vfprintf (stderr, message, ap);
3842
 
  fprintf (stderr, ".\n");
3843
 
 
3844
 
  if (exit_status >= 0)
3845
 
    exit (exit_status);
3846
 
}
3847
 
 
3848
 
void
3849
 
lt_fatal (const char *message, ...)
3850
 
{
3851
 
  va_list ap;
3852
 
  va_start (ap, message);
3853
 
  lt_error_core (EXIT_FAILURE, "FATAL", message, ap);
3854
 
  va_end (ap);
3855
 
}
3856
 
 
3857
 
void
3858
 
lt_setenv (const char *name, const char *value)
3859
 
{
3860
 
  LTWRAPPER_DEBUGPRINTF (("(lt_setenv) setting '%s' to '%s'\n",
3861
 
                          (name ? name : "<NULL>"),
3862
 
                          (value ? value : "<NULL>")));
3863
 
  {
3864
 
#ifdef HAVE_SETENV
3865
 
    /* always make a copy, for consistency with !HAVE_SETENV */
3866
 
    char *str = xstrdup (value);
3867
 
    setenv (name, str, 1);
3868
 
#else
3869
 
    int len = strlen (name) + 1 + strlen (value) + 1;
3870
 
    char *str = XMALLOC (char, len);
3871
 
    sprintf (str, "%s=%s", name, value);
3872
 
    if (putenv (str) != EXIT_SUCCESS)
3873
 
      {
3874
 
        XFREE (str);
3875
 
      }
3876
 
#endif
3877
 
  }
3878
 
}
3879
 
 
3880
 
char *
3881
 
lt_extend_str (const char *orig_value, const char *add, int to_end)
3882
 
{
3883
 
  char *new_value;
3884
 
  if (orig_value && *orig_value)
3885
 
    {
3886
 
      int orig_value_len = strlen (orig_value);
3887
 
      int add_len = strlen (add);
3888
 
      new_value = XMALLOC (char, add_len + orig_value_len + 1);
3889
 
      if (to_end)
3890
 
        {
3891
 
          strcpy (new_value, orig_value);
3892
 
          strcpy (new_value + orig_value_len, add);
3893
 
        }
3894
 
      else
3895
 
        {
3896
 
          strcpy (new_value, add);
3897
 
          strcpy (new_value + add_len, orig_value);
3898
 
        }
3899
 
    }
3900
 
  else
3901
 
    {
3902
 
      new_value = xstrdup (add);
3903
 
    }
3904
 
  return new_value;
3905
 
}
3906
 
 
3907
 
int
3908
 
lt_split_name_value (const char *arg, char** name, char** value)
3909
 
{
3910
 
  const char *p;
3911
 
  int len;
3912
 
  if (!arg || !*arg)
3913
 
    return 1;
3914
 
 
3915
 
  p = strchr (arg, (int)'=');
3916
 
 
3917
 
  if (!p)
3918
 
    return 1;
3919
 
 
3920
 
  *value = xstrdup (++p);
3921
 
 
3922
 
  len = strlen (arg) - strlen (*value);
3923
 
  *name = XMALLOC (char, len);
3924
 
  strncpy (*name, arg, len-1);
3925
 
  (*name)[len - 1] = '\0';
3926
 
 
3927
 
  return 0;
3928
 
}
3929
 
 
3930
 
void
3931
 
lt_opt_process_env_set (const char *arg)
3932
 
{
3933
 
  char *name = NULL;
3934
 
  char *value = NULL;
3935
 
 
3936
 
  if (lt_split_name_value (arg, &name, &value) != 0)
3937
 
    {
3938
 
      XFREE (name);
3939
 
      XFREE (value);
3940
 
      lt_fatal ("bad argument for %s: '%s'", env_set_opt, arg);
3941
 
    }
3942
 
 
3943
 
  lt_setenv (name, value);
3944
 
  XFREE (name);
3945
 
  XFREE (value);
3946
 
}
3947
 
 
3948
 
void
3949
 
lt_opt_process_env_prepend (const char *arg)
3950
 
{
3951
 
  char *name = NULL;
3952
 
  char *value = NULL;
3953
 
  char *new_value = NULL;
3954
 
 
3955
 
  if (lt_split_name_value (arg, &name, &value) != 0)
3956
 
    {
3957
 
      XFREE (name);
3958
 
      XFREE (value);
3959
 
      lt_fatal ("bad argument for %s: '%s'", env_prepend_opt, arg);
3960
 
    }
3961
 
 
3962
 
  new_value = lt_extend_str (getenv (name), value, 0);
3963
 
  lt_setenv (name, new_value);
3964
 
  XFREE (new_value);
3965
 
  XFREE (name);
3966
 
  XFREE (value);
3967
 
}
3968
 
 
3969
 
void
3970
 
lt_opt_process_env_append (const char *arg)
3971
 
{
3972
 
  char *name = NULL;
3973
 
  char *value = NULL;
3974
 
  char *new_value = NULL;
3975
 
 
3976
 
  if (lt_split_name_value (arg, &name, &value) != 0)
3977
 
    {
3978
 
      XFREE (name);
3979
 
      XFREE (value);
3980
 
      lt_fatal ("bad argument for %s: '%s'", env_append_opt, arg);
3981
 
    }
3982
 
 
3983
 
  new_value = lt_extend_str (getenv (name), value, 1);
3984
 
  lt_setenv (name, new_value);
3985
 
  XFREE (new_value);
3986
 
  XFREE (name);
3987
 
  XFREE (value);
3988
 
}
3989
 
 
3990
 
void
3991
 
lt_update_exe_path (const char *name, const char *value)
3992
 
{
3993
 
  LTWRAPPER_DEBUGPRINTF (("(lt_update_exe_path) modifying '%s' by prepending '%s'\n",
3994
 
                          (name ? name : "<NULL>"),
3995
 
                          (value ? value : "<NULL>")));
3996
 
 
3997
 
  if (name && *name && value && *value)
3998
 
    {
3999
 
      char *new_value = lt_extend_str (getenv (name), value, 0);
4000
 
      /* some systems can't cope with a ':'-terminated path #' */
4001
 
      int len = strlen (new_value);
4002
 
      while (((len = strlen (new_value)) > 0) && IS_PATH_SEPARATOR (new_value[len-1]))
4003
 
        {
4004
 
          new_value[len-1] = '\0';
4005
 
        }
4006
 
      lt_setenv (name, new_value);
4007
 
      XFREE (new_value);
4008
 
    }
4009
 
}
4010
 
 
4011
 
void
4012
 
lt_update_lib_path (const char *name, const char *value)
4013
 
{
4014
 
  LTWRAPPER_DEBUGPRINTF (("(lt_update_lib_path) modifying '%s' by prepending '%s'\n",
4015
 
                          (name ? name : "<NULL>"),
4016
 
                          (value ? value : "<NULL>")));
4017
 
 
4018
 
  if (name && *name && value && *value)
4019
 
    {
4020
 
      char *new_value = lt_extend_str (getenv (name), value, 0);
4021
 
      lt_setenv (name, new_value);
4022
 
      XFREE (new_value);
4023
 
    }
4024
 
}
4025
 
 
4026
 
 
4027
 
EOF
4028
 
}
4029
 
# end: func_emit_cwrapperexe_src
4030
 
 
4031
 
# func_mode_link arg...
4032
 
func_mode_link ()
4033
 
{
4034
 
    $opt_debug
4035
 
    case $host in
4036
 
    *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
 
1029
        $show "$mv $output_obj $obj"
 
1030
        if $run $mv $output_obj $obj; then :
 
1031
        else
 
1032
          error=$?
 
1033
          $run $rm $removelist
 
1034
          exit $error
 
1035
        fi
 
1036
      fi
 
1037
 
 
1038
      # Append the name of the non-PIC object the libtool object file.
 
1039
      # Only append if the libtool object file exists.
 
1040
      test -z "$run" && cat >> ${libobj}T <<EOF
 
1041
# Name of the non-PIC object.
 
1042
non_pic_object='$objname'
 
1043
 
 
1044
EOF
 
1045
    else
 
1046
      # Append the name of the non-PIC object the libtool object file.
 
1047
      # Only append if the libtool object file exists.
 
1048
      test -z "$run" && cat >> ${libobj}T <<EOF
 
1049
# Name of the non-PIC object.
 
1050
non_pic_object=none
 
1051
 
 
1052
EOF
 
1053
    fi
 
1054
 
 
1055
    $run $mv "${libobj}T" "${libobj}"
 
1056
 
 
1057
    # Unlock the critical section if it was locked
 
1058
    if test "$need_locks" != no; then
 
1059
      $run $rm "$lockfile"
 
1060
    fi
 
1061
 
 
1062
    exit $EXIT_SUCCESS
 
1063
    ;;
 
1064
 
 
1065
  # libtool link mode
 
1066
  link | relink)
 
1067
    modename="$modename: link"
 
1068
    case $host in
 
1069
    *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
4037
1070
      # It is impossible to link a dll without this setting, and
4038
1071
      # we shouldn't force the makefile maintainer to figure out
4039
1072
      # which system we are compiling for in order to pass an extra
4051
1084
      allow_undefined=yes
4052
1085
      ;;
4053
1086
    esac
4054
 
    libtool_args=$nonopt
 
1087
    libtool_args="$nonopt"
4055
1088
    base_compile="$nonopt $@"
4056
 
    compile_command=$nonopt
4057
 
    finalize_command=$nonopt
 
1089
    compile_command="$nonopt"
 
1090
    finalize_command="$nonopt"
4058
1091
 
4059
1092
    compile_rpath=
4060
1093
    finalize_rpath=
4069
1102
    dllsearchpath=
4070
1103
    lib_search_path=`pwd`
4071
1104
    inst_prefix_dir=
4072
 
    new_inherited_linker_flags=
4073
1105
 
4074
1106
    avoid_version=no
4075
1107
    dlfiles=
4085
1117
    no_install=no
4086
1118
    objs=
4087
1119
    non_pic_objects=
 
1120
    notinst_path= # paths that contain not-installed libtool libraries
4088
1121
    precious_files_regex=
4089
1122
    prefer_static_libs=no
4090
1123
    preload=no
4098
1131
    thread_safe=no
4099
1132
    vinfo=
4100
1133
    vinfo_number=no
4101
 
    weak_libs=
4102
 
    single_module="${wl}-single_module"
 
1134
 
4103
1135
    func_infer_tag $base_compile
4104
1136
 
4105
1137
    # We need to know -static, to get the right output filenames.
4106
1138
    for arg
4107
1139
    do
4108
1140
      case $arg in
4109
 
      -shared)
4110
 
        test "$build_libtool_libs" != yes && \
4111
 
          func_fatal_configuration "can not build a shared library"
4112
 
        build_old_libs=no
4113
 
        break
4114
 
        ;;
4115
 
      -all-static | -static | -static-libtool-libs)
4116
 
        case $arg in
4117
 
        -all-static)
 
1141
      -all-static | -static)
 
1142
        if test "X$arg" = "X-all-static"; then
4118
1143
          if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then
4119
 
            func_warning "complete static linking is impossible in this configuration"
 
1144
            $echo "$modename: warning: complete static linking is impossible in this configuration" 1>&2
4120
1145
          fi
4121
1146
          if test -n "$link_static_flag"; then
4122
1147
            dlopen_self=$dlopen_self_static
4123
1148
          fi
4124
1149
          prefer_static_libs=yes
4125
 
          ;;
4126
 
        -static)
 
1150
        else
4127
1151
          if test -z "$pic_flag" && test -n "$link_static_flag"; then
4128
1152
            dlopen_self=$dlopen_self_static
4129
1153
          fi
4130
1154
          prefer_static_libs=built
4131
 
          ;;
4132
 
        -static-libtool-libs)
4133
 
          if test -z "$pic_flag" && test -n "$link_static_flag"; then
4134
 
            dlopen_self=$dlopen_self_static
4135
 
          fi
4136
 
          prefer_static_libs=yes
4137
 
          ;;
4138
 
        esac
 
1155
        fi
4139
1156
        build_libtool_libs=no
4140
1157
        build_old_libs=yes
4141
1158
        break
4150
1167
    while test "$#" -gt 0; do
4151
1168
      arg="$1"
4152
1169
      shift
4153
 
      func_quote_for_eval "$arg"
4154
 
      qarg=$func_quote_for_eval_unquoted_result
4155
 
      func_append libtool_args " $func_quote_for_eval_result"
 
1170
      case $arg in
 
1171
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \     ]*|*]*|"")
 
1172
        qarg=\"`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`\" ### testsuite: skip nested quoting test
 
1173
        ;;
 
1174
      *) qarg=$arg ;;
 
1175
      esac
 
1176
      libtool_args="$libtool_args $qarg"
4156
1177
 
4157
1178
      # If the previous option needs an argument, assign it.
4158
1179
      if test -n "$prev"; then
4159
1180
        case $prev in
4160
1181
        output)
4161
 
          func_append compile_command " @OUTPUT@"
4162
 
          func_append finalize_command " @OUTPUT@"
 
1182
          compile_command="$compile_command @OUTPUT@"
 
1183
          finalize_command="$finalize_command @OUTPUT@"
4163
1184
          ;;
4164
1185
        esac
4165
1186
 
4167
1188
        dlfiles|dlprefiles)
4168
1189
          if test "$preload" = no; then
4169
1190
            # Add the symbol object into the linking commands.
4170
 
            func_append compile_command " @SYMFILE@"
4171
 
            func_append finalize_command " @SYMFILE@"
 
1191
            compile_command="$compile_command @SYMFILE@"
 
1192
            finalize_command="$finalize_command @SYMFILE@"
4172
1193
            preload=yes
4173
1194
          fi
4174
1195
          case $arg in
4206
1227
          ;;
4207
1228
        expsyms)
4208
1229
          export_symbols="$arg"
4209
 
          test -f "$arg" \
4210
 
            || func_fatal_error "symbol file \`$arg' does not exist"
 
1230
          if test ! -f "$arg"; then
 
1231
            $echo "$modename: symbol file \`$arg' does not exist"
 
1232
            exit $EXIT_FAILURE
 
1233
          fi
4211
1234
          prev=
4212
1235
          continue
4213
1236
          ;;
4216
1239
          prev=
4217
1240
          continue
4218
1241
          ;;
4219
 
        framework)
4220
 
          case $host in
4221
 
            *-*-darwin*)
4222
 
              case "$deplibs " in
4223
 
                *" $qarg.ltframework "*) ;;
4224
 
                *) deplibs="$deplibs $qarg.ltframework" # this is fixed later
4225
 
                   ;;
4226
 
              esac
4227
 
              ;;
4228
 
          esac
4229
 
          prev=
4230
 
          continue
4231
 
          ;;
4232
1242
        inst_prefix)
4233
1243
          inst_prefix_dir="$arg"
4234
1244
          prev=
4235
1245
          continue
4236
1246
          ;;
 
1247
        precious_regex)
 
1248
          precious_files_regex="$arg"
 
1249
          prev=
 
1250
          continue
 
1251
          ;;
 
1252
        release)
 
1253
          release="-$arg"
 
1254
          prev=
 
1255
          continue
 
1256
          ;;
4237
1257
        objectlist)
4238
1258
          if test -f "$arg"; then
4239
1259
            save_arg=$arg
4240
1260
            moreargs=
4241
 
            for fil in `cat "$save_arg"`
 
1261
            for fil in `cat $save_arg`
4242
1262
            do
4243
1263
#             moreargs="$moreargs $fil"
4244
1264
              arg=$fil
4245
1265
              # A libtool-controlled object.
4246
1266
 
4247
1267
              # Check to see that this really is a libtool object.
4248
 
              if func_lalib_unsafe_p "$arg"; then
 
1268
              if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
4249
1269
                pic_object=
4250
1270
                non_pic_object=
4251
1271
 
4252
1272
                # Read the .lo file
4253
 
                func_source "$arg"
 
1273
                # If there is no directory component, then add one.
 
1274
                case $arg in
 
1275
                */* | *\\*) . $arg ;;
 
1276
                *) . ./$arg ;;
 
1277
                esac
4254
1278
 
4255
 
                if test -z "$pic_object" ||
 
1279
                if test -z "$pic_object" || \
4256
1280
                   test -z "$non_pic_object" ||
4257
 
                   test "$pic_object" = none &&
 
1281
                   test "$pic_object" = none && \
4258
1282
                   test "$non_pic_object" = none; then
4259
 
                  func_fatal_error "cannot find name of object for \`$arg'"
 
1283
                  $echo "$modename: cannot find name of object for \`$arg'" 1>&2
 
1284
                  exit $EXIT_FAILURE
4260
1285
                fi
4261
1286
 
4262
1287
                # Extract subdirectory from the argument.
4263
 
                func_dirname "$arg" "/" ""
4264
 
                xdir="$func_dirname_result"
 
1288
                xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
 
1289
                if test "X$xdir" = "X$arg"; then
 
1290
                  xdir=
 
1291
                else
 
1292
                  xdir="$xdir/"
 
1293
                fi
4265
1294
 
4266
1295
                if test "$pic_object" != none; then
4267
1296
                  # Prepend the subdirectory the object is found in.
4286
1315
                  fi
4287
1316
 
4288
1317
                  # A PIC object.
4289
 
                  func_append libobjs " $pic_object"
 
1318
                  libobjs="$libobjs $pic_object"
4290
1319
                  arg="$pic_object"
4291
1320
                fi
4292
1321
 
4296
1325
                  non_pic_object="$xdir$non_pic_object"
4297
1326
 
4298
1327
                  # A standard non-PIC object
4299
 
                  func_append non_pic_objects " $non_pic_object"
 
1328
                  non_pic_objects="$non_pic_objects $non_pic_object"
4300
1329
                  if test -z "$pic_object" || test "$pic_object" = none ; then
4301
1330
                    arg="$non_pic_object"
4302
1331
                  fi
4304
1333
                  # If the PIC object exists, use it instead.
4305
1334
                  # $xdir was prepended to $pic_object above.
4306
1335
                  non_pic_object="$pic_object"
4307
 
                  func_append non_pic_objects " $non_pic_object"
 
1336
                  non_pic_objects="$non_pic_objects $non_pic_object"
4308
1337
                fi
4309
1338
              else
4310
1339
                # Only an error if not doing a dry-run.
4311
 
                if $opt_dry_run; then
 
1340
                if test -z "$run"; then
 
1341
                  $echo "$modename: \`$arg' is not a valid libtool object" 1>&2
 
1342
                  exit $EXIT_FAILURE
 
1343
                else
 
1344
                  # Dry-run case.
 
1345
 
4312
1346
                  # Extract subdirectory from the argument.
4313
 
                  func_dirname "$arg" "/" ""
4314
 
                  xdir="$func_dirname_result"
 
1347
                  xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
 
1348
                  if test "X$xdir" = "X$arg"; then
 
1349
                    xdir=
 
1350
                  else
 
1351
                    xdir="$xdir/"
 
1352
                  fi
4315
1353
 
4316
 
                  func_lo2o "$arg"
4317
 
                  pic_object=$xdir$objdir/$func_lo2o_result
4318
 
                  non_pic_object=$xdir$func_lo2o_result
4319
 
                  func_append libobjs " $pic_object"
4320
 
                  func_append non_pic_objects " $non_pic_object"
4321
 
                else
4322
 
                  func_fatal_error "\`$arg' is not a valid libtool object"
 
1354
                  pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"`
 
1355
                  non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"`
 
1356
                  libobjs="$libobjs $pic_object"
 
1357
                  non_pic_objects="$non_pic_objects $non_pic_object"
4323
1358
                fi
4324
1359
              fi
4325
1360
            done
4326
1361
          else
4327
 
            func_fatal_error "link input file \`$arg' does not exist"
 
1362
            $echo "$modename: link input file \`$save_arg' does not exist"
 
1363
            exit $EXIT_FAILURE
4328
1364
          fi
4329
1365
          arg=$save_arg
4330
1366
          prev=
4331
1367
          continue
4332
1368
          ;;
4333
 
        precious_regex)
4334
 
          precious_files_regex="$arg"
4335
 
          prev=
4336
 
          continue
4337
 
          ;;
4338
 
        release)
4339
 
          release="-$arg"
4340
 
          prev=
4341
 
          continue
4342
 
          ;;
4343
1369
        rpath | xrpath)
4344
1370
          # We need an absolute path.
4345
1371
          case $arg in
4346
1372
          [\\/]* | [A-Za-z]:[\\/]*) ;;
4347
1373
          *)
4348
 
            func_fatal_error "only absolute run-paths are allowed"
 
1374
            $echo "$modename: only absolute run-paths are allowed" 1>&2
 
1375
            exit $EXIT_FAILURE
4349
1376
            ;;
4350
1377
          esac
4351
1378
          if test "$prev" = rpath; then
4362
1389
          prev=
4363
1390
          continue
4364
1391
          ;;
4365
 
        shrext)
4366
 
          shrext_cmds="$arg"
4367
 
          prev=
4368
 
          continue
4369
 
          ;;
4370
 
        weak)
4371
 
          weak_libs="$weak_libs $arg"
4372
 
          prev=
4373
 
          continue
4374
 
          ;;
4375
 
        xcclinker)
4376
 
          linker_flags="$linker_flags $qarg"
4377
 
          compiler_flags="$compiler_flags $qarg"
4378
 
          prev=
4379
 
          func_append compile_command " $qarg"
4380
 
          func_append finalize_command " $qarg"
4381
 
          continue
4382
 
          ;;
4383
1392
        xcompiler)
4384
1393
          compiler_flags="$compiler_flags $qarg"
4385
1394
          prev=
4386
 
          func_append compile_command " $qarg"
4387
 
          func_append finalize_command " $qarg"
 
1395
          compile_command="$compile_command $qarg"
 
1396
          finalize_command="$finalize_command $qarg"
4388
1397
          continue
4389
1398
          ;;
4390
1399
        xlinker)
4391
1400
          linker_flags="$linker_flags $qarg"
4392
1401
          compiler_flags="$compiler_flags $wl$qarg"
4393
1402
          prev=
4394
 
          func_append compile_command " $wl$qarg"
4395
 
          func_append finalize_command " $wl$qarg"
 
1403
          compile_command="$compile_command $wl$qarg"
 
1404
          finalize_command="$finalize_command $wl$qarg"
 
1405
          continue
 
1406
          ;;
 
1407
        xcclinker)
 
1408
          linker_flags="$linker_flags $qarg"
 
1409
          compiler_flags="$compiler_flags $qarg"
 
1410
          prev=
 
1411
          compile_command="$compile_command $qarg"
 
1412
          finalize_command="$finalize_command $qarg"
 
1413
          continue
 
1414
          ;;
 
1415
        shrext)
 
1416
          shrext_cmds="$arg"
 
1417
          prev=
 
1418
          continue
 
1419
          ;;
 
1420
        darwin_framework|darwin_framework_skip)
 
1421
          test "$prev" = "darwin_framework" && compiler_flags="$compiler_flags $arg"
 
1422
          compile_command="$compile_command $arg"
 
1423
          finalize_command="$finalize_command $arg"
 
1424
          prev=
4396
1425
          continue
4397
1426
          ;;
4398
1427
        *)
4408
1437
      case $arg in
4409
1438
      -all-static)
4410
1439
        if test -n "$link_static_flag"; then
4411
 
          # See comment for -static flag below, for more details.
4412
 
          func_append compile_command " $link_static_flag"
4413
 
          func_append finalize_command " $link_static_flag"
 
1440
          compile_command="$compile_command $link_static_flag"
 
1441
          finalize_command="$finalize_command $link_static_flag"
4414
1442
        fi
4415
1443
        continue
4416
1444
        ;;
4417
1445
 
4418
1446
      -allow-undefined)
4419
1447
        # FIXME: remove this flag sometime in the future.
4420
 
        func_fatal_error "\`-allow-undefined' must not be used because it is the default"
 
1448
        $echo "$modename: \`-allow-undefined' is deprecated because it is the default" 1>&2
 
1449
        continue
4421
1450
        ;;
4422
1451
 
4423
1452
      -avoid-version)
4442
1471
 
4443
1472
      -export-symbols | -export-symbols-regex)
4444
1473
        if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
4445
 
          func_fatal_error "more than one -exported-symbols argument is not allowed"
 
1474
          $echo "$modename: more than one -exported-symbols argument is not allowed"
 
1475
          exit $EXIT_FAILURE
4446
1476
        fi
4447
1477
        if test "X$arg" = "X-export-symbols"; then
4448
1478
          prev=expsyms
4452
1482
        continue
4453
1483
        ;;
4454
1484
 
4455
 
      -framework)
4456
 
        prev=framework
 
1485
      -framework|-arch|-isysroot)
 
1486
        case " $CC " in
 
1487
          *" ${arg} ${1} "* | *" ${arg} ${1} "*) 
 
1488
                prev=darwin_framework_skip ;;
 
1489
          *) compiler_flags="$compiler_flags $arg"
 
1490
             prev=darwin_framework ;;
 
1491
        esac
 
1492
        compile_command="$compile_command $arg"
 
1493
        finalize_command="$finalize_command $arg"
4457
1494
        continue
4458
1495
        ;;
4459
1496
 
4467
1504
      -L[A-Z][A-Z]*:*)
4468
1505
        case $with_gcc/$host in
4469
1506
        no/*-*-irix* | /*-*-irix*)
4470
 
          func_append compile_command " $arg"
4471
 
          func_append finalize_command " $arg"
 
1507
          compile_command="$compile_command $arg"
 
1508
          finalize_command="$finalize_command $arg"
4472
1509
          ;;
4473
1510
        esac
4474
1511
        continue
4475
1512
        ;;
4476
1513
 
4477
1514
      -L*)
4478
 
        func_stripname '-L' '' "$arg"
4479
 
        dir=$func_stripname_result
4480
 
        if test -z "$dir"; then
4481
 
          if test "$#" -gt 0; then
4482
 
            func_fatal_error "require no space between \`-L' and \`$1'"
4483
 
          else
4484
 
            func_fatal_error "need path for \`-L' option"
4485
 
          fi
4486
 
        fi
 
1515
        dir=`$echo "X$arg" | $Xsed -e 's/^-L//'`
4487
1516
        # We need an absolute path.
4488
1517
        case $dir in
4489
1518
        [\\/]* | [A-Za-z]:[\\/]*) ;;
4490
1519
        *)
4491
1520
          absdir=`cd "$dir" && pwd`
4492
 
          test -z "$absdir" && \
4493
 
            func_fatal_error "cannot determine absolute directory name of \`$dir'"
 
1521
          if test -z "$absdir"; then
 
1522
            $echo "$modename: cannot determine absolute directory name of \`$dir'" 1>&2
 
1523
            absdir="$dir"
 
1524
            notinst_path="$notinst_path $dir"
 
1525
          fi
4494
1526
          dir="$absdir"
4495
1527
          ;;
4496
1528
        esac
4502
1534
          ;;
4503
1535
        esac
4504
1536
        case $host in
4505
 
        *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
4506
 
          testbindir=`$ECHO "X$dir" | $Xsed -e 's*/lib$*/bin*'`
 
1537
        *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
 
1538
          testbindir=`$echo "X$dir" | $Xsed -e 's*/lib$*/bin*'`
4507
1539
          case :$dllsearchpath: in
4508
1540
          *":$dir:"*) ;;
4509
 
          ::) dllsearchpath=$dir;;
4510
1541
          *) dllsearchpath="$dllsearchpath:$dir";;
4511
1542
          esac
4512
1543
          case :$dllsearchpath: in
4513
1544
          *":$testbindir:"*) ;;
4514
 
          ::) dllsearchpath=$testbindir;;
4515
1545
          *) dllsearchpath="$dllsearchpath:$testbindir";;
4516
1546
          esac
4517
1547
          ;;
4522
1552
      -l*)
4523
1553
        if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then
4524
1554
          case $host in
4525
 
          *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc*)
 
1555
          *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos*)
4526
1556
            # These systems don't actually have a C or math library (as such)
4527
1557
            continue
4528
1558
            ;;
4536
1566
            ;;
4537
1567
          *-*-rhapsody* | *-*-darwin1.[012])
4538
1568
            # Rhapsody C and math libraries are in the System framework
4539
 
            deplibs="$deplibs System.ltframework"
 
1569
            deplibs="$deplibs -framework System"
4540
1570
            continue
4541
1571
            ;;
4542
1572
          *-*-sco3.2v5* | *-*-sco5v6*)
4560
1590
        continue
4561
1591
        ;;
4562
1592
 
 
1593
      # Tru64 UNIX uses -model [arg] to determine the layout of C++
 
1594
      # classes, name mangling, and exception handling.
 
1595
      -model)
 
1596
        compile_command="$compile_command $arg"
 
1597
        compiler_flags="$compiler_flags $arg"
 
1598
        finalize_command="$finalize_command $arg"
 
1599
        prev=xcompiler
 
1600
        continue
 
1601
        ;;
 
1602
 
 
1603
     -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe)
 
1604
        compiler_flags="$compiler_flags $arg"
 
1605
        compile_command="$compile_command $arg"
 
1606
        finalize_command="$finalize_command $arg"
 
1607
        continue
 
1608
        ;;
 
1609
 
4563
1610
      -module)
4564
1611
        module=yes
4565
1612
        continue
4566
1613
        ;;
4567
1614
 
4568
 
      # Tru64 UNIX uses -model [arg] to determine the layout of C++
4569
 
      # classes, name mangling, and exception handling.
4570
 
      # Darwin uses the -arch flag to determine output architecture.
4571
 
      -model|-arch|-isysroot)
4572
 
        compiler_flags="$compiler_flags $arg"
4573
 
        func_append compile_command " $arg"
4574
 
        func_append finalize_command " $arg"
4575
 
        prev=xcompiler
4576
 
        continue
4577
 
        ;;
 
1615
      # -64, -mips[0-9] enable 64-bit mode on the SGI compiler
 
1616
      # -r[0-9][0-9]* specifies the processor on the SGI compiler
 
1617
      # -xarch=*, -xtarget=* enable 64-bit mode on the Sun compiler
 
1618
      # +DA*, +DD* enable 64-bit mode on the HP compiler
 
1619
      # -q* pass through compiler args for the IBM compiler
 
1620
      # -m* pass through architecture-specific compiler args for GCC
 
1621
      # -m*, -t[45]*, -txscale* pass through architecture-specific
 
1622
      # compiler args for GCC
 
1623
      # -pg pass through profiling flag for GCC
 
1624
      # @file GCC response files
 
1625
      -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*|-pg| \
 
1626
      -t[45]*|-txscale*|@*)
4578
1627
 
4579
 
      -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads)
4580
 
        compiler_flags="$compiler_flags $arg"
4581
 
        func_append compile_command " $arg"
4582
 
        func_append finalize_command " $arg"
4583
 
        case "$new_inherited_linker_flags " in
4584
 
            *" $arg "*) ;;
4585
 
            * ) new_inherited_linker_flags="$new_inherited_linker_flags $arg" ;;
 
1628
        # Unknown arguments in both finalize_command and compile_command need
 
1629
        # to be aesthetically quoted because they are evaled later.
 
1630
        arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
 
1631
        case $arg in
 
1632
        *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \   ]*|*]*|"")
 
1633
          arg="\"$arg\""
 
1634
          ;;
4586
1635
        esac
4587
 
        continue
4588
 
        ;;
 
1636
        compile_command="$compile_command $arg"
 
1637
        finalize_command="$finalize_command $arg"
 
1638
        compiler_flags="$compiler_flags $arg"
 
1639
        continue
 
1640
        ;;
4589
1641
 
4590
 
      -multi_module)
4591
 
        single_module="${wl}-multi_module"
 
1642
      -shrext)
 
1643
        prev=shrext
4592
1644
        continue
4593
1645
        ;;
4594
1646
 
4599
1651
 
4600
1652
      -no-install)
4601
1653
        case $host in
4602
 
        *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*)
 
1654
        *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
4603
1655
          # The PATH hackery in wrapper scripts is required on Windows
4604
 
          # and Darwin in order for the loader to find any dlls it needs.
4605
 
          func_warning "\`-no-install' is ignored for $host"
4606
 
          func_warning "assuming \`-no-fast-install' instead"
 
1656
          # in order for the loader to find any dlls it needs.
 
1657
          $echo "$modename: warning: \`-no-install' is ignored for $host" 1>&2
 
1658
          $echo "$modename: warning: assuming \`-no-fast-install' instead" 1>&2
4607
1659
          fast_install=no
4608
1660
          ;;
4609
1661
        *) no_install=yes ;;
4644
1696
        ;;
4645
1697
 
4646
1698
      -R*)
4647
 
        func_stripname '-R' '' "$arg"
4648
 
        dir=$func_stripname_result
 
1699
        dir=`$echo "X$arg" | $Xsed -e 's/^-R//'`
4649
1700
        # We need an absolute path.
4650
1701
        case $dir in
4651
1702
        [\\/]* | [A-Za-z]:[\\/]*) ;;
4652
1703
        *)
4653
 
          func_fatal_error "only absolute run-paths are allowed"
 
1704
          $echo "$modename: only absolute run-paths are allowed" 1>&2
 
1705
          exit $EXIT_FAILURE
4654
1706
          ;;
4655
1707
        esac
4656
1708
        case "$xrpath " in
4660
1712
        continue
4661
1713
        ;;
4662
1714
 
4663
 
      -shared)
4664
 
        # The effects of -shared are defined in a previous loop.
4665
 
        continue
4666
 
        ;;
4667
 
 
4668
 
      -shrext)
4669
 
        prev=shrext
4670
 
        continue
4671
 
        ;;
4672
 
 
4673
 
      -static | -static-libtool-libs)
 
1715
      -static)
4674
1716
        # The effects of -static are defined in a previous loop.
4675
1717
        # We used to do the same as -all-static on platforms that
4676
1718
        # didn't have a PIC flag, but the assumption that the effects
4688
1730
        prev=vinfo
4689
1731
        continue
4690
1732
        ;;
4691
 
 
4692
1733
      -version-number)
4693
1734
        prev=vinfo
4694
1735
        vinfo_number=yes
4695
1736
        continue
4696
1737
        ;;
4697
1738
 
4698
 
      -weak)
4699
 
        prev=weak
4700
 
        continue
4701
 
        ;;
4702
 
 
4703
1739
      -Wc,*)
4704
 
        func_stripname '-Wc,' '' "$arg"
4705
 
        args=$func_stripname_result
 
1740
        args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wc,//'`
4706
1741
        arg=
4707
1742
        save_ifs="$IFS"; IFS=','
4708
1743
        for flag in $args; do
4709
1744
          IFS="$save_ifs"
4710
 
          func_quote_for_eval "$flag"
4711
 
          arg="$arg $wl$func_quote_for_eval_result"
4712
 
          compiler_flags="$compiler_flags $func_quote_for_eval_result"
 
1745
          case $flag in
 
1746
            *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \       ]*|*]*|"")
 
1747
            flag="\"$flag\""
 
1748
            ;;
 
1749
          esac
 
1750
          arg="$arg $wl$flag"
 
1751
          compiler_flags="$compiler_flags $flag"
4713
1752
        done
4714
1753
        IFS="$save_ifs"
4715
 
        func_stripname ' ' '' "$arg"
4716
 
        arg=$func_stripname_result
 
1754
        arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
4717
1755
        ;;
4718
1756
 
4719
1757
      -Wl,*)
4720
 
        func_stripname '-Wl,' '' "$arg"
4721
 
        args=$func_stripname_result
 
1758
        args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wl,//'`
4722
1759
        arg=
4723
1760
        save_ifs="$IFS"; IFS=','
4724
1761
        for flag in $args; do
4725
1762
          IFS="$save_ifs"
4726
 
          func_quote_for_eval "$flag"
4727
 
          arg="$arg $wl$func_quote_for_eval_result"
4728
 
          compiler_flags="$compiler_flags $wl$func_quote_for_eval_result"
4729
 
          linker_flags="$linker_flags $func_quote_for_eval_result"
 
1763
          case $flag in
 
1764
            *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \       ]*|*]*|"")
 
1765
            flag="\"$flag\""
 
1766
            ;;
 
1767
          esac
 
1768
          arg="$arg $wl$flag"
 
1769
          compiler_flags="$compiler_flags $wl$flag"
 
1770
          linker_flags="$linker_flags $flag"
4730
1771
        done
4731
1772
        IFS="$save_ifs"
4732
 
        func_stripname ' ' '' "$arg"
4733
 
        arg=$func_stripname_result
 
1773
        arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
4734
1774
        ;;
4735
1775
 
4736
1776
      -Xcompiler)
4748
1788
        continue
4749
1789
        ;;
4750
1790
 
4751
 
      # -msg_* for osf cc
4752
 
      -msg_*)
4753
 
        func_quote_for_eval "$arg"
4754
 
        arg="$func_quote_for_eval_result"
4755
 
        ;;
4756
 
 
4757
 
      # -64, -mips[0-9] enable 64-bit mode on the SGI compiler
4758
 
      # -r[0-9][0-9]* specifies the processor on the SGI compiler
4759
 
      # -xarch=*, -xtarget=* enable 64-bit mode on the Sun compiler
4760
 
      # +DA*, +DD* enable 64-bit mode on the HP compiler
4761
 
      # -q* pass through compiler args for the IBM compiler
4762
 
      # -m*, -t[45]*, -txscale* pass through architecture-specific
4763
 
      # compiler args for GCC
4764
 
      # -F/path gives path to uninstalled frameworks, gcc on darwin
4765
 
      # -p, -pg, --coverage, -fprofile-* pass through profiling flag for GCC
4766
 
      # @file GCC response files
4767
 
      -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \
4768
 
      -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*)
4769
 
        func_quote_for_eval "$arg"
4770
 
        arg="$func_quote_for_eval_result"
4771
 
        func_append compile_command " $arg"
4772
 
        func_append finalize_command " $arg"
4773
 
        compiler_flags="$compiler_flags $arg"
4774
 
        continue
4775
 
        ;;
4776
 
 
4777
1791
      # Some other compiler flag.
4778
1792
      -* | +*)
4779
 
        func_quote_for_eval "$arg"
4780
 
        arg="$func_quote_for_eval_result"
 
1793
        # Unknown arguments in both finalize_command and compile_command need
 
1794
        # to be aesthetically quoted because they are evaled later.
 
1795
        arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
 
1796
        case $arg in
 
1797
        *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \   ]*|*]*|"")
 
1798
          arg="\"$arg\""
 
1799
          ;;
 
1800
        esac
4781
1801
        ;;
4782
1802
 
4783
1803
      *.$objext)
4789
1809
        # A libtool-controlled object.
4790
1810
 
4791
1811
        # Check to see that this really is a libtool object.
4792
 
        if func_lalib_unsafe_p "$arg"; then
 
1812
        if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
4793
1813
          pic_object=
4794
1814
          non_pic_object=
4795
1815
 
4796
1816
          # Read the .lo file
4797
 
          func_source "$arg"
 
1817
          # If there is no directory component, then add one.
 
1818
          case $arg in
 
1819
          */* | *\\*) . $arg ;;
 
1820
          *) . ./$arg ;;
 
1821
          esac
4798
1822
 
4799
 
          if test -z "$pic_object" ||
 
1823
          if test -z "$pic_object" || \
4800
1824
             test -z "$non_pic_object" ||
4801
 
             test "$pic_object" = none &&
 
1825
             test "$pic_object" = none && \
4802
1826
             test "$non_pic_object" = none; then
4803
 
            func_fatal_error "cannot find name of object for \`$arg'"
 
1827
            $echo "$modename: cannot find name of object for \`$arg'" 1>&2
 
1828
            exit $EXIT_FAILURE
4804
1829
          fi
4805
1830
 
4806
1831
          # Extract subdirectory from the argument.
4807
 
          func_dirname "$arg" "/" ""
4808
 
          xdir="$func_dirname_result"
 
1832
          xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
 
1833
          if test "X$xdir" = "X$arg"; then
 
1834
            xdir=
 
1835
          else
 
1836
            xdir="$xdir/"
 
1837
          fi
4809
1838
 
4810
1839
          if test "$pic_object" != none; then
4811
1840
            # Prepend the subdirectory the object is found in.
4830
1859
            fi
4831
1860
 
4832
1861
            # A PIC object.
4833
 
            func_append libobjs " $pic_object"
 
1862
            libobjs="$libobjs $pic_object"
4834
1863
            arg="$pic_object"
4835
1864
          fi
4836
1865
 
4840
1869
            non_pic_object="$xdir$non_pic_object"
4841
1870
 
4842
1871
            # A standard non-PIC object
4843
 
            func_append non_pic_objects " $non_pic_object"
 
1872
            non_pic_objects="$non_pic_objects $non_pic_object"
4844
1873
            if test -z "$pic_object" || test "$pic_object" = none ; then
4845
1874
              arg="$non_pic_object"
4846
1875
            fi
4848
1877
            # If the PIC object exists, use it instead.
4849
1878
            # $xdir was prepended to $pic_object above.
4850
1879
            non_pic_object="$pic_object"
4851
 
            func_append non_pic_objects " $non_pic_object"
 
1880
            non_pic_objects="$non_pic_objects $non_pic_object"
4852
1881
          fi
4853
1882
        else
4854
1883
          # Only an error if not doing a dry-run.
4855
 
          if $opt_dry_run; then
 
1884
          if test -z "$run"; then
 
1885
            $echo "$modename: \`$arg' is not a valid libtool object" 1>&2
 
1886
            exit $EXIT_FAILURE
 
1887
          else
 
1888
            # Dry-run case.
 
1889
 
4856
1890
            # Extract subdirectory from the argument.
4857
 
            func_dirname "$arg" "/" ""
4858
 
            xdir="$func_dirname_result"
 
1891
            xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
 
1892
            if test "X$xdir" = "X$arg"; then
 
1893
              xdir=
 
1894
            else
 
1895
              xdir="$xdir/"
 
1896
            fi
4859
1897
 
4860
 
            func_lo2o "$arg"
4861
 
            pic_object=$xdir$objdir/$func_lo2o_result
4862
 
            non_pic_object=$xdir$func_lo2o_result
4863
 
            func_append libobjs " $pic_object"
4864
 
            func_append non_pic_objects " $non_pic_object"
4865
 
          else
4866
 
            func_fatal_error "\`$arg' is not a valid libtool object"
 
1898
            pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"`
 
1899
            non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"`
 
1900
            libobjs="$libobjs $pic_object"
 
1901
            non_pic_objects="$non_pic_objects $non_pic_object"
4867
1902
          fi
4868
1903
        fi
4869
1904
        ;;
4896
1931
      *)
4897
1932
        # Unknown arguments in both finalize_command and compile_command need
4898
1933
        # to be aesthetically quoted because they are evaled later.
4899
 
        func_quote_for_eval "$arg"
4900
 
        arg="$func_quote_for_eval_result"
 
1934
        arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
 
1935
        case $arg in
 
1936
        *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \   ]*|*]*|"")
 
1937
          arg="\"$arg\""
 
1938
          ;;
 
1939
        esac
4901
1940
        ;;
4902
1941
      esac # arg
4903
1942
 
4904
1943
      # Now actually substitute the argument into the commands.
4905
1944
      if test -n "$arg"; then
4906
 
        func_append compile_command " $arg"
4907
 
        func_append finalize_command " $arg"
 
1945
        compile_command="$compile_command $arg"
 
1946
        finalize_command="$finalize_command $arg"
4908
1947
      fi
4909
1948
    done # argument parsing loop
4910
1949
 
4911
 
    test -n "$prev" && \
4912
 
      func_fatal_help "the \`$prevarg' option requires an argument"
 
1950
    if test -n "$prev"; then
 
1951
      $echo "$modename: the \`$prevarg' option requires an argument" 1>&2
 
1952
      $echo "$help" 1>&2
 
1953
      exit $EXIT_FAILURE
 
1954
    fi
4913
1955
 
4914
1956
    if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then
4915
1957
      eval arg=\"$export_dynamic_flag_spec\"
4916
 
      func_append compile_command " $arg"
4917
 
      func_append finalize_command " $arg"
 
1958
      compile_command="$compile_command $arg"
 
1959
      finalize_command="$finalize_command $arg"
4918
1960
    fi
4919
1961
 
4920
1962
    oldlibs=
4921
1963
    # calculate the name of the file, without its directory
4922
 
    func_basename "$output"
4923
 
    outputname="$func_basename_result"
 
1964
    outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'`
4924
1965
    libobjs_save="$libobjs"
4925
1966
 
4926
1967
    if test -n "$shlibpath_var"; then
4927
1968
      # get the directories listed in $shlibpath_var
4928
 
      eval shlib_search_path=\`\$ECHO \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\`
 
1969
      eval shlib_search_path=\`\$echo \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\`
4929
1970
    else
4930
1971
      shlib_search_path=
4931
1972
    fi
4932
1973
    eval sys_lib_search_path=\"$sys_lib_search_path_spec\"
4933
1974
    eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\"
4934
1975
 
4935
 
    func_dirname "$output" "/" ""
4936
 
    output_objdir="$func_dirname_result$objdir"
 
1976
    output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'`
 
1977
    if test "X$output_objdir" = "X$output"; then
 
1978
      output_objdir="$objdir"
 
1979
    else
 
1980
      output_objdir="$output_objdir/$objdir"
 
1981
    fi
4937
1982
    # Create the object directory.
4938
 
    func_mkdir_p "$output_objdir"
 
1983
    if test ! -d "$output_objdir"; then
 
1984
      $show "$mkdir $output_objdir"
 
1985
      $run $mkdir $output_objdir
 
1986
      exit_status=$?
 
1987
      if test "$exit_status" -ne 0 && test ! -d "$output_objdir"; then
 
1988
        exit $exit_status
 
1989
      fi
 
1990
    fi
4939
1991
 
4940
1992
    # Determine the type of output
4941
1993
    case $output in
4942
1994
    "")
4943
 
      func_fatal_help "you must specify an output file"
 
1995
      $echo "$modename: you must specify an output file" 1>&2
 
1996
      $echo "$help" 1>&2
 
1997
      exit $EXIT_FAILURE
4944
1998
      ;;
4945
1999
    *.$libext) linkmode=oldlib ;;
4946
2000
    *.lo | *.$objext) linkmode=obj ;;
4948
2002
    *) linkmode=prog ;; # Anything else should be a program.
4949
2003
    esac
4950
2004
 
 
2005
    case $host in
 
2006
    *cygwin* | *mingw* | *pw32*)
 
2007
      # don't eliminate duplications in $postdeps and $predeps
 
2008
      duplicate_compiler_generated_deps=yes
 
2009
      ;;
 
2010
    *)
 
2011
      duplicate_compiler_generated_deps=$duplicate_deps
 
2012
      ;;
 
2013
    esac
4951
2014
    specialdeplibs=
4952
2015
 
4953
2016
    libs=
4954
2017
    # Find all interdependent deplibs by searching for libraries
4955
2018
    # that are linked more than once (e.g. -la -lb -la)
4956
2019
    for deplib in $deplibs; do
4957
 
      if $opt_duplicate_deps ; then
 
2020
      if test "X$duplicate_deps" = "Xyes" ; then
4958
2021
        case "$libs " in
4959
2022
        *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
4960
2023
        esac
4969
2032
      # $postdeps and mark them as special (i.e., whose duplicates are
4970
2033
      # not to be eliminated).
4971
2034
      pre_post_deps=
4972
 
      if $opt_duplicate_compiler_generated_deps; then
 
2035
      if test "X$duplicate_compiler_generated_deps" = "Xyes" ; then
4973
2036
        for pre_post_dep in $predeps $postdeps; do
4974
2037
          case "$pre_post_deps " in
4975
2038
          *" $pre_post_dep "*) specialdeplibs="$specialdeplibs $pre_post_deps" ;;
4985
2048
    newlib_search_path=
4986
2049
    need_relink=no # whether we're linking any uninstalled libtool libraries
4987
2050
    notinst_deplibs= # not-installed libtool libraries
4988
 
    notinst_path= # paths that contain not-installed libtool libraries
4989
 
 
4990
2051
    case $linkmode in
4991
2052
    lib)
4992
 
        passes="conv dlpreopen link"
 
2053
        passes="conv link"
4993
2054
        for file in $dlfiles $dlprefiles; do
4994
2055
          case $file in
4995
2056
          *.la) ;;
4996
2057
          *)
4997
 
            func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file"
 
2058
            $echo "$modename: libraries can \`-dlopen' only libtool libraries: $file" 1>&2
 
2059
            exit $EXIT_FAILURE
4998
2060
            ;;
4999
2061
          esac
5000
2062
        done
5010
2072
    *)  passes="conv"
5011
2073
        ;;
5012
2074
    esac
5013
 
 
5014
2075
    for pass in $passes; do
5015
 
      # The preopen pass in lib mode reverses $deplibs; put it back here
5016
 
      # so that -L comes before libs that need it for instance...
5017
 
      if test "$linkmode,$pass" = "lib,link"; then
5018
 
        ## FIXME: Find the place where the list is rebuilt in the wrong
5019
 
        ##        order, and fix it there properly
5020
 
        tmp_deplibs=
5021
 
        for deplib in $deplibs; do
5022
 
          tmp_deplibs="$deplib $tmp_deplibs"
5023
 
        done
5024
 
        deplibs="$tmp_deplibs"
5025
 
      fi
5026
 
 
5027
2076
      if test "$linkmode,$pass" = "lib,link" ||
5028
2077
         test "$linkmode,$pass" = "prog,scan"; then
5029
2078
        libs="$deplibs"
5033
2082
        case $pass in
5034
2083
        dlopen) libs="$dlfiles" ;;
5035
2084
        dlpreopen) libs="$dlprefiles" ;;
5036
 
        link)
5037
 
          libs="$deplibs %DEPLIBS%"
5038
 
          test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs"
5039
 
          ;;
 
2085
        link) libs="$deplibs %DEPLIBS% $dependency_libs" ;;
5040
2086
        esac
5041
2087
      fi
5042
 
      if test "$linkmode,$pass" = "lib,dlpreopen"; then
5043
 
        # Collect and forward deplibs of preopened libtool libs
5044
 
        for lib in $dlprefiles; do
5045
 
          # Ignore non-libtool-libs
5046
 
          dependency_libs=
5047
 
          case $lib in
5048
 
          *.la) func_source "$lib" ;;
5049
 
          esac
5050
 
 
5051
 
          # Collect preopened libtool deplibs, except any this library
5052
 
          # has declared as weak libs
5053
 
          for deplib in $dependency_libs; do
5054
 
            deplib_base=`$ECHO "X$deplib" | $Xsed -e "$basename"`
5055
 
            case " $weak_libs " in
5056
 
            *" $deplib_base "*) ;;
5057
 
            *) deplibs="$deplibs $deplib" ;;
5058
 
            esac
5059
 
          done
5060
 
        done
5061
 
        libs="$dlprefiles"
5062
 
      fi
5063
2088
      if test "$pass" = dlopen; then
5064
2089
        # Collect dlpreopened libraries
5065
2090
        save_deplibs="$deplibs"
5066
2091
        deplibs=
5067
2092
      fi
5068
 
 
5069
2093
      for deplib in $libs; do
5070
2094
        lib=
5071
2095
        found=no
5072
2096
        case $deplib in
5073
 
        -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads)
 
2097
        -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe)
5074
2098
          if test "$linkmode,$pass" = "prog,link"; then
5075
2099
            compile_deplibs="$deplib $compile_deplibs"
5076
2100
            finalize_deplibs="$deplib $finalize_deplibs"
5077
2101
          else
5078
2102
            compiler_flags="$compiler_flags $deplib"
5079
 
            if test "$linkmode" = lib ; then
5080
 
                case "$new_inherited_linker_flags " in
5081
 
                    *" $deplib "*) ;;
5082
 
                    * ) new_inherited_linker_flags="$new_inherited_linker_flags $deplib" ;;
5083
 
                esac
5084
 
            fi
5085
2103
          fi
5086
2104
          continue
5087
2105
          ;;
5088
2106
        -l*)
5089
2107
          if test "$linkmode" != lib && test "$linkmode" != prog; then
5090
 
            func_warning "\`-l' is ignored for archives/objects"
 
2108
            $echo "$modename: warning: \`-l' is ignored for archives/objects" 1>&2
5091
2109
            continue
5092
2110
          fi
5093
 
          func_stripname '-l' '' "$deplib"
5094
 
          name=$func_stripname_result
5095
 
          if test "$linkmode" = lib; then
5096
 
            searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path"
5097
 
          else
5098
 
            searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path"
5099
 
          fi
5100
 
          for searchdir in $searchdirs; do
 
2111
          name=`$echo "X$deplib" | $Xsed -e 's/^-l//'`
 
2112
          for searchdir in $newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path; do
5101
2113
            for search_ext in .la $std_shrext .so .a; do
5102
2114
              # Search the libtool library
5103
2115
              lib="$searchdir/lib${name}${search_ext}"
5127
2139
            if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
5128
2140
              case " $predeps $postdeps " in
5129
2141
              *" $deplib "*)
5130
 
                if func_lalib_p "$lib"; then
 
2142
                if (${SED} -e '2q' $lib |
 
2143
                    grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
5131
2144
                  library_names=
5132
2145
                  old_library=
5133
 
                  func_source "$lib"
 
2146
                  case $lib in
 
2147
                  */* | *\\*) . $lib ;;
 
2148
                  *) . ./$lib ;;
 
2149
                  esac
5134
2150
                  for l in $old_library $library_names; do
5135
2151
                    ll="$l"
5136
2152
                  done
5137
2153
                  if test "X$ll" = "X$old_library" ; then # only static version available
5138
2154
                    found=no
5139
 
                    func_dirname "$lib" "" "."
5140
 
                    ladir="$func_dirname_result"
 
2155
                    ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`
 
2156
                    test "X$ladir" = "X$lib" && ladir="."
5141
2157
                    lib=$ladir/$old_library
5142
2158
                    if test "$linkmode,$pass" = "prog,link"; then
5143
2159
                      compile_deplibs="$deplib $compile_deplibs"
5149
2165
                    continue
5150
2166
                  fi
5151
2167
                fi
5152
 
                ;;
 
2168
                ;;
5153
2169
              *) ;;
5154
2170
              esac
5155
2171
            fi
5156
2172
          fi
5157
2173
          ;; # -l
5158
 
        *.ltframework)
5159
 
          if test "$linkmode,$pass" = "prog,link"; then
5160
 
            compile_deplibs="$deplib $compile_deplibs"
5161
 
            finalize_deplibs="$deplib $finalize_deplibs"
5162
 
          else
5163
 
            deplibs="$deplib $deplibs"
5164
 
            if test "$linkmode" = lib ; then
5165
 
                case "$new_inherited_linker_flags " in
5166
 
                    *" $deplib "*) ;;
5167
 
                    * ) new_inherited_linker_flags="$new_inherited_linker_flags $deplib" ;;
5168
 
                esac
5169
 
            fi
5170
 
          fi
5171
 
          continue
5172
 
          ;;
5173
2174
        -L*)
5174
2175
          case $linkmode in
5175
2176
          lib)
5176
2177
            deplibs="$deplib $deplibs"
5177
2178
            test "$pass" = conv && continue
5178
2179
            newdependency_libs="$deplib $newdependency_libs"
5179
 
            func_stripname '-L' '' "$deplib"
5180
 
            newlib_search_path="$newlib_search_path $func_stripname_result"
 
2180
            newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
5181
2181
            ;;
5182
2182
          prog)
5183
2183
            if test "$pass" = conv; then
5190
2190
              compile_deplibs="$deplib $compile_deplibs"
5191
2191
              finalize_deplibs="$deplib $finalize_deplibs"
5192
2192
            fi
5193
 
            func_stripname '-L' '' "$deplib"
5194
 
            newlib_search_path="$newlib_search_path $func_stripname_result"
 
2193
            newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
5195
2194
            ;;
5196
2195
          *)
5197
 
            func_warning "\`-L' is ignored for archives/objects"
 
2196
            $echo "$modename: warning: \`-L' is ignored for archives/objects" 1>&2
5198
2197
            ;;
5199
2198
          esac # linkmode
5200
2199
          continue
5201
2200
          ;; # -L
5202
2201
        -R*)
5203
2202
          if test "$pass" = link; then
5204
 
            func_stripname '-R' '' "$deplib"
5205
 
            dir=$func_stripname_result
 
2203
            dir=`$echo "X$deplib" | $Xsed -e 's/^-R//'`
5206
2204
            # Make sure the xrpath contains only unique directories.
5207
2205
            case "$xrpath " in
5208
2206
            *" $dir "*) ;;
5220
2218
          fi
5221
2219
          case $linkmode in
5222
2220
          lib)
5223
 
            # Linking convenience modules into shared libraries is allowed,
5224
 
            # but linking other static libraries is non-portable.
5225
 
            case " $dlpreconveniencelibs " in
5226
 
            *" $deplib "*) ;;
5227
 
            *)
5228
 
              valid_a_lib=no
5229
 
              case $deplibs_check_method in
5230
 
                match_pattern*)
5231
 
                  set dummy $deplibs_check_method; shift
5232
 
                  match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
5233
 
                  if eval "\$ECHO \"X$deplib\"" 2>/dev/null | $Xsed -e 10q \
 
2221
            valid_a_lib=no
 
2222
            case $deplibs_check_method in
 
2223
              match_pattern*)
 
2224
                set dummy $deplibs_check_method
 
2225
                match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
 
2226
                if eval $echo \"$deplib\" 2>/dev/null \
 
2227
                    | $SED 10q \
5234
2228
                    | $EGREP "$match_pattern_regex" > /dev/null; then
5235
 
                    valid_a_lib=yes
5236
 
                  fi
5237
 
                ;;
5238
 
                pass_all)
5239
2229
                  valid_a_lib=yes
5240
 
                ;;
5241
 
              esac
5242
 
              if test "$valid_a_lib" != yes; then
5243
 
                $ECHO
5244
 
                $ECHO "*** Warning: Trying to link with static lib archive $deplib."
5245
 
                $ECHO "*** I have the capability to make that library automatically link in when"
5246
 
                $ECHO "*** you link to this library.  But I can only do this if you have a"
5247
 
                $ECHO "*** shared version of the library, which you do not appear to have"
5248
 
                $ECHO "*** because the file extensions .$libext of this argument makes me believe"
5249
 
                $ECHO "*** that it is just a static archive that I should not use here."
5250
 
              else
5251
 
                $ECHO
5252
 
                $ECHO "*** Warning: Linking the shared library $output against the"
5253
 
                $ECHO "*** static library $deplib is not portable!"
5254
 
                deplibs="$deplib $deplibs"
5255
 
              fi
5256
 
              ;;
5257
 
            esac
 
2230
                fi
 
2231
                ;;
 
2232
              pass_all)
 
2233
                valid_a_lib=yes
 
2234
                ;;
 
2235
            esac
 
2236
            if test "$valid_a_lib" != yes; then
 
2237
              $echo
 
2238
              $echo "*** Warning: Trying to link with static lib archive $deplib."
 
2239
              $echo "*** I have the capability to make that library automatically link in when"
 
2240
              $echo "*** you link to this library.  But I can only do this if you have a"
 
2241
              $echo "*** shared version of the library, which you do not appear to have"
 
2242
              $echo "*** because the file extensions .$libext of this argument makes me believe"
 
2243
              $echo "*** that it is just a static archive that I should not used here."
 
2244
            else
 
2245
              $echo
 
2246
              $echo "*** Warning: Linking the shared library $output against the"
 
2247
              $echo "*** static library $deplib is not portable!"
 
2248
              deplibs="$deplib $deplibs"
 
2249
            fi
5258
2250
            continue
5259
2251
            ;;
5260
2252
          prog)
5289
2281
          continue
5290
2282
          ;;
5291
2283
        esac # case $deplib
5292
 
 
5293
2284
        if test "$found" = yes || test -f "$lib"; then :
5294
2285
        else
5295
 
          func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'"
 
2286
          $echo "$modename: cannot find the library \`$lib' or unhandled argument \`$deplib'" 1>&2
 
2287
          exit $EXIT_FAILURE
5296
2288
        fi
5297
2289
 
5298
2290
        # Check to see that this really is a libtool archive.
5299
 
        func_lalib_unsafe_p "$lib" \
5300
 
          || func_fatal_error "\`$lib' is not a valid libtool archive"
 
2291
        if (${SED} -e '2q' $lib | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
 
2292
        else
 
2293
          $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
 
2294
          exit $EXIT_FAILURE
 
2295
        fi
5301
2296
 
5302
 
        func_dirname "$lib" "" "."
5303
 
        ladir="$func_dirname_result"
 
2297
        ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`
 
2298
        test "X$ladir" = "X$lib" && ladir="."
5304
2299
 
5305
2300
        dlname=
5306
2301
        dlopen=
5308
2303
        libdir=
5309
2304
        library_names=
5310
2305
        old_library=
5311
 
        inherited_linker_flags=
5312
2306
        # If the library was installed with an old release of libtool,
5313
2307
        # it will not redefine variables installed, or shouldnotlink
5314
2308
        installed=yes
5317
2311
 
5318
2312
 
5319
2313
        # Read the .la file
5320
 
        func_source "$lib"
 
2314
        case $lib in
 
2315
        */* | *\\*) . $lib ;;
 
2316
        *) . ./$lib ;;
 
2317
        esac
5321
2318
 
5322
 
        # Convert "-framework foo" to "foo.ltframework"
5323
 
        if test -n "$inherited_linker_flags"; then
5324
 
          tmp_inherited_linker_flags=`$ECHO "X$inherited_linker_flags" | $Xsed -e 's/-framework \([^ $]*\)/\1.ltframework/g'`
5325
 
          for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do
5326
 
            case " $new_inherited_linker_flags " in
5327
 
              *" $tmp_inherited_linker_flag "*) ;;
5328
 
              *) new_inherited_linker_flags="$new_inherited_linker_flags $tmp_inherited_linker_flag";;
5329
 
            esac
5330
 
          done
5331
 
        fi
5332
 
        dependency_libs=`$ECHO "X $dependency_libs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'`
5333
2319
        if test "$linkmode,$pass" = "lib,link" ||
5334
2320
           test "$linkmode,$pass" = "prog,scan" ||
5335
2321
           { test "$linkmode" != prog && test "$linkmode" != lib; }; then
5342
2328
          deplibs="$lib $deplibs"
5343
2329
          if test -z "$libdir"; then
5344
2330
            if test -z "$old_library"; then
5345
 
              func_fatal_error "cannot find name of link library for \`$lib'"
 
2331
              $echo "$modename: cannot find name of link library for \`$lib'" 1>&2
 
2332
              exit $EXIT_FAILURE
5346
2333
            fi
5347
2334
            # It is a libtool convenience library, so add in its objects.
5348
2335
            convenience="$convenience $ladir/$objdir/$old_library"
5350
2337
            tmp_libs=
5351
2338
            for deplib in $dependency_libs; do
5352
2339
              deplibs="$deplib $deplibs"
5353
 
              if $opt_duplicate_deps ; then
5354
 
                case "$tmp_libs " in
5355
 
                *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
5356
 
                esac
5357
 
              fi
 
2340
              if test "X$duplicate_deps" = "Xyes" ; then
 
2341
                case "$tmp_libs " in
 
2342
                *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
 
2343
                esac
 
2344
              fi
5358
2345
              tmp_libs="$tmp_libs $deplib"
5359
2346
            done
5360
2347
          elif test "$linkmode" != prog && test "$linkmode" != lib; then
5361
 
            func_fatal_error "\`$lib' is not a convenience library"
 
2348
            $echo "$modename: \`$lib' is not a convenience library" 1>&2
 
2349
            exit $EXIT_FAILURE
5362
2350
          fi
5363
2351
          continue
5364
2352
        fi # $pass = conv
5370
2358
          linklib="$l"
5371
2359
        done
5372
2360
        if test -z "$linklib"; then
5373
 
          func_fatal_error "cannot find name of link library for \`$lib'"
 
2361
          $echo "$modename: cannot find name of link library for \`$lib'" 1>&2
 
2362
          exit $EXIT_FAILURE
5374
2363
        fi
5375
2364
 
5376
2365
        # This library was specified with -dlopen.
5377
2366
        if test "$pass" = dlopen; then
5378
2367
          if test -z "$libdir"; then
5379
 
            func_fatal_error "cannot -dlopen a convenience library: \`$lib'"
 
2368
            $echo "$modename: cannot -dlopen a convenience library: \`$lib'" 1>&2
 
2369
            exit $EXIT_FAILURE
5380
2370
          fi
5381
2371
          if test -z "$dlname" ||
5382
2372
             test "$dlopen_support" != yes ||
5398
2388
        *)
5399
2389
          abs_ladir=`cd "$ladir" && pwd`
5400
2390
          if test -z "$abs_ladir"; then
5401
 
            func_warning "cannot determine absolute directory name of \`$ladir'"
5402
 
            func_warning "passing it literally to the linker, although it might fail"
 
2391
            $echo "$modename: warning: cannot determine absolute directory name of \`$ladir'" 1>&2
 
2392
            $echo "$modename: passing it literally to the linker, although it might fail" 1>&2
5403
2393
            abs_ladir="$ladir"
5404
2394
          fi
5405
2395
          ;;
5406
2396
        esac
5407
 
        func_basename "$lib"
5408
 
        laname="$func_basename_result"
 
2397
        laname=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
5409
2398
 
5410
2399
        # Find the relevant object directory and library name.
5411
2400
        if test "X$installed" = Xyes; then
5412
2401
          if test ! -f "$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then
5413
 
            func_warning "library \`$lib' was moved."
 
2402
            $echo "$modename: warning: library \`$lib' was moved." 1>&2
5414
2403
            dir="$ladir"
5415
2404
            absdir="$abs_ladir"
5416
2405
            libdir="$abs_ladir"
5432
2421
            notinst_path="$notinst_path $abs_ladir"
5433
2422
          fi
5434
2423
        fi # $installed = yes
5435
 
        func_stripname 'lib' '.la' "$laname"
5436
 
        name=$func_stripname_result
 
2424
        name=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
5437
2425
 
5438
2426
        # This library was specified with -dlpreopen.
5439
2427
        if test "$pass" = dlpreopen; then
5440
 
          if test -z "$libdir" && test "$linkmode" = prog; then
5441
 
            func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'"
 
2428
          if test -z "$libdir"; then
 
2429
            $echo "$modename: cannot -dlpreopen a convenience library: \`$lib'" 1>&2
 
2430
            exit $EXIT_FAILURE
5442
2431
          fi
5443
2432
          # Prefer using a static library (so that no silly _DYNAMIC symbols
5444
2433
          # are required to link).
5445
2434
          if test -n "$old_library"; then
5446
2435
            newdlprefiles="$newdlprefiles $dir/$old_library"
5447
 
            # Keep a list of preopened convenience libraries to check
5448
 
            # that they are being used correctly in the link pass.
5449
 
            test -z "$libdir" && \
5450
 
                dlpreconveniencelibs="$dlpreconveniencelibs $dir/$old_library"
5451
2436
          # Otherwise, use the dlname, so that lt_dlopen finds it.
5452
2437
          elif test -n "$dlname"; then
5453
2438
            newdlprefiles="$newdlprefiles $dir/$dlname"
5483
2468
          tmp_libs=
5484
2469
          for deplib in $dependency_libs; do
5485
2470
            case $deplib in
5486
 
            -L*) func_stripname '-L' '' "$deplib"
5487
 
                 newlib_search_path="$newlib_search_path $func_stripname_result"
5488
 
                 ;;
 
2471
            -L*) newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`;; ### testsuite: skip nested quoting test
5489
2472
            esac
5490
2473
            # Need to link against all dependency_libs?
5491
2474
            if test "$linkalldeplibs" = yes; then
5495
2478
              # or/and link against static libraries
5496
2479
              newdependency_libs="$deplib $newdependency_libs"
5497
2480
            fi
5498
 
            if $opt_duplicate_deps ; then
 
2481
            if test "X$duplicate_deps" = "Xyes" ; then
5499
2482
              case "$tmp_libs " in
5500
2483
              *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
5501
2484
              esac
5507
2490
 
5508
2491
        if test "$linkmode,$pass" = "prog,link"; then
5509
2492
          if test -n "$library_names" &&
5510
 
             { { test "$prefer_static_libs" = no ||
5511
 
                 test "$prefer_static_libs,$installed" = "built,yes"; } ||
5512
 
               test -z "$old_library"; }; then
 
2493
             { test "$prefer_static_libs" = no || test -z "$old_library"; }; then
5513
2494
            # We need to hardcode the library path
5514
2495
            if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then
5515
2496
              # Make sure the rpath contains only unique directories.
5516
 
              case "$temp_rpath:" in
5517
 
              *"$absdir:"*) ;;
5518
 
              *) temp_rpath="$temp_rpath$absdir:" ;;
 
2497
              case "$temp_rpath " in
 
2498
              *" $dir "*) ;;
 
2499
              *" $absdir "*) ;;
 
2500
              *) temp_rpath="$temp_rpath $absdir" ;;
5519
2501
              esac
5520
2502
            fi
5521
2503
 
5553
2535
 
5554
2536
        link_static=no # Whether the deplib will be linked statically
5555
2537
        use_static_libs=$prefer_static_libs
5556
 
        if test "$use_static_libs" = built && test "$installed" = yes; then
 
2538
        if test "$use_static_libs" = built && test "$installed" = yes ; then
5557
2539
          use_static_libs=no
5558
2540
        fi
5559
2541
        if test -n "$library_names" &&
5560
2542
           { test "$use_static_libs" = no || test -z "$old_library"; }; then
5561
 
          case $host in
5562
 
          *cygwin* | *mingw* | *cegcc*)
5563
 
              # No point in relinking DLLs because paths are not encoded
5564
 
              notinst_deplibs="$notinst_deplibs $lib"
5565
 
              need_relink=no
5566
 
            ;;
5567
 
          *)
5568
 
            if test "$installed" = no; then
5569
 
              notinst_deplibs="$notinst_deplibs $lib"
5570
 
              need_relink=yes
5571
 
            fi
5572
 
            ;;
5573
 
          esac
 
2543
          if test "$installed" = no; then
 
2544
            notinst_deplibs="$notinst_deplibs $lib"
 
2545
            need_relink=yes
 
2546
          fi
5574
2547
          # This is a shared library
5575
2548
 
5576
 
          # Warn about portability, can't link against -module's on some
5577
 
          # systems (darwin).  Don't bleat about dlopened modules though!
5578
 
          dlopenmodule=""
5579
 
          for dlpremoduletest in $dlprefiles; do
5580
 
            if test "X$dlpremoduletest" = "X$lib"; then
5581
 
              dlopenmodule="$dlpremoduletest"
5582
 
              break
5583
 
            fi
5584
 
          done
5585
 
          if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then
5586
 
            $ECHO
 
2549
          # Warn about portability, can't link against -module's on
 
2550
          # some systems (darwin)
 
2551
          if test "$shouldnotlink" = yes && test "$pass" = link ; then
 
2552
            $echo
5587
2553
            if test "$linkmode" = prog; then
5588
 
              $ECHO "*** Warning: Linking the executable $output against the loadable module"
 
2554
              $echo "*** Warning: Linking the executable $output against the loadable module"
5589
2555
            else
5590
 
              $ECHO "*** Warning: Linking the shared library $output against the loadable module"
 
2556
              $echo "*** Warning: Linking the shared library $output against the loadable module"
5591
2557
            fi
5592
 
            $ECHO "*** $linklib is not portable!"
 
2558
            $echo "*** $linklib is not portable!"
5593
2559
          fi
5594
2560
          if test "$linkmode" = lib &&
5595
2561
             test "$hardcode_into_libs" = yes; then
5619
2585
          if test -n "$old_archive_from_expsyms_cmds"; then
5620
2586
            # figure out the soname
5621
2587
            set dummy $library_names
5622
 
            shift
5623
 
            realname="$1"
5624
 
            shift
5625
 
            libname=`eval "\\$ECHO \"$libname_spec\""`
 
2588
            realname="$2"
 
2589
            shift; shift
 
2590
            libname=`eval \\$echo \"$libname_spec\"`
5626
2591
            # use dlname if we got it. it's perfectly good, no?
5627
2592
            if test -n "$dlname"; then
5628
2593
              soname="$dlname"
5629
2594
            elif test -n "$soname_spec"; then
5630
2595
              # bleh windows
5631
2596
              case $host in
5632
 
              *cygwin* | mingw* | *cegcc*)
5633
 
                func_arith $current - $age
5634
 
                major=$func_arith_result
 
2597
              *cygwin* | mingw*)
 
2598
                major=`expr $current - $age`
5635
2599
                versuffix="-$major"
5636
2600
                ;;
5637
2601
              esac
5642
2606
 
5643
2607
            # Make a new name for the extract_expsyms_cmds to use
5644
2608
            soroot="$soname"
5645
 
            func_basename "$soroot"
5646
 
            soname="$func_basename_result"
5647
 
            func_stripname 'lib' '.dll' "$soname"
5648
 
            newlib=libimp-$func_stripname_result.a
 
2609
            soname=`$echo $soroot | ${SED} -e 's/^.*\///'`
 
2610
            newlib="libimp-`$echo $soname | ${SED} 's/^lib//;s/\.dll$//'`.a"
5649
2611
 
5650
2612
            # If the library has no export list, then create one now
5651
2613
            if test -f "$output_objdir/$soname-def"; then :
5652
2614
            else
5653
 
              func_verbose "extracting exported symbol list from \`$soname'"
5654
 
              func_execute_cmds "$extract_expsyms_cmds" 'exit $?'
 
2615
              $show "extracting exported symbol list from \`$soname'"
 
2616
              save_ifs="$IFS"; IFS='~'
 
2617
              cmds=$extract_expsyms_cmds
 
2618
              for cmd in $cmds; do
 
2619
                IFS="$save_ifs"
 
2620
                eval cmd=\"$cmd\"
 
2621
                $show "$cmd"
 
2622
                $run eval "$cmd" || exit $?
 
2623
              done
 
2624
              IFS="$save_ifs"
5655
2625
            fi
5656
2626
 
5657
2627
            # Create $newlib
5658
2628
            if test -f "$output_objdir/$newlib"; then :; else
5659
 
              func_verbose "generating import library for \`$soname'"
5660
 
              func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?'
 
2629
              $show "generating import library for \`$soname'"
 
2630
              save_ifs="$IFS"; IFS='~'
 
2631
              cmds=$old_archive_from_expsyms_cmds
 
2632
              for cmd in $cmds; do
 
2633
                IFS="$save_ifs"
 
2634
                eval cmd=\"$cmd\"
 
2635
                $show "$cmd"
 
2636
                $run eval "$cmd" || exit $?
 
2637
              done
 
2638
              IFS="$save_ifs"
5661
2639
            fi
5662
2640
            # make sure the library variables are pointing to the new library
5663
2641
            dir=$output_objdir
5679
2657
                  *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \
5680
2658
                    *-*-unixware7*) add_dir="-L$dir" ;;
5681
2659
                  *-*-darwin* )
5682
 
                    # if the lib is a (non-dlopened) module then we can not
5683
 
                    # link against it, someone is ignoring the earlier warnings
 
2660
                    # if the lib is a module then we can not link against
 
2661
                    # it, someone is ignoring the new warnings I added
5684
2662
                    if /usr/bin/file -L $add 2> /dev/null |
5685
 
                         $GREP ": [^:]* bundle" >/dev/null ; then
5686
 
                      if test "X$dlopenmodule" != "X$lib"; then
5687
 
                        $ECHO "*** Warning: lib $linklib is a module, not a shared library"
5688
 
                        if test -z "$old_library" ; then
5689
 
                          $ECHO
5690
 
                          $ECHO "*** And there doesn't seem to be a static archive available"
5691
 
                          $ECHO "*** The link will probably fail, sorry"
5692
 
                        else
5693
 
                          add="$dir/$old_library"
5694
 
                        fi
5695
 
                      elif test -n "$old_library"; then
5696
 
                        add="$dir/$old_library"
 
2663
                      $EGREP ": [^:]* bundle" >/dev/null ; then
 
2664
                      $echo "** Warning, lib $linklib is a module, not a shared library"
 
2665
                      if test -z "$old_library" ; then
 
2666
                        $echo
 
2667
                        $echo "** And there doesn't seem to be a static archive available"
 
2668
                        $echo "** The link will probably fail, sorry"
 
2669
                      else
 
2670
                        add="$dir/$old_library"
5697
2671
                      fi
5698
2672
                    fi
5699
2673
                esac
5711
2685
              fi
5712
2686
              ;;
5713
2687
            relink)
5714
 
              if test "$hardcode_direct" = yes &&
5715
 
                 test "$hardcode_direct_absolute" = no; then
 
2688
              if test "$hardcode_direct" = yes; then
5716
2689
                add="$dir/$linklib"
5717
2690
              elif test "$hardcode_minus_L" = yes; then
5718
2691
                add_dir="-L$dir"
5736
2709
            esac
5737
2710
 
5738
2711
            if test "$lib_linked" != yes; then
5739
 
              func_fatal_configuration "unsupported hardcode properties"
 
2712
              $echo "$modename: configuration error: unsupported hardcode properties"
 
2713
              exit $EXIT_FAILURE
5740
2714
            fi
5741
2715
 
5742
2716
            if test -n "$add_shlibpath"; then
5751
2725
            else
5752
2726
              test -n "$add_dir" && deplibs="$add_dir $deplibs"
5753
2727
              test -n "$add" && deplibs="$add $deplibs"
5754
 
              if test "$hardcode_direct" != yes &&
5755
 
                 test "$hardcode_minus_L" != yes &&
 
2728
              if test "$hardcode_direct" != yes && \
 
2729
                 test "$hardcode_minus_L" != yes && \
5756
2730
                 test "$hardcode_shlibpath_var" = yes; then
5757
2731
                case :$finalize_shlibpath: in
5758
2732
                *":$libdir:"*) ;;
5767
2741
            add_dir=
5768
2742
            add=
5769
2743
            # Finalize command for both is simple: just hardcode it.
5770
 
            if test "$hardcode_direct" = yes &&
5771
 
               test "$hardcode_direct_absolute" = no; then
 
2744
            if test "$hardcode_direct" = yes; then
5772
2745
              add="$libdir/$linklib"
5773
2746
            elif test "$hardcode_minus_L" = yes; then
5774
2747
              add_dir="-L$libdir"
5782
2755
            elif test "$hardcode_automatic" = yes; then
5783
2756
              if test -n "$inst_prefix_dir" &&
5784
2757
                 test -f "$inst_prefix_dir$libdir/$linklib" ; then
5785
 
                add="$inst_prefix_dir$libdir/$linklib"
 
2758
                add="$inst_prefix_dir$libdir/$linklib"
5786
2759
              else
5787
 
                add="$libdir/$linklib"
 
2760
                add="$libdir/$linklib"
5788
2761
              fi
5789
2762
            else
5790
2763
              # We cannot seem to hardcode it, guess we'll fake it.
5828
2801
 
5829
2802
            # Just print a warning and add the library to dependency_libs so
5830
2803
            # that the program can be linked against the static library.
5831
 
            $ECHO
5832
 
            $ECHO "*** Warning: This system can not link to static lib archive $lib."
5833
 
            $ECHO "*** I have the capability to make that library automatically link in when"
5834
 
            $ECHO "*** you link to this library.  But I can only do this if you have a"
5835
 
            $ECHO "*** shared version of the library, which you do not appear to have."
 
2804
            $echo
 
2805
            $echo "*** Warning: This system can not link to static lib archive $lib."
 
2806
            $echo "*** I have the capability to make that library automatically link in when"
 
2807
            $echo "*** you link to this library.  But I can only do this if you have a"
 
2808
            $echo "*** shared version of the library, which you do not appear to have."
5836
2809
            if test "$module" = yes; then
5837
 
              $ECHO "*** But as you try to build a module library, libtool will still create "
5838
 
              $ECHO "*** a static module, that should work as long as the dlopening application"
5839
 
              $ECHO "*** is linked with the -dlopen flag to resolve symbols at runtime."
 
2810
              $echo "*** But as you try to build a module library, libtool will still create "
 
2811
              $echo "*** a static module, that should work as long as the dlopening application"
 
2812
              $echo "*** is linked with the -dlopen flag to resolve symbols at runtime."
5840
2813
              if test -z "$global_symbol_pipe"; then
5841
 
                $ECHO
5842
 
                $ECHO "*** However, this would only work if libtool was able to extract symbol"
5843
 
                $ECHO "*** lists from a program, using \`nm' or equivalent, but libtool could"
5844
 
                $ECHO "*** not find such a program.  So, this module is probably useless."
5845
 
                $ECHO "*** \`nm' from GNU binutils and a full rebuild may help."
 
2814
                $echo
 
2815
                $echo "*** However, this would only work if libtool was able to extract symbol"
 
2816
                $echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
 
2817
                $echo "*** not find such a program.  So, this module is probably useless."
 
2818
                $echo "*** \`nm' from GNU binutils and a full rebuild may help."
5846
2819
              fi
5847
2820
              if test "$build_old_libs" = no; then
5848
2821
                build_libtool_libs=module
5866
2839
            temp_deplibs=
5867
2840
            for libdir in $dependency_libs; do
5868
2841
              case $libdir in
5869
 
              -R*) func_stripname '-R' '' "$libdir"
5870
 
                   temp_xrpath=$func_stripname_result
 
2842
              -R*) temp_xrpath=`$echo "X$libdir" | $Xsed -e 's/^-R//'`
5871
2843
                   case " $xrpath " in
5872
2844
                   *" $temp_xrpath "*) ;;
5873
2845
                   *) xrpath="$xrpath $temp_xrpath";;
5885
2857
          tmp_libs=
5886
2858
          for deplib in $dependency_libs; do
5887
2859
            newdependency_libs="$deplib $newdependency_libs"
5888
 
            if $opt_duplicate_deps ; then
 
2860
            if test "X$duplicate_deps" = "Xyes" ; then
5889
2861
              case "$tmp_libs " in
5890
2862
              *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
5891
2863
              esac
5896
2868
          if test "$link_all_deplibs" != no; then
5897
2869
            # Add the search paths of all dependency libraries
5898
2870
            for deplib in $dependency_libs; do
5899
 
              path=
5900
2871
              case $deplib in
5901
2872
              -L*) path="$deplib" ;;
5902
2873
              *.la)
5903
 
                func_dirname "$deplib" "" "."
5904
 
                dir="$func_dirname_result"
 
2874
                dir=`$echo "X$deplib" | $Xsed -e 's%/[^/]*$%%'`
 
2875
                test "X$dir" = "X$deplib" && dir="."
5905
2876
                # We need an absolute path.
5906
2877
                case $dir in
5907
2878
                [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;;
5908
2879
                *)
5909
2880
                  absdir=`cd "$dir" && pwd`
5910
2881
                  if test -z "$absdir"; then
5911
 
                    func_warning "cannot determine absolute directory name of \`$dir'"
 
2882
                    $echo "$modename: warning: cannot determine absolute directory name of \`$dir'" 1>&2
5912
2883
                    absdir="$dir"
5913
2884
                  fi
5914
2885
                  ;;
5915
2886
                esac
5916
 
                if $GREP "^installed=no" $deplib > /dev/null; then
 
2887
                if grep "^installed=no" $deplib > /dev/null; then
 
2888
                  path="$absdir/$objdir"
 
2889
                else
 
2890
                  eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
 
2891
                  if test -z "$libdir"; then
 
2892
                    $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2
 
2893
                    exit $EXIT_FAILURE
 
2894
                  fi
 
2895
                  if test "$absdir" != "$libdir"; then
 
2896
                    $echo "$modename: warning: \`$deplib' seems to be moved" 1>&2
 
2897
                  fi
 
2898
                  path="$absdir"
 
2899
                fi
 
2900
                depdepl=
5917
2901
                case $host in
5918
2902
                *-*-darwin*)
5919
 
                  depdepl=
 
2903
                  # we do not want to link against static libs,
 
2904
                  # but need to link against shared
5920
2905
                  eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib`
5921
2906
                  if test -n "$deplibrary_names" ; then
5922
2907
                    for tmp in $deplibrary_names ; do
5923
2908
                      depdepl=$tmp
5924
2909
                    done
5925
 
                    if test -f "$absdir/$objdir/$depdepl" ; then
5926
 
                      depdepl="$absdir/$objdir/$depdepl"
5927
 
                      darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'`
5928
 
                      if test -z "$darwin_install_name"; then
5929
 
                          darwin_install_name=`${OTOOL64} -L $depdepl  | awk '{if (NR == 2) {print $1;exit}}'`
5930
 
                      fi
5931
 
                      compiler_flags="$compiler_flags ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}"
5932
 
                      linker_flags="$linker_flags -dylib_file ${darwin_install_name}:${depdepl}"
5933
 
                      path=
 
2910
                    if test -f "$path/$depdepl" ; then
 
2911
                      depdepl="$path/$depdepl"
5934
2912
                    fi
 
2913
                    # do not add paths which are already there
 
2914
                    case " $newlib_search_path " in
 
2915
                    *" $path "*) ;;
 
2916
                    *) newlib_search_path="$newlib_search_path $path";;
 
2917
                    esac
5935
2918
                  fi
 
2919
                  path=""
5936
2920
                  ;;
5937
2921
                *)
5938
 
                  path="-L$absdir/$objdir"
5939
 
                  ;;
5940
 
                esac
5941
 
                else
5942
 
                  eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
5943
 
                  test -z "$libdir" && \
5944
 
                    func_fatal_error "\`$deplib' is not a valid libtool archive"
5945
 
                  test "$absdir" != "$libdir" && \
5946
 
                    func_warning "\`$deplib' seems to be moved"
5947
 
 
5948
 
                  path="-L$absdir"
5949
 
                fi
5950
 
                ;;
 
2922
                  path="-L$path"
 
2923
                  ;;
 
2924
                esac
 
2925
                ;;
 
2926
              -l*)
 
2927
                case $host in
 
2928
                *-*-darwin*)
 
2929
                  # Again, we only want to link against shared libraries
 
2930
                  eval tmp_libs=`$echo "X$deplib" | $Xsed -e "s,^\-l,,"`
 
2931
                  for tmp in $newlib_search_path ; do
 
2932
                    if test -f "$tmp/lib$tmp_libs.dylib" ; then
 
2933
                      eval depdepl="$tmp/lib$tmp_libs.dylib"
 
2934
                      break
 
2935
                    fi
 
2936
                  done
 
2937
                  path=""
 
2938
                  ;;
 
2939
                *) continue ;;
 
2940
                esac
 
2941
                ;;
 
2942
              *) continue ;;
5951
2943
              esac
5952
2944
              case " $deplibs " in
5953
2945
              *" $path "*) ;;
5954
2946
              *) deplibs="$path $deplibs" ;;
5955
2947
              esac
 
2948
              case " $deplibs " in
 
2949
              *" $depdepl "*) ;;
 
2950
              *) deplibs="$depdepl $deplibs" ;;
 
2951
              esac
5956
2952
            done
5957
2953
          fi # link_all_deplibs != no
5958
2954
        fi # linkmode = lib
5959
2955
      done # for deplib in $libs
5960
 
      if test "$pass" = link; then
5961
 
        if test "$linkmode" = "prog"; then
5962
 
          compile_deplibs="$new_inherited_linker_flags $compile_deplibs"
5963
 
          finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs"
5964
 
        else
5965
 
          compiler_flags="$compiler_flags "`$ECHO "X $new_inherited_linker_flags" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'`
5966
 
        fi
5967
 
      fi
5968
2956
      dependency_libs="$newdependency_libs"
5969
2957
      if test "$pass" = dlpreopen; then
5970
2958
        # Link the dlpreopened libraries before other libraries
6063
3051
    done # for pass
6064
3052
    if test "$linkmode" = prog; then
6065
3053
      dlfiles="$newdlfiles"
6066
 
    fi
6067
 
    if test "$linkmode" = prog || test "$linkmode" = lib; then
6068
3054
      dlprefiles="$newdlprefiles"
6069
3055
    fi
6070
3056
 
6071
3057
    case $linkmode in
6072
3058
    oldlib)
 
3059
      if test -n "$deplibs"; then
 
3060
        $echo "$modename: warning: \`-l' and \`-L' are ignored for archives" 1>&2
 
3061
      fi
 
3062
 
6073
3063
      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
6074
 
        func_warning "\`-dlopen' is ignored for archives"
6075
 
      fi
6076
 
 
6077
 
      case " $deplibs" in
6078
 
      *\ -l* | *\ -L*)
6079
 
        func_warning "\`-l' and \`-L' are ignored for archives" ;;
6080
 
      esac
6081
 
 
6082
 
      test -n "$rpath" && \
6083
 
        func_warning "\`-rpath' is ignored for archives"
6084
 
 
6085
 
      test -n "$xrpath" && \
6086
 
        func_warning "\`-R' is ignored for archives"
6087
 
 
6088
 
      test -n "$vinfo" && \
6089
 
        func_warning "\`-version-info/-version-number' is ignored for archives"
6090
 
 
6091
 
      test -n "$release" && \
6092
 
        func_warning "\`-release' is ignored for archives"
6093
 
 
6094
 
      test -n "$export_symbols$export_symbols_regex" && \
6095
 
        func_warning "\`-export-symbols' is ignored for archives"
 
3064
        $echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2
 
3065
      fi
 
3066
 
 
3067
      if test -n "$rpath"; then
 
3068
        $echo "$modename: warning: \`-rpath' is ignored for archives" 1>&2
 
3069
      fi
 
3070
 
 
3071
      if test -n "$xrpath"; then
 
3072
        $echo "$modename: warning: \`-R' is ignored for archives" 1>&2
 
3073
      fi
 
3074
 
 
3075
      if test -n "$vinfo"; then
 
3076
        $echo "$modename: warning: \`-version-info/-version-number' is ignored for archives" 1>&2
 
3077
      fi
 
3078
 
 
3079
      if test -n "$release"; then
 
3080
        $echo "$modename: warning: \`-release' is ignored for archives" 1>&2
 
3081
      fi
 
3082
 
 
3083
      if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
 
3084
        $echo "$modename: warning: \`-export-symbols' is ignored for archives" 1>&2
 
3085
      fi
6096
3086
 
6097
3087
      # Now set the variables for building old libraries.
6098
3088
      build_libtool_libs=no
6104
3094
      # Make sure we only generate libraries of the form `libNAME.la'.
6105
3095
      case $outputname in
6106
3096
      lib*)
6107
 
        func_stripname 'lib' '.la' "$outputname"
6108
 
        name=$func_stripname_result
 
3097
        name=`$echo "X$outputname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
6109
3098
        eval shared_ext=\"$shrext_cmds\"
6110
3099
        eval libname=\"$libname_spec\"
6111
3100
        ;;
6112
3101
      *)
6113
 
        test "$module" = no && \
6114
 
          func_fatal_help "libtool library \`$output' must begin with \`lib'"
6115
 
 
 
3102
        if test "$module" = no; then
 
3103
          $echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2
 
3104
          $echo "$help" 1>&2
 
3105
          exit $EXIT_FAILURE
 
3106
        fi
6116
3107
        if test "$need_lib_prefix" != no; then
6117
3108
          # Add the "lib" prefix for modules if required
6118
 
          func_stripname '' '.la' "$outputname"
6119
 
          name=$func_stripname_result
 
3109
          name=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
6120
3110
          eval shared_ext=\"$shrext_cmds\"
6121
3111
          eval libname=\"$libname_spec\"
6122
3112
        else
6123
 
          func_stripname '' '.la' "$outputname"
6124
 
          libname=$func_stripname_result
 
3113
          libname=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
6125
3114
        fi
6126
3115
        ;;
6127
3116
      esac
6128
3117
 
6129
3118
      if test -n "$objs"; then
6130
3119
        if test "$deplibs_check_method" != pass_all; then
6131
 
          func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs"
 
3120
          $echo "$modename: cannot build libtool library \`$output' from non-libtool objects on this host:$objs" 2>&1
 
3121
          exit $EXIT_FAILURE
6132
3122
        else
6133
 
          $ECHO
6134
 
          $ECHO "*** Warning: Linking the shared library $output against the non-libtool"
6135
 
          $ECHO "*** objects $objs is not portable!"
 
3123
          $echo
 
3124
          $echo "*** Warning: Linking the shared library $output against the non-libtool"
 
3125
          $echo "*** objects $objs is not portable!"
6136
3126
          libobjs="$libobjs $objs"
6137
3127
        fi
6138
3128
      fi
6139
3129
 
6140
 
      test "$dlself" != no && \
6141
 
        func_warning "\`-dlopen self' is ignored for libtool libraries"
 
3130
      if test "$dlself" != no; then
 
3131
        $echo "$modename: warning: \`-dlopen self' is ignored for libtool libraries" 1>&2
 
3132
      fi
6142
3133
 
6143
3134
      set dummy $rpath
6144
 
      shift
6145
 
      test "$#" -gt 1 && \
6146
 
        func_warning "ignoring multiple \`-rpath's for a libtool library"
6147
 
 
6148
 
      install_libdir="$1"
 
3135
      if test "$#" -gt 2; then
 
3136
        $echo "$modename: warning: ignoring multiple \`-rpath's for a libtool library" 1>&2
 
3137
      fi
 
3138
      install_libdir="$2"
6149
3139
 
6150
3140
      oldlibs=
6151
3141
      if test -z "$rpath"; then
6159
3149
          build_old_libs=yes
6160
3150
        fi
6161
3151
 
6162
 
        test -n "$vinfo" && \
6163
 
          func_warning "\`-version-info/-version-number' is ignored for convenience libraries"
 
3152
        if test -n "$vinfo"; then
 
3153
          $echo "$modename: warning: \`-version-info/-version-number' is ignored for convenience libraries" 1>&2
 
3154
        fi
6164
3155
 
6165
 
        test -n "$release" && \
6166
 
          func_warning "\`-release' is ignored for convenience libraries"
 
3156
        if test -n "$release"; then
 
3157
          $echo "$modename: warning: \`-release' is ignored for convenience libraries" 1>&2
 
3158
        fi
6167
3159
      else
6168
3160
 
6169
3161
        # Parse the version information argument.
6170
3162
        save_ifs="$IFS"; IFS=':'
6171
3163
        set dummy $vinfo 0 0 0
6172
 
        shift
6173
3164
        IFS="$save_ifs"
6174
3165
 
6175
 
        test -n "$7" && \
6176
 
          func_fatal_help "too many parameters to \`-version-info'"
 
3166
        if test -n "$8"; then
 
3167
          $echo "$modename: too many parameters to \`-version-info'" 1>&2
 
3168
          $echo "$help" 1>&2
 
3169
          exit $EXIT_FAILURE
 
3170
        fi
6177
3171
 
6178
3172
        # convert absolute version numbers to libtool ages
6179
3173
        # this retains compatibility with .la files and attempts
6181
3175
 
6182
3176
        case $vinfo_number in
6183
3177
        yes)
6184
 
          number_major="$1"
6185
 
          number_minor="$2"
6186
 
          number_revision="$3"
 
3178
          number_major="$2"
 
3179
          number_minor="$3"
 
3180
          number_revision="$4"
6187
3181
          #
6188
3182
          # There are really only two kinds -- those that
6189
3183
          # use the current revision as the major version
6192
3186
          # which has an extra 1 added just for fun
6193
3187
          #
6194
3188
          case $version_type in
6195
 
          darwin|linux|osf|windows|none)
6196
 
            func_arith $number_major + $number_minor
6197
 
            current=$func_arith_result
 
3189
          darwin|linux|osf|windows)
 
3190
            current=`expr $number_major + $number_minor`
6198
3191
            age="$number_minor"
6199
3192
            revision="$number_revision"
6200
3193
            ;;
6204
3197
            age="0"
6205
3198
            ;;
6206
3199
          irix|nonstopux)
6207
 
            func_arith $number_major + $number_minor
6208
 
            current=$func_arith_result
 
3200
            current=`expr $number_major + $number_minor - 1`
6209
3201
            age="$number_minor"
6210
3202
            revision="$number_minor"
6211
 
            lt_irix_increment=no
6212
 
            ;;
6213
 
          *)
6214
 
            func_fatal_configuration "$modename: unknown library version type \`$version_type'"
6215
3203
            ;;
6216
3204
          esac
6217
3205
          ;;
6218
3206
        no)
6219
 
          current="$1"
6220
 
          revision="$2"
6221
 
          age="$3"
 
3207
          current="$2"
 
3208
          revision="$3"
 
3209
          age="$4"
6222
3210
          ;;
6223
3211
        esac
6224
3212
 
6226
3214
        case $current in
6227
3215
        0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;
6228
3216
        *)
6229
 
          func_error "CURRENT \`$current' must be a nonnegative integer"
6230
 
          func_fatal_error "\`$vinfo' is not valid version information"
 
3217
          $echo "$modename: CURRENT \`$current' must be a nonnegative integer" 1>&2
 
3218
          $echo "$modename: \`$vinfo' is not valid version information" 1>&2
 
3219
          exit $EXIT_FAILURE
6231
3220
          ;;
6232
3221
        esac
6233
3222
 
6234
3223
        case $revision in
6235
3224
        0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;
6236
3225
        *)
6237
 
          func_error "REVISION \`$revision' must be a nonnegative integer"
6238
 
          func_fatal_error "\`$vinfo' is not valid version information"
 
3226
          $echo "$modename: REVISION \`$revision' must be a nonnegative integer" 1>&2
 
3227
          $echo "$modename: \`$vinfo' is not valid version information" 1>&2
 
3228
          exit $EXIT_FAILURE
6239
3229
          ;;
6240
3230
        esac
6241
3231
 
6242
3232
        case $age in
6243
3233
        0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;
6244
3234
        *)
6245
 
          func_error "AGE \`$age' must be a nonnegative integer"
6246
 
          func_fatal_error "\`$vinfo' is not valid version information"
 
3235
          $echo "$modename: AGE \`$age' must be a nonnegative integer" 1>&2
 
3236
          $echo "$modename: \`$vinfo' is not valid version information" 1>&2
 
3237
          exit $EXIT_FAILURE
6247
3238
          ;;
6248
3239
        esac
6249
3240
 
6250
3241
        if test "$age" -gt "$current"; then
6251
 
          func_error "AGE \`$age' is greater than the current interface number \`$current'"
6252
 
          func_fatal_error "\`$vinfo' is not valid version information"
 
3242
          $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2
 
3243
          $echo "$modename: \`$vinfo' is not valid version information" 1>&2
 
3244
          exit $EXIT_FAILURE
6253
3245
        fi
6254
3246
 
6255
3247
        # Calculate the version variables.
6262
3254
        darwin)
6263
3255
          # Like Linux, but with the current version available in
6264
3256
          # verstring for coding it into the library header
6265
 
          func_arith $current - $age
6266
 
          major=.$func_arith_result
 
3257
          major=.`expr $current - $age`
6267
3258
          versuffix="$major.$age.$revision"
6268
3259
          # Darwin ld doesn't like 0 for these options...
6269
 
          func_arith $current + 1
6270
 
          minor_current=$func_arith_result
6271
 
          xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision"
6272
 
          verstring="-compatibility_version $minor_current -current_version $minor_current.$revision"
 
3260
          minor_current=`expr $current + 1`
 
3261
          verstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision"
6273
3262
          ;;
6274
3263
 
6275
3264
        freebsd-aout)
6279
3268
 
6280
3269
        freebsd-elf)
6281
3270
          major=".$current"
6282
 
          versuffix=".$current"
 
3271
          versuffix=".$current";
6283
3272
          ;;
6284
3273
 
6285
3274
        irix | nonstopux)
6286
 
          if test "X$lt_irix_increment" = "Xno"; then
6287
 
            func_arith $current - $age
6288
 
          else
6289
 
            func_arith $current - $age + 1
6290
 
          fi
6291
 
          major=$func_arith_result
 
3275
          major=`expr $current - $age + 1`
6292
3276
 
6293
3277
          case $version_type in
6294
3278
            nonstopux) verstring_prefix=nonstopux ;;
6299
3283
          # Add in all the interfaces that we are compatible with.
6300
3284
          loop=$revision
6301
3285
          while test "$loop" -ne 0; do
6302
 
            func_arith $revision - $loop
6303
 
            iface=$func_arith_result
6304
 
            func_arith $loop - 1
6305
 
            loop=$func_arith_result
 
3286
            iface=`expr $revision - $loop`
 
3287
            loop=`expr $loop - 1`
6306
3288
            verstring="$verstring_prefix$major.$iface:$verstring"
6307
3289
          done
6308
3290
 
6312
3294
          ;;
6313
3295
 
6314
3296
        linux)
6315
 
          func_arith $current - $age
6316
 
          major=.$func_arith_result
 
3297
          major=.`expr $current - $age`
6317
3298
          versuffix="$major.$age.$revision"
6318
3299
          ;;
6319
3300
 
6320
3301
        osf)
6321
 
          func_arith $current - $age
6322
 
          major=.$func_arith_result
 
3302
          major=.`expr $current - $age`
6323
3303
          versuffix=".$current.$age.$revision"
6324
3304
          verstring="$current.$age.$revision"
6325
3305
 
6326
3306
          # Add in all the interfaces that we are compatible with.
6327
3307
          loop=$age
6328
3308
          while test "$loop" -ne 0; do
6329
 
            func_arith $current - $loop
6330
 
            iface=$func_arith_result
6331
 
            func_arith $loop - 1
6332
 
            loop=$func_arith_result
 
3309
            iface=`expr $current - $loop`
 
3310
            loop=`expr $loop - 1`
6333
3311
            verstring="$verstring:${iface}.0"
6334
3312
          done
6335
3313
 
6337
3315
          verstring="$verstring:${current}.0"
6338
3316
          ;;
6339
3317
 
6340
 
        qnx)
6341
 
          major=".$current"
6342
 
          versuffix=".$current"
6343
 
          ;;
6344
 
 
6345
3318
        sunos)
6346
3319
          major=".$current"
6347
3320
          versuffix=".$current.$revision"
6350
3323
        windows)
6351
3324
          # Use '-' rather than '.', since we only want one
6352
3325
          # extension on DOS 8.3 filesystems.
6353
 
          func_arith $current - $age
6354
 
          major=$func_arith_result
 
3326
          major=`expr $current - $age`
6355
3327
          versuffix="-$major"
6356
3328
          ;;
6357
3329
 
6358
3330
        *)
6359
 
          func_fatal_configuration "unknown library version type \`$version_type'"
 
3331
          $echo "$modename: unknown library version type \`$version_type'" 1>&2
 
3332
          $echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2
 
3333
          exit $EXIT_FAILURE
6360
3334
          ;;
6361
3335
        esac
6362
3336
 
6390
3364
        # Check to see if the archive will have undefined symbols.
6391
3365
        if test "$allow_undefined" = yes; then
6392
3366
          if test "$allow_undefined_flag" = unsupported; then
6393
 
            func_warning "undefined symbols not allowed in $host shared libraries"
 
3367
            $echo "$modename: warning: undefined symbols not allowed in $host shared libraries" 1>&2
6394
3368
            build_libtool_libs=no
6395
3369
            build_old_libs=yes
6396
3370
          fi
6398
3372
          # Don't allow undefined symbols.
6399
3373
          allow_undefined_flag="$no_undefined_flag"
6400
3374
        fi
6401
 
 
6402
3375
      fi
6403
3376
 
6404
 
      func_generate_dlsyms "$libname" "$libname" "yes"
6405
 
      libobjs="$libobjs $symfileobj"
6406
 
      test "X$libobjs" = "X " && libobjs=
6407
 
 
6408
3377
      if test "$mode" != relink; then
6409
3378
        # Remove our outputs, but don't remove object files since they
6410
3379
        # may have been created when compiling PIC objects.
6411
3380
        removelist=
6412
 
        tempremovelist=`$ECHO "$output_objdir/*"`
 
3381
        tempremovelist=`$echo "$output_objdir/*"`
6413
3382
        for p in $tempremovelist; do
6414
3383
          case $p in
6415
 
            *.$objext | *.gcno)
 
3384
            *.$objext)
6416
3385
               ;;
6417
3386
            $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*)
6418
3387
               if test "X$precious_files_regex" != "X"; then
6419
 
                 if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1
6420
 
                 then
 
3388
                 if echo $p | $EGREP -e "$precious_files_regex" >/dev/null 2>&1
 
3389
                 then
6421
3390
                   continue
6422
3391
                 fi
6423
3392
               fi
6426
3395
            *) ;;
6427
3396
          esac
6428
3397
        done
6429
 
        test -n "$removelist" && \
6430
 
          func_show_eval "${RM}r \$removelist"
 
3398
        if test -n "$removelist"; then
 
3399
          $show "${rm}r $removelist"
 
3400
          $run ${rm}r $removelist
 
3401
        fi
6431
3402
      fi
6432
3403
 
6433
3404
      # Now set the variables for building old libraries.
6435
3406
        oldlibs="$oldlibs $output_objdir/$libname.$libext"
6436
3407
 
6437
3408
        # Transform .lo files to .o files.
6438
 
        oldobjs="$objs "`$ECHO "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP`
 
3409
        oldobjs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP`
6439
3410
      fi
6440
3411
 
6441
3412
      # Eliminate all temporary directories.
6442
 
      #for path in $notinst_path; do
6443
 
      # lib_search_path=`$ECHO "X$lib_search_path " | $Xsed -e "s% $path % %g"`
6444
 
      # deplibs=`$ECHO "X$deplibs " | $Xsed -e "s% -L$path % %g"`
6445
 
      # dependency_libs=`$ECHO "X$dependency_libs " | $Xsed -e "s% -L$path % %g"`
6446
 
      #done
 
3413
      for path in $notinst_path; do
 
3414
        lib_search_path=`$echo "$lib_search_path " | ${SED} -e "s% $path % %g"`
 
3415
        deplibs=`$echo "$deplibs " | ${SED} -e "s% -L$path % %g"`
 
3416
        dependency_libs=`$echo "$dependency_libs " | ${SED} -e "s% -L$path % %g"`
 
3417
      done
6447
3418
 
6448
3419
      if test -n "$xrpath"; then
6449
3420
        # If the user specified any rpath flags, then add them.
6483
3454
      if test "$build_libtool_libs" = yes; then
6484
3455
        if test -n "$rpath"; then
6485
3456
          case $host in
6486
 
          *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc*)
 
3457
          *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos*)
6487
3458
            # these systems don't actually have a c library (as such)!
6488
3459
            ;;
6489
3460
          *-*-rhapsody* | *-*-darwin1.[012])
6490
3461
            # Rhapsody C library is in the System framework
6491
 
            deplibs="$deplibs System.ltframework"
 
3462
            deplibs="$deplibs -framework System"
6492
3463
            ;;
6493
3464
          *-*-netbsd*)
6494
3465
            # Don't link with libc until the a.out ld.so is fixed.
6502
3473
          *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)
6503
3474
            # Compiler inserts libc in the correct place for threads to work
6504
3475
            ;;
6505
 
          *)
 
3476
          *)
6506
3477
            # Add libc to deplibs on all other systems if necessary.
6507
3478
            if test "$build_libtool_need_lc" = "yes"; then
6508
3479
              deplibs="$deplibs -lc"
6539
3510
          # limits. Maybe even breaks it.  We compile a program, linking it
6540
3511
          # against the deplibs as a proxy for the library.  Then we can check
6541
3512
          # whether they linked in statically or dynamically with ldd.
6542
 
          $opt_dry_run || $RM conftest.c
 
3513
          $rm conftest.c
6543
3514
          cat > conftest.c <<EOF
6544
3515
          int main() { return 0; }
6545
3516
EOF
6546
 
          $opt_dry_run || $RM conftest
6547
 
          if $LTCC $LTCFLAGS -o conftest conftest.c $deplibs; then
 
3517
          $rm conftest
 
3518
          $LTCC $LTCFLAGS -o conftest conftest.c $deplibs
 
3519
          if test "$?" -eq 0 ; then
6548
3520
            ldd_output=`ldd conftest`
6549
3521
            for i in $deplibs; do
6550
 
              case $i in
6551
 
              -l*)
6552
 
                func_stripname -l '' "$i"
6553
 
                name=$func_stripname_result
 
3522
              name=`expr $i : '-l\(.*\)'`
 
3523
              # If $name is empty we are operating on a -L argument.
 
3524
              if test "$name" != "" && test "$name" -ne "0"; then
6554
3525
                if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
6555
3526
                  case " $predeps $postdeps " in
6556
3527
                  *" $i "*)
6558
3529
                    i=""
6559
3530
                    ;;
6560
3531
                  esac
6561
 
                fi
 
3532
                fi
6562
3533
                if test -n "$i" ; then
6563
 
                  libname=`eval "\\$ECHO \"$libname_spec\""`
6564
 
                  deplib_matches=`eval "\\$ECHO \"$library_names_spec\""`
6565
 
                  set dummy $deplib_matches; shift
6566
 
                  deplib_match=$1
 
3534
                  libname=`eval \\$echo \"$libname_spec\"`
 
3535
                  deplib_matches=`eval \\$echo \"$library_names_spec\"`
 
3536
                  set dummy $deplib_matches
 
3537
                  deplib_match=$2
6567
3538
                  if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
6568
3539
                    newdeplibs="$newdeplibs $i"
6569
3540
                  else
6570
3541
                    droppeddeps=yes
6571
 
                    $ECHO
6572
 
                    $ECHO "*** Warning: dynamic linker does not accept needed library $i."
6573
 
                    $ECHO "*** I have the capability to make that library automatically link in when"
6574
 
                    $ECHO "*** you link to this library.  But I can only do this if you have a"
6575
 
                    $ECHO "*** shared version of the library, which I believe you do not have"
6576
 
                    $ECHO "*** because a test_compile did reveal that the linker did not use it for"
6577
 
                    $ECHO "*** its dynamic dependency list that programs get resolved with at runtime."
 
3542
                    $echo
 
3543
                    $echo "*** Warning: dynamic linker does not accept needed library $i."
 
3544
                    $echo "*** I have the capability to make that library automatically link in when"
 
3545
                    $echo "*** you link to this library.  But I can only do this if you have a"
 
3546
                    $echo "*** shared version of the library, which I believe you do not have"
 
3547
                    $echo "*** because a test_compile did reveal that the linker did not use it for"
 
3548
                    $echo "*** its dynamic dependency list that programs get resolved with at runtime."
6578
3549
                  fi
6579
3550
                fi
6580
 
                ;;
6581
 
              *)
 
3551
              else
6582
3552
                newdeplibs="$newdeplibs $i"
6583
 
                ;;
6584
 
              esac
 
3553
              fi
6585
3554
            done
6586
3555
          else
6587
3556
            # Error occurred in the first compile.  Let's try to salvage
6588
3557
            # the situation: Compile a separate program for each library.
6589
3558
            for i in $deplibs; do
6590
 
              case $i in
6591
 
              -l*)
6592
 
                func_stripname -l '' "$i"
6593
 
                name=$func_stripname_result
6594
 
                $opt_dry_run || $RM conftest
6595
 
                if $LTCC $LTCFLAGS -o conftest conftest.c $i; then
 
3559
              name=`expr $i : '-l\(.*\)'`
 
3560
              # If $name is empty we are operating on a -L argument.
 
3561
              if test "$name" != "" && test "$name" != "0"; then
 
3562
                $rm conftest
 
3563
                $LTCC $LTCFLAGS -o conftest conftest.c $i
 
3564
                # Did it work?
 
3565
                if test "$?" -eq 0 ; then
6596
3566
                  ldd_output=`ldd conftest`
6597
3567
                  if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
6598
3568
                    case " $predeps $postdeps " in
6603
3573
                    esac
6604
3574
                  fi
6605
3575
                  if test -n "$i" ; then
6606
 
                    libname=`eval "\\$ECHO \"$libname_spec\""`
6607
 
                    deplib_matches=`eval "\\$ECHO \"$library_names_spec\""`
6608
 
                    set dummy $deplib_matches; shift
6609
 
                    deplib_match=$1
 
3576
                    libname=`eval \\$echo \"$libname_spec\"`
 
3577
                    deplib_matches=`eval \\$echo \"$library_names_spec\"`
 
3578
                    set dummy $deplib_matches
 
3579
                    deplib_match=$2
6610
3580
                    if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
6611
3581
                      newdeplibs="$newdeplibs $i"
6612
3582
                    else
6613
3583
                      droppeddeps=yes
6614
 
                      $ECHO
6615
 
                      $ECHO "*** Warning: dynamic linker does not accept needed library $i."
6616
 
                      $ECHO "*** I have the capability to make that library automatically link in when"
6617
 
                      $ECHO "*** you link to this library.  But I can only do this if you have a"
6618
 
                      $ECHO "*** shared version of the library, which you do not appear to have"
6619
 
                      $ECHO "*** because a test_compile did reveal that the linker did not use this one"
6620
 
                      $ECHO "*** as a dynamic dependency that programs can get resolved with at runtime."
 
3584
                      $echo
 
3585
                      $echo "*** Warning: dynamic linker does not accept needed library $i."
 
3586
                      $echo "*** I have the capability to make that library automatically link in when"
 
3587
                      $echo "*** you link to this library.  But I can only do this if you have a"
 
3588
                      $echo "*** shared version of the library, which you do not appear to have"
 
3589
                      $echo "*** because a test_compile did reveal that the linker did not use this one"
 
3590
                      $echo "*** as a dynamic dependency that programs can get resolved with at runtime."
6621
3591
                    fi
6622
3592
                  fi
6623
3593
                else
6624
3594
                  droppeddeps=yes
6625
 
                  $ECHO
6626
 
                  $ECHO "*** Warning!  Library $i is needed by this library but I was not able to"
6627
 
                  $ECHO "*** make it link in!  You will probably need to install it or some"
6628
 
                  $ECHO "*** library that it depends on before this library will be fully"
6629
 
                  $ECHO "*** functional.  Installing it before continuing would be even better."
 
3595
                  $echo
 
3596
                  $echo "*** Warning!  Library $i is needed by this library but I was not able to"
 
3597
                  $echo "***  make it link in!  You will probably need to install it or some"
 
3598
                  $echo "*** library that it depends on before this library will be fully"
 
3599
                  $echo "*** functional.  Installing it before continuing would be even better."
6630
3600
                fi
6631
 
                ;;
6632
 
              *)
 
3601
              else
6633
3602
                newdeplibs="$newdeplibs $i"
6634
 
                ;;
6635
 
              esac
 
3603
              fi
6636
3604
            done
6637
3605
          fi
6638
3606
          ;;
6639
3607
        file_magic*)
6640
 
          set dummy $deplibs_check_method; shift
6641
 
          file_magic_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
 
3608
          set dummy $deplibs_check_method
 
3609
          file_magic_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
6642
3610
          for a_deplib in $deplibs; do
6643
 
            case $a_deplib in
6644
 
            -l*)
6645
 
              func_stripname -l '' "$a_deplib"
6646
 
              name=$func_stripname_result
 
3611
            name=`expr $a_deplib : '-l\(.*\)'`
 
3612
            # If $name is empty we are operating on a -L argument.
 
3613
            if test "$name" != "" && test  "$name" != "0"; then
6647
3614
              if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
6648
3615
                case " $predeps $postdeps " in
6649
3616
                *" $a_deplib "*)
6653
3620
                esac
6654
3621
              fi
6655
3622
              if test -n "$a_deplib" ; then
6656
 
                libname=`eval "\\$ECHO \"$libname_spec\""`
 
3623
                libname=`eval \\$echo \"$libname_spec\"`
6657
3624
                for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
6658
3625
                  potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
6659
3626
                  for potent_lib in $potential_libs; do
6660
3627
                      # Follow soft links.
6661
 
                      if ls -lLd "$potent_lib" 2>/dev/null |
6662
 
                         $GREP " -> " >/dev/null; then
 
3628
                      if ls -lLd "$potent_lib" 2>/dev/null \
 
3629
                         | grep " -> " >/dev/null; then
6663
3630
                        continue
6664
3631
                      fi
6665
3632
                      # The statement above tries to avoid entering an
6672
3639
                        potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'`
6673
3640
                        case $potliblink in
6674
3641
                        [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";;
6675
 
                        *) potlib=`$ECHO "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";;
 
3642
                        *) potlib=`$echo "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";;
6676
3643
                        esac
6677
3644
                      done
6678
 
                      if eval $file_magic_cmd \"\$potlib\" 2>/dev/null |
6679
 
                         $SED -e 10q |
6680
 
                         $EGREP "$file_magic_regex" > /dev/null; then
 
3645
                      if eval $file_magic_cmd \"\$potlib\" 2>/dev/null \
 
3646
                         | ${SED} 10q \
 
3647
                         | $EGREP "$file_magic_regex" > /dev/null; then
6681
3648
                        newdeplibs="$newdeplibs $a_deplib"
6682
3649
                        a_deplib=""
6683
3650
                        break 2
6687
3654
              fi
6688
3655
              if test -n "$a_deplib" ; then
6689
3656
                droppeddeps=yes
6690
 
                $ECHO
6691
 
                $ECHO "*** Warning: linker path does not have real file for library $a_deplib."
6692
 
                $ECHO "*** I have the capability to make that library automatically link in when"
6693
 
                $ECHO "*** you link to this library.  But I can only do this if you have a"
6694
 
                $ECHO "*** shared version of the library, which you do not appear to have"
6695
 
                $ECHO "*** because I did check the linker path looking for a file starting"
 
3657
                $echo
 
3658
                $echo "*** Warning: linker path does not have real file for library $a_deplib."
 
3659
                $echo "*** I have the capability to make that library automatically link in when"
 
3660
                $echo "*** you link to this library.  But I can only do this if you have a"
 
3661
                $echo "*** shared version of the library, which you do not appear to have"
 
3662
                $echo "*** because I did check the linker path looking for a file starting"
6696
3663
                if test -z "$potlib" ; then
6697
 
                  $ECHO "*** with $libname but no candidates were found. (...for file magic test)"
 
3664
                  $echo "*** with $libname but no candidates were found. (...for file magic test)"
6698
3665
                else
6699
 
                  $ECHO "*** with $libname and none of the candidates passed a file format test"
6700
 
                  $ECHO "*** using a file magic. Last file checked: $potlib"
 
3666
                  $echo "*** with $libname and none of the candidates passed a file format test"
 
3667
                  $echo "*** using a file magic. Last file checked: $potlib"
6701
3668
                fi
6702
3669
              fi
6703
 
              ;;
6704
 
            *)
 
3670
            else
6705
3671
              # Add a -L argument.
6706
3672
              newdeplibs="$newdeplibs $a_deplib"
6707
 
              ;;
6708
 
            esac
 
3673
            fi
6709
3674
          done # Gone through all deplibs.
6710
3675
          ;;
6711
3676
        match_pattern*)
6712
 
          set dummy $deplibs_check_method; shift
6713
 
          match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
 
3677
          set dummy $deplibs_check_method
 
3678
          match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
6714
3679
          for a_deplib in $deplibs; do
6715
 
            case $a_deplib in
6716
 
            -l*)
6717
 
              func_stripname -l '' "$a_deplib"
6718
 
              name=$func_stripname_result
 
3680
            name=`expr $a_deplib : '-l\(.*\)'`
 
3681
            # If $name is empty we are operating on a -L argument.
 
3682
            if test -n "$name" && test "$name" != "0"; then
6719
3683
              if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
6720
3684
                case " $predeps $postdeps " in
6721
3685
                *" $a_deplib "*)
6725
3689
                esac
6726
3690
              fi
6727
3691
              if test -n "$a_deplib" ; then
6728
 
                libname=`eval "\\$ECHO \"$libname_spec\""`
 
3692
                libname=`eval \\$echo \"$libname_spec\"`
6729
3693
                for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
6730
3694
                  potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
6731
3695
                  for potent_lib in $potential_libs; do
6732
3696
                    potlib="$potent_lib" # see symlink-check above in file_magic test
6733
 
                    if eval "\$ECHO \"X$potent_lib\"" 2>/dev/null | $Xsed -e 10q | \
6734
 
                       $EGREP "$match_pattern_regex" > /dev/null; then
 
3697
                    if eval $echo \"$potent_lib\" 2>/dev/null \
 
3698
                        | ${SED} 10q \
 
3699
                        | $EGREP "$match_pattern_regex" > /dev/null; then
6735
3700
                      newdeplibs="$newdeplibs $a_deplib"
6736
3701
                      a_deplib=""
6737
3702
                      break 2
6741
3706
              fi
6742
3707
              if test -n "$a_deplib" ; then
6743
3708
                droppeddeps=yes
6744
 
                $ECHO
6745
 
                $ECHO "*** Warning: linker path does not have real file for library $a_deplib."
6746
 
                $ECHO "*** I have the capability to make that library automatically link in when"
6747
 
                $ECHO "*** you link to this library.  But I can only do this if you have a"
6748
 
                $ECHO "*** shared version of the library, which you do not appear to have"
6749
 
                $ECHO "*** because I did check the linker path looking for a file starting"
 
3709
                $echo
 
3710
                $echo "*** Warning: linker path does not have real file for library $a_deplib."
 
3711
                $echo "*** I have the capability to make that library automatically link in when"
 
3712
                $echo "*** you link to this library.  But I can only do this if you have a"
 
3713
                $echo "*** shared version of the library, which you do not appear to have"
 
3714
                $echo "*** because I did check the linker path looking for a file starting"
6750
3715
                if test -z "$potlib" ; then
6751
 
                  $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)"
 
3716
                  $echo "*** with $libname but no candidates were found. (...for regex pattern test)"
6752
3717
                else
6753
 
                  $ECHO "*** with $libname and none of the candidates passed a file format test"
6754
 
                  $ECHO "*** using a regex pattern. Last file checked: $potlib"
 
3718
                  $echo "*** with $libname and none of the candidates passed a file format test"
 
3719
                  $echo "*** using a regex pattern. Last file checked: $potlib"
6755
3720
                fi
6756
3721
              fi
6757
 
              ;;
6758
 
            *)
 
3722
            else
6759
3723
              # Add a -L argument.
6760
3724
              newdeplibs="$newdeplibs $a_deplib"
6761
 
              ;;
6762
 
            esac
 
3725
            fi
6763
3726
          done # Gone through all deplibs.
6764
3727
          ;;
6765
3728
        none | unknown | *)
6766
3729
          newdeplibs=""
6767
 
          tmp_deplibs=`$ECHO "X $deplibs" | $Xsed \
6768
 
              -e 's/ -lc$//' -e 's/ -[LR][^ ]*//g'`
 
3730
          tmp_deplibs=`$echo "X $deplibs" | $Xsed -e 's/ -lc$//' \
 
3731
            -e 's/ -[LR][^ ]*//g'`
6769
3732
          if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
6770
3733
            for i in $predeps $postdeps ; do
6771
3734
              # can't use Xsed below, because $i might contain '/'
6772
 
              tmp_deplibs=`$ECHO "X $tmp_deplibs" | $Xsed -e "s,$i,,"`
 
3735
              tmp_deplibs=`$echo "X $tmp_deplibs" | ${SED} -e "1s,^X,," -e "s,$i,,"`
6773
3736
            done
6774
3737
          fi
6775
 
          if $ECHO "X $tmp_deplibs" | $Xsed -e 's/[      ]//g' |
6776
 
             $GREP . >/dev/null; then
6777
 
            $ECHO
 
3738
          if $echo "X $tmp_deplibs" | $Xsed -e 's/[     ]//g' \
 
3739
            | grep . >/dev/null; then
 
3740
            $echo
6778
3741
            if test "X$deplibs_check_method" = "Xnone"; then
6779
 
              $ECHO "*** Warning: inter-library dependencies are not supported in this platform."
 
3742
              $echo "*** Warning: inter-library dependencies are not supported in this platform."
6780
3743
            else
6781
 
              $ECHO "*** Warning: inter-library dependencies are not known to be supported."
 
3744
              $echo "*** Warning: inter-library dependencies are not known to be supported."
6782
3745
            fi
6783
 
            $ECHO "*** All declared inter-library dependencies are being dropped."
 
3746
            $echo "*** All declared inter-library dependencies are being dropped."
6784
3747
            droppeddeps=yes
6785
3748
          fi
6786
3749
          ;;
6793
3756
 
6794
3757
        case $host in
6795
3758
        *-*-rhapsody* | *-*-darwin1.[012])
6796
 
          # On Rhapsody replace the C library with the System framework
6797
 
          newdeplibs=`$ECHO "X $newdeplibs" | $Xsed -e 's/ -lc / System.ltframework /'`
 
3759
          # On Rhapsody replace the C library is the System framework
 
3760
          newdeplibs=`$echo "X $newdeplibs" | $Xsed -e 's/ -lc / -framework System /'`
6798
3761
          ;;
6799
3762
        esac
6800
3763
 
6801
3764
        if test "$droppeddeps" = yes; then
6802
3765
          if test "$module" = yes; then
6803
 
            $ECHO
6804
 
            $ECHO "*** Warning: libtool could not satisfy all declared inter-library"
6805
 
            $ECHO "*** dependencies of module $libname.  Therefore, libtool will create"
6806
 
            $ECHO "*** a static module, that should work as long as the dlopening"
6807
 
            $ECHO "*** application is linked with the -dlopen flag."
 
3766
            $echo
 
3767
            $echo "*** Warning: libtool could not satisfy all declared inter-library"
 
3768
            $echo "*** dependencies of module $libname.  Therefore, libtool will create"
 
3769
            $echo "*** a static module, that should work as long as the dlopening"
 
3770
            $echo "*** application is linked with the -dlopen flag."
6808
3771
            if test -z "$global_symbol_pipe"; then
6809
 
              $ECHO
6810
 
              $ECHO "*** However, this would only work if libtool was able to extract symbol"
6811
 
              $ECHO "*** lists from a program, using \`nm' or equivalent, but libtool could"
6812
 
              $ECHO "*** not find such a program.  So, this module is probably useless."
6813
 
              $ECHO "*** \`nm' from GNU binutils and a full rebuild may help."
 
3772
              $echo
 
3773
              $echo "*** However, this would only work if libtool was able to extract symbol"
 
3774
              $echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
 
3775
              $echo "*** not find such a program.  So, this module is probably useless."
 
3776
              $echo "*** \`nm' from GNU binutils and a full rebuild may help."
6814
3777
            fi
6815
3778
            if test "$build_old_libs" = no; then
6816
3779
              oldlibs="$output_objdir/$libname.$libext"
6820
3783
              build_libtool_libs=no
6821
3784
            fi
6822
3785
          else
6823
 
            $ECHO "*** The inter-library dependencies that have been dropped here will be"
6824
 
            $ECHO "*** automatically added whenever a program is linked with this library"
6825
 
            $ECHO "*** or is declared to -dlopen it."
 
3786
            $echo "*** The inter-library dependencies that have been dropped here will be"
 
3787
            $echo "*** automatically added whenever a program is linked with this library"
 
3788
            $echo "*** or is declared to -dlopen it."
6826
3789
 
6827
3790
            if test "$allow_undefined" = no; then
6828
 
              $ECHO
6829
 
              $ECHO "*** Since this library must not contain undefined symbols,"
6830
 
              $ECHO "*** because either the platform does not support them or"
6831
 
              $ECHO "*** it was explicitly requested with -no-undefined,"
6832
 
              $ECHO "*** libtool will only create a static version of it."
 
3791
              $echo
 
3792
              $echo "*** Since this library must not contain undefined symbols,"
 
3793
              $echo "*** because either the platform does not support them or"
 
3794
              $echo "*** it was explicitly requested with -no-undefined,"
 
3795
              $echo "*** libtool will only create a static version of it."
6833
3796
              if test "$build_old_libs" = no; then
6834
3797
                oldlibs="$output_objdir/$libname.$libext"
6835
3798
                build_libtool_libs=module
6843
3806
        # Done checking deplibs!
6844
3807
        deplibs=$newdeplibs
6845
3808
      fi
6846
 
      # Time to change all our "foo.ltframework" stuff back to "-framework foo"
6847
 
      case $host in
6848
 
        *-*-darwin*)
6849
 
          newdeplibs=`$ECHO "X $newdeplibs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'`
6850
 
          new_inherited_linker_flags=`$ECHO "X $new_inherited_linker_flags" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'`
6851
 
          deplibs=`$ECHO "X $deplibs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'`
6852
 
          ;;
6853
 
      esac
 
3809
 
6854
3810
 
6855
3811
      # move library search paths that coincide with paths to not yet
6856
3812
      # installed libraries to the beginning of the library search list
6879
3835
      done
6880
3836
      deplibs="$new_libs"
6881
3837
 
 
3838
 
6882
3839
      # All the library-specific variables (install_libdir is set above).
6883
3840
      library_names=
6884
3841
      old_library=
6949
3906
        eval shared_ext=\"$shrext_cmds\"
6950
3907
        eval library_names=\"$library_names_spec\"
6951
3908
        set dummy $library_names
6952
 
        shift
6953
 
        realname="$1"
6954
 
        shift
 
3909
        realname="$2"
 
3910
        shift; shift
6955
3911
 
6956
3912
        if test -n "$soname_spec"; then
6957
3913
          eval soname=\"$soname_spec\"
6970
3926
        done
6971
3927
 
6972
3928
        # Use standard objects if they are pic
6973
 
        test -z "$pic_flag" && libobjs=`$ECHO "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
6974
 
        test "X$libobjs" = "X " && libobjs=
6975
 
 
6976
 
        delfiles=
6977
 
        if test -n "$export_symbols" && test -n "$include_expsyms"; then
6978
 
          $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp"
6979
 
          export_symbols="$output_objdir/$libname.uexp"
6980
 
          delfiles="$delfiles $export_symbols"
6981
 
        fi
6982
 
 
6983
 
        orig_export_symbols=
6984
 
        case $host_os in
6985
 
        cygwin* | mingw* | cegcc*)
6986
 
          if test -n "$export_symbols" && test -z "$export_symbols_regex"; then
6987
 
            # exporting using user supplied symfile
6988
 
            if test "x`$SED 1q $export_symbols`" != xEXPORTS; then
6989
 
              # and it's NOT already a .def file. Must figure out
6990
 
              # which of the given symbols are data symbols and tag
6991
 
              # them as such. So, trigger use of export_symbols_cmds.
6992
 
              # export_symbols gets reassigned inside the "prepare
6993
 
              # the list of exported symbols" if statement, so the
6994
 
              # include_expsyms logic still works.
6995
 
              orig_export_symbols="$export_symbols"
6996
 
              export_symbols=
6997
 
              always_export_symbols=yes
6998
 
            fi
6999
 
          fi
7000
 
          ;;
7001
 
        esac
 
3929
        test -z "$pic_flag" && libobjs=`$echo "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
7002
3930
 
7003
3931
        # Prepare the list of exported symbols
7004
3932
        if test -z "$export_symbols"; then
7005
3933
          if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then
7006
 
            func_verbose "generating symbol list for \`$libname.la'"
 
3934
            $show "generating symbol list for \`$libname.la'"
7007
3935
            export_symbols="$output_objdir/$libname.exp"
7008
 
            $opt_dry_run || $RM $export_symbols
 
3936
            $run $rm $export_symbols
7009
3937
            cmds=$export_symbols_cmds
7010
3938
            save_ifs="$IFS"; IFS='~'
7011
3939
            for cmd in $cmds; do
7012
3940
              IFS="$save_ifs"
7013
3941
              eval cmd=\"$cmd\"
7014
 
              func_len " $cmd"
7015
 
              len=$func_len_result
7016
 
              if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then
7017
 
                func_show_eval "$cmd" 'exit $?'
7018
 
                skipped_export=false
 
3942
              if len=`expr "X$cmd" : ".*"` &&
 
3943
               test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then
 
3944
                $show "$cmd"
 
3945
                $run eval "$cmd" || exit $?
 
3946
                skipped_export=false
7019
3947
              else
7020
 
                # The command line is too long to execute in one step.
7021
 
                func_verbose "using reloadable object file for export list..."
7022
 
                skipped_export=:
 
3948
                # The command line is too long to execute in one step.
 
3949
                $show "using reloadable object file for export list..."
 
3950
                skipped_export=:
7023
3951
                # Break out early, otherwise skipped_export may be
7024
3952
                # set to false by a later but shorter cmd.
7025
3953
                break
7026
3954
              fi
7027
3955
            done
7028
3956
            IFS="$save_ifs"
7029
 
            if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then
7030
 
              func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
7031
 
              func_show_eval '$MV "${export_symbols}T" "$export_symbols"'
 
3957
            if test -n "$export_symbols_regex"; then
 
3958
              $show "$EGREP -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\""
 
3959
              $run eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
 
3960
              $show "$mv \"${export_symbols}T\" \"$export_symbols\""
 
3961
              $run eval '$mv "${export_symbols}T" "$export_symbols"'
7032
3962
            fi
7033
3963
          fi
7034
3964
        fi
7035
3965
 
7036
3966
        if test -n "$export_symbols" && test -n "$include_expsyms"; then
7037
 
          tmp_export_symbols="$export_symbols"
7038
 
          test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols"
7039
 
          $opt_dry_run || eval '$ECHO "X$include_expsyms" | $Xsed | $SP2NL >> "$tmp_export_symbols"'
7040
 
        fi
7041
 
 
7042
 
        if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then
7043
 
          # The given exports_symbols file has to be filtered, so filter it.
7044
 
          func_verbose "filter symbol list for \`$libname.la' to tag DATA exports"
7045
 
          # FIXME: $output_objdir/$libname.filter potentially contains lots of
7046
 
          # 's' commands which not all seds can handle. GNU sed should be fine
7047
 
          # though. Also, the filter scales superlinearly with the number of
7048
 
          # global variables. join(1) would be nice here, but unfortunately
7049
 
          # isn't a blessed tool.
7050
 
          $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter
7051
 
          delfiles="$delfiles $export_symbols $output_objdir/$libname.filter"
7052
 
          export_symbols=$output_objdir/$libname.def
7053
 
          $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols
 
3967
          $run eval '$echo "X$include_expsyms" | $SP2NL >> "$export_symbols"'
7054
3968
        fi
7055
3969
 
7056
3970
        tmp_deplibs=
7057
3971
        for test_deplib in $deplibs; do
7058
 
          case " $convenience " in
7059
 
          *" $test_deplib "*) ;;
7060
 
          *)
7061
 
            tmp_deplibs="$tmp_deplibs $test_deplib"
7062
 
            ;;
7063
 
          esac
 
3972
                case " $convenience " in
 
3973
                *" $test_deplib "*) ;;
 
3974
                *)
 
3975
                        tmp_deplibs="$tmp_deplibs $test_deplib"
 
3976
                        ;;
 
3977
                esac
7064
3978
        done
7065
3979
        deplibs="$tmp_deplibs"
7066
3980
 
7067
3981
        if test -n "$convenience"; then
7068
 
          if test -n "$whole_archive_flag_spec" &&
7069
 
            test "$compiler_needs_object" = yes &&
7070
 
            test -z "$libobjs"; then
7071
 
            # extract the archives, so we have objects to list.
7072
 
            # TODO: could optimize this to just extract one archive.
7073
 
            whole_archive_flag_spec=
7074
 
          fi
7075
3982
          if test -n "$whole_archive_flag_spec"; then
7076
3983
            save_libobjs=$libobjs
7077
3984
            eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
7078
 
            test "X$libobjs" = "X " && libobjs=
7079
3985
          else
7080
3986
            gentop="$output_objdir/${outputname}x"
7081
3987
            generated="$generated $gentop"
7082
3988
 
7083
3989
            func_extract_archives $gentop $convenience
7084
3990
            libobjs="$libobjs $func_extract_archives_result"
7085
 
            test "X$libobjs" = "X " && libobjs=
7086
3991
          fi
7087
3992
        fi
7088
 
 
 
3993
        
7089
3994
        if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then
7090
3995
          eval flag=\"$thread_safe_flag_spec\"
7091
3996
          linker_flags="$linker_flags $flag"
7093
3998
 
7094
3999
        # Make a backup of the uninstalled library when relinking
7095
4000
        if test "$mode" = relink; then
7096
 
          $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $?
 
4001
          $run eval '(cd $output_objdir && $rm ${realname}U && $mv $realname ${realname}U)' || exit $?
7097
4002
        fi
7098
4003
 
7099
4004
        # Do each of the archive commands.
7106
4011
            cmds=$module_cmds
7107
4012
          fi
7108
4013
        else
7109
 
          if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
7110
 
            eval test_cmds=\"$archive_expsym_cmds\"
7111
 
            cmds=$archive_expsym_cmds
7112
 
          else
7113
 
            eval test_cmds=\"$archive_cmds\"
7114
 
            cmds=$archive_cmds
 
4014
        if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
 
4015
          eval test_cmds=\"$archive_expsym_cmds\"
 
4016
          cmds=$archive_expsym_cmds
 
4017
        else
 
4018
          eval test_cmds=\"$archive_cmds\"
 
4019
          cmds=$archive_cmds
7115
4020
          fi
7116
4021
        fi
7117
4022
 
7118
4023
        if test "X$skipped_export" != "X:" &&
7119
 
           func_len " $test_cmds" &&
7120
 
           len=$func_len_result &&
7121
 
           test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then
 
4024
           len=`expr "X$test_cmds" : ".*" 2>/dev/null` &&
 
4025
           test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then
7122
4026
          :
7123
4027
        else
7124
 
          # The command line is too long to link in one step, link piecewise
7125
 
          # or, if using GNU ld and skipped_export is not :, use a linker
7126
 
          # script.
 
4028
          # The command line is too long to link in one step, link piecewise.
 
4029
          $echo "creating reloadable object files..."
7127
4030
 
7128
4031
          # Save the value of $output and $libobjs because we want to
7129
4032
          # use them later.  If we have whole_archive_flag_spec, we
7137
4040
            save_libobjs=$libobjs
7138
4041
          fi
7139
4042
          save_output=$output
7140
 
          output_la=`$ECHO "X$output" | $Xsed -e "$basename"`
 
4043
          output_la=`$echo "X$output" | $Xsed -e "$basename"`
7141
4044
 
7142
4045
          # Clear the reloadable object creation command queue and
7143
4046
          # initialize k to one.
7144
4047
          test_cmds=
7145
4048
          concat_cmds=
7146
4049
          objlist=
 
4050
          delfiles=
7147
4051
          last_robj=
7148
4052
          k=1
7149
 
 
7150
 
          if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then
7151
 
            output=${output_objdir}/${output_la}.lnkscript
7152
 
            func_verbose "creating GNU ld script: $output"
7153
 
            $ECHO 'INPUT (' > $output
7154
 
            for obj in $save_libobjs
7155
 
            do
7156
 
              $ECHO "$obj" >> $output
7157
 
            done
7158
 
            $ECHO ')' >> $output
7159
 
            delfiles="$delfiles $output"
7160
 
          elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then
7161
 
            output=${output_objdir}/${output_la}.lnk
7162
 
            func_verbose "creating linker input file list: $output"
7163
 
            : > $output
7164
 
            set x $save_libobjs
7165
 
            shift
7166
 
            firstobj=
7167
 
            if test "$compiler_needs_object" = yes; then
7168
 
              firstobj="$1 "
7169
 
              shift
7170
 
            fi
7171
 
            for obj
7172
 
            do
7173
 
              $ECHO "$obj" >> $output
7174
 
            done
7175
 
            delfiles="$delfiles $output"
7176
 
            output=$firstobj\"$file_list_spec$output\"
7177
 
          else
7178
 
            if test -n "$save_libobjs"; then
7179
 
              func_verbose "creating reloadable object files..."
 
4053
          output=$output_objdir/$output_la-${k}.$objext
 
4054
          # Loop over the list of objects to be linked.
 
4055
          for obj in $save_libobjs
 
4056
          do
 
4057
            eval test_cmds=\"$reload_cmds $objlist $last_robj\"
 
4058
            if test "X$objlist" = X ||
 
4059
               { len=`expr "X$test_cmds" : ".*" 2>/dev/null` &&
 
4060
                 test "$len" -le "$max_cmd_len"; }; then
 
4061
              objlist="$objlist $obj"
 
4062
            else
 
4063
              # The command $test_cmds is almost too long, add a
 
4064
              # command to the queue.
 
4065
              if test "$k" -eq 1 ; then
 
4066
                # The first file doesn't have a previous command to add.
 
4067
                eval concat_cmds=\"$reload_cmds $objlist $last_robj\"
 
4068
              else
 
4069
                # All subsequent reloadable object files will link in
 
4070
                # the last one created.
 
4071
                eval concat_cmds=\"\$concat_cmds~$reload_cmds $objlist $last_robj\"
 
4072
              fi
 
4073
              last_robj=$output_objdir/$output_la-${k}.$objext
 
4074
              k=`expr $k + 1`
7180
4075
              output=$output_objdir/$output_la-${k}.$objext
7181
 
              eval test_cmds=\"$reload_cmds\"
7182
 
              func_len " $test_cmds"
7183
 
              len0=$func_len_result
7184
 
              len=$len0
7185
 
 
7186
 
              # Loop over the list of objects to be linked.
7187
 
              for obj in $save_libobjs
7188
 
              do
7189
 
                func_len " $obj"
7190
 
                func_arith $len + $func_len_result
7191
 
                len=$func_arith_result
7192
 
                if test "X$objlist" = X ||
7193
 
                   test "$len" -lt "$max_cmd_len"; then
7194
 
                  func_append objlist " $obj"
7195
 
                else
7196
 
                  # The command $test_cmds is almost too long, add a
7197
 
                  # command to the queue.
7198
 
                  if test "$k" -eq 1 ; then
7199
 
                    # The first file doesn't have a previous command to add.
7200
 
                    eval concat_cmds=\"$reload_cmds $objlist $last_robj\"
7201
 
                  else
7202
 
                    # All subsequent reloadable object files will link in
7203
 
                    # the last one created.
7204
 
                    eval concat_cmds=\"\$concat_cmds~$reload_cmds $objlist $last_robj~\$RM $last_robj\"
7205
 
                  fi
7206
 
                  last_robj=$output_objdir/$output_la-${k}.$objext
7207
 
                  func_arith $k + 1
7208
 
                  k=$func_arith_result
7209
 
                  output=$output_objdir/$output_la-${k}.$objext
7210
 
                  objlist=$obj
7211
 
                  func_len " $last_robj"
7212
 
                  func_arith $len0 + $func_len_result
7213
 
                  len=$func_arith_result
7214
 
                fi
7215
 
              done
7216
 
              # Handle the remaining objects by creating one last
7217
 
              # reloadable object file.  All subsequent reloadable object
7218
 
              # files will link in the last one created.
7219
 
              test -z "$concat_cmds" || concat_cmds=$concat_cmds~
7220
 
              eval concat_cmds=\"\${concat_cmds}$reload_cmds $objlist $last_robj\"
7221
 
              if test -n "$last_robj"; then
7222
 
                eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\"
7223
 
              fi
7224
 
              delfiles="$delfiles $output"
7225
 
 
7226
 
            else
7227
 
              output=
7228
 
            fi
7229
 
 
7230
 
            if ${skipped_export-false}; then
7231
 
              func_verbose "generating symbol list for \`$libname.la'"
7232
 
              export_symbols="$output_objdir/$libname.exp"
7233
 
              $opt_dry_run || $RM $export_symbols
7234
 
              libobjs=$output
7235
 
              # Append the command to create the export file.
7236
 
              test -z "$concat_cmds" || concat_cmds=$concat_cmds~
7237
 
              eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\"
7238
 
              if test -n "$last_robj"; then
7239
 
                eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\"
7240
 
              fi
7241
 
            fi
7242
 
 
7243
 
            test -n "$save_libobjs" &&
7244
 
              func_verbose "creating a temporary reloadable object file: $output"
7245
 
 
7246
 
            # Loop through the commands generated above and execute them.
7247
 
            save_ifs="$IFS"; IFS='~'
7248
 
            for cmd in $concat_cmds; do
7249
 
              IFS="$save_ifs"
7250
 
              $opt_silent || {
7251
 
                  func_quote_for_expand "$cmd"
7252
 
                  eval "func_echo $func_quote_for_expand_result"
7253
 
              }
7254
 
              $opt_dry_run || eval "$cmd" || {
7255
 
                lt_exit=$?
7256
 
 
7257
 
                # Restore the uninstalled library and exit
7258
 
                if test "$mode" = relink; then
7259
 
                  ( cd "$output_objdir" && \
7260
 
                    $RM "${realname}T" && \
7261
 
                    $MV "${realname}U" "$realname" )
7262
 
                fi
7263
 
 
7264
 
                exit $lt_exit
7265
 
              }
7266
 
            done
 
4076
              objlist=$obj
 
4077
              len=1
 
4078
            fi
 
4079
          done
 
4080
          # Handle the remaining objects by creating one last
 
4081
          # reloadable object file.  All subsequent reloadable object
 
4082
          # files will link in the last one created.
 
4083
          test -z "$concat_cmds" || concat_cmds=$concat_cmds~
 
4084
          eval concat_cmds=\"\${concat_cmds}$reload_cmds $objlist $last_robj\"
 
4085
 
 
4086
          if ${skipped_export-false}; then
 
4087
            $show "generating symbol list for \`$libname.la'"
 
4088
            export_symbols="$output_objdir/$libname.exp"
 
4089
            $run $rm $export_symbols
 
4090
            libobjs=$output
 
4091
            # Append the command to create the export file.
 
4092
            eval concat_cmds=\"\$concat_cmds~$export_symbols_cmds\"
 
4093
          fi
 
4094
 
 
4095
          # Set up a command to remove the reloadable object files
 
4096
          # after they are used.
 
4097
          i=0
 
4098
          while test "$i" -lt "$k"
 
4099
          do
 
4100
            i=`expr $i + 1`
 
4101
            delfiles="$delfiles $output_objdir/$output_la-${i}.$objext"
 
4102
          done
 
4103
 
 
4104
          $echo "creating a temporary reloadable object file: $output"
 
4105
 
 
4106
          # Loop through the commands generated above and execute them.
 
4107
          save_ifs="$IFS"; IFS='~'
 
4108
          for cmd in $concat_cmds; do
7267
4109
            IFS="$save_ifs"
7268
 
 
7269
 
            if test -n "$export_symbols_regex" && ${skipped_export-false}; then
7270
 
              func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
7271
 
              func_show_eval '$MV "${export_symbols}T" "$export_symbols"'
7272
 
            fi
7273
 
          fi
7274
 
 
7275
 
          if ${skipped_export-false}; then
7276
 
            if test -n "$export_symbols" && test -n "$include_expsyms"; then
7277
 
              tmp_export_symbols="$export_symbols"
7278
 
              test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols"
7279
 
              $opt_dry_run || eval '$ECHO "X$include_expsyms" | $Xsed | $SP2NL >> "$tmp_export_symbols"'
7280
 
            fi
7281
 
 
7282
 
            if test -n "$orig_export_symbols"; then
7283
 
              # The given exports_symbols file has to be filtered, so filter it.
7284
 
              func_verbose "filter symbol list for \`$libname.la' to tag DATA exports"
7285
 
              # FIXME: $output_objdir/$libname.filter potentially contains lots of
7286
 
              # 's' commands which not all seds can handle. GNU sed should be fine
7287
 
              # though. Also, the filter scales superlinearly with the number of
7288
 
              # global variables. join(1) would be nice here, but unfortunately
7289
 
              # isn't a blessed tool.
7290
 
              $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter
7291
 
              delfiles="$delfiles $export_symbols $output_objdir/$libname.filter"
7292
 
              export_symbols=$output_objdir/$libname.def
7293
 
              $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols
7294
 
            fi
7295
 
          fi
 
4110
            $show "$cmd"
 
4111
            $run eval "$cmd" || exit $?
 
4112
          done
 
4113
          IFS="$save_ifs"
7296
4114
 
7297
4115
          libobjs=$output
7298
4116
          # Restore the value of output.
7300
4118
 
7301
4119
          if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then
7302
4120
            eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
7303
 
            test "X$libobjs" = "X " && libobjs=
7304
4121
          fi
7305
4122
          # Expand the library linking commands again to reset the
7306
4123
          # value of $libobjs for piecewise linking.
7313
4130
              cmds=$module_cmds
7314
4131
            fi
7315
4132
          else
7316
 
            if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
7317
 
              cmds=$archive_expsym_cmds
7318
 
            else
7319
 
              cmds=$archive_cmds
 
4133
          if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
 
4134
            cmds=$archive_expsym_cmds
 
4135
          else
 
4136
            cmds=$archive_cmds
7320
4137
            fi
7321
4138
          fi
7322
 
        fi
7323
 
 
7324
 
        if test -n "$delfiles"; then
7325
 
          # Append the command to remove temporary files to $cmds.
7326
 
          eval cmds=\"\$cmds~\$RM $delfiles\"
7327
 
        fi
7328
 
 
7329
 
        # Add any objects from preloaded convenience libraries
7330
 
        if test -n "$dlprefiles"; then
7331
 
          gentop="$output_objdir/${outputname}x"
7332
 
          generated="$generated $gentop"
7333
 
 
7334
 
          func_extract_archives $gentop $dlprefiles
7335
 
          libobjs="$libobjs $func_extract_archives_result"
7336
 
          test "X$libobjs" = "X " && libobjs=
7337
 
        fi
7338
 
 
 
4139
 
 
4140
          # Append the command to remove the reloadable object files
 
4141
          # to the just-reset $cmds.
 
4142
          eval cmds=\"\$cmds~\$rm $delfiles\"
 
4143
        fi
7339
4144
        save_ifs="$IFS"; IFS='~'
7340
4145
        for cmd in $cmds; do
7341
4146
          IFS="$save_ifs"
7342
4147
          eval cmd=\"$cmd\"
7343
 
          $opt_silent || {
7344
 
            func_quote_for_expand "$cmd"
7345
 
            eval "func_echo $func_quote_for_expand_result"
7346
 
          }
7347
 
          $opt_dry_run || eval "$cmd" || {
 
4148
          $show "$cmd"
 
4149
          $run eval "$cmd" || {
7348
4150
            lt_exit=$?
7349
4151
 
7350
4152
            # Restore the uninstalled library and exit
7351
4153
            if test "$mode" = relink; then
7352
 
              ( cd "$output_objdir" && \
7353
 
                $RM "${realname}T" && \
7354
 
                $MV "${realname}U" "$realname" )
 
4154
              $run eval '(cd $output_objdir && $rm ${realname}T && $mv ${realname}U $realname)'
7355
4155
            fi
7356
4156
 
7357
4157
            exit $lt_exit
7361
4161
 
7362
4162
        # Restore the uninstalled library and exit
7363
4163
        if test "$mode" = relink; then
7364
 
          $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $?
 
4164
          $run eval '(cd $output_objdir && $rm ${realname}T && $mv $realname ${realname}T && $mv "$realname"U $realname)' || exit $?
7365
4165
 
7366
4166
          if test -n "$convenience"; then
7367
4167
            if test -z "$whole_archive_flag_spec"; then
7368
 
              func_show_eval '${RM}r "$gentop"'
 
4168
              $show "${rm}r $gentop"
 
4169
              $run ${rm}r "$gentop"
7369
4170
            fi
7370
4171
          fi
7371
4172
 
7375
4176
        # Create links to the real library.
7376
4177
        for linkname in $linknames; do
7377
4178
          if test "$realname" != "$linkname"; then
7378
 
            func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?'
 
4179
            $show "(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)"
 
4180
            $run eval '(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)' || exit $?
7379
4181
          fi
7380
4182
        done
7381
4183
 
7388
4190
      ;;
7389
4191
 
7390
4192
    obj)
 
4193
      if test -n "$deplibs"; then
 
4194
        $echo "$modename: warning: \`-l' and \`-L' are ignored for objects" 1>&2
 
4195
      fi
 
4196
 
7391
4197
      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
7392
 
        func_warning "\`-dlopen' is ignored for objects"
7393
 
      fi
7394
 
 
7395
 
      case " $deplibs" in
7396
 
      *\ -l* | *\ -L*)
7397
 
        func_warning "\`-l' and \`-L' are ignored for objects" ;;
7398
 
      esac
7399
 
 
7400
 
      test -n "$rpath" && \
7401
 
        func_warning "\`-rpath' is ignored for objects"
7402
 
 
7403
 
      test -n "$xrpath" && \
7404
 
        func_warning "\`-R' is ignored for objects"
7405
 
 
7406
 
      test -n "$vinfo" && \
7407
 
        func_warning "\`-version-info' is ignored for objects"
7408
 
 
7409
 
      test -n "$release" && \
7410
 
        func_warning "\`-release' is ignored for objects"
 
4198
        $echo "$modename: warning: \`-dlopen' is ignored for objects" 1>&2
 
4199
      fi
 
4200
 
 
4201
      if test -n "$rpath"; then
 
4202
        $echo "$modename: warning: \`-rpath' is ignored for objects" 1>&2
 
4203
      fi
 
4204
 
 
4205
      if test -n "$xrpath"; then
 
4206
        $echo "$modename: warning: \`-R' is ignored for objects" 1>&2
 
4207
      fi
 
4208
 
 
4209
      if test -n "$vinfo"; then
 
4210
        $echo "$modename: warning: \`-version-info' is ignored for objects" 1>&2
 
4211
      fi
 
4212
 
 
4213
      if test -n "$release"; then
 
4214
        $echo "$modename: warning: \`-release' is ignored for objects" 1>&2
 
4215
      fi
7411
4216
 
7412
4217
      case $output in
7413
4218
      *.lo)
7414
 
        test -n "$objs$old_deplibs" && \
7415
 
          func_fatal_error "cannot build library object \`$output' from non-libtool objects"
7416
 
 
7417
 
        libobj=$output
7418
 
        func_lo2o "$libobj"
7419
 
        obj=$func_lo2o_result
 
4219
        if test -n "$objs$old_deplibs"; then
 
4220
          $echo "$modename: cannot build library object \`$output' from non-libtool objects" 1>&2
 
4221
          exit $EXIT_FAILURE
 
4222
        fi
 
4223
        libobj="$output"
 
4224
        obj=`$echo "X$output" | $Xsed -e "$lo2o"`
7420
4225
        ;;
7421
4226
      *)
7422
4227
        libobj=
7425
4230
      esac
7426
4231
 
7427
4232
      # Delete the old objects.
7428
 
      $opt_dry_run || $RM $obj $libobj
 
4233
      $run $rm $obj $libobj
7429
4234
 
7430
4235
      # Objects from convenience libraries.  This assumes
7431
4236
      # single-version convenience libraries.  Whenever we create
7434
4239
      reload_conv_objs=
7435
4240
      gentop=
7436
4241
      # reload_cmds runs $LD directly, so let us get rid of
7437
 
      # -Wl from whole_archive_flag_spec and hope we can get by with
7438
 
      # turning comma into space..
 
4242
      # -Wl from whole_archive_flag_spec
7439
4243
      wl=
7440
4244
 
7441
4245
      if test -n "$convenience"; then
7442
4246
        if test -n "$whole_archive_flag_spec"; then
7443
 
          eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\"
7444
 
          reload_conv_objs=$reload_objs\ `$ECHO "X$tmp_whole_archive_flags" | $Xsed -e 's|,| |g'`
 
4247
          eval reload_conv_objs=\"\$reload_objs $whole_archive_flag_spec\"
7445
4248
        else
7446
4249
          gentop="$output_objdir/${obj}x"
7447
4250
          generated="$generated $gentop"
7452
4255
      fi
7453
4256
 
7454
4257
      # Create the old-style object.
7455
 
      reload_objs="$objs$old_deplibs "`$ECHO "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test
 
4258
      reload_objs="$objs$old_deplibs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test
7456
4259
 
7457
4260
      output="$obj"
7458
 
      func_execute_cmds "$reload_cmds" 'exit $?'
 
4261
      cmds=$reload_cmds
 
4262
      save_ifs="$IFS"; IFS='~'
 
4263
      for cmd in $cmds; do
 
4264
        IFS="$save_ifs"
 
4265
        eval cmd=\"$cmd\"
 
4266
        $show "$cmd"
 
4267
        $run eval "$cmd" || exit $?
 
4268
      done
 
4269
      IFS="$save_ifs"
7459
4270
 
7460
4271
      # Exit if we aren't doing a library object file.
7461
4272
      if test -z "$libobj"; then
7462
4273
        if test -n "$gentop"; then
7463
 
          func_show_eval '${RM}r "$gentop"'
 
4274
          $show "${rm}r $gentop"
 
4275
          $run ${rm}r $gentop
7464
4276
        fi
7465
4277
 
7466
4278
        exit $EXIT_SUCCESS
7468
4280
 
7469
4281
      if test "$build_libtool_libs" != yes; then
7470
4282
        if test -n "$gentop"; then
7471
 
          func_show_eval '${RM}r "$gentop"'
 
4283
          $show "${rm}r $gentop"
 
4284
          $run ${rm}r $gentop
7472
4285
        fi
7473
4286
 
7474
4287
        # Create an invalid libtool object if no PIC, so that we don't
7475
4288
        # accidentally link it into a program.
7476
4289
        # $show "echo timestamp > $libobj"
7477
 
        # $opt_dry_run || eval "echo timestamp > $libobj" || exit $?
 
4290
        # $run eval "echo timestamp > $libobj" || exit $?
7478
4291
        exit $EXIT_SUCCESS
7479
4292
      fi
7480
4293
 
7482
4295
        # Only do commands if we really have different PIC objects.
7483
4296
        reload_objs="$libobjs $reload_conv_objs"
7484
4297
        output="$libobj"
7485
 
        func_execute_cmds "$reload_cmds" 'exit $?'
 
4298
        cmds=$reload_cmds
 
4299
        save_ifs="$IFS"; IFS='~'
 
4300
        for cmd in $cmds; do
 
4301
          IFS="$save_ifs"
 
4302
          eval cmd=\"$cmd\"
 
4303
          $show "$cmd"
 
4304
          $run eval "$cmd" || exit $?
 
4305
        done
 
4306
        IFS="$save_ifs"
7486
4307
      fi
7487
4308
 
7488
4309
      if test -n "$gentop"; then
7489
 
        func_show_eval '${RM}r "$gentop"'
 
4310
        $show "${rm}r $gentop"
 
4311
        $run ${rm}r $gentop
7490
4312
      fi
7491
4313
 
7492
4314
      exit $EXIT_SUCCESS
7494
4316
 
7495
4317
    prog)
7496
4318
      case $host in
7497
 
        *cygwin*) func_stripname '' '.exe' "$output"
7498
 
                  output=$func_stripname_result.exe;;
 
4319
        *cygwin*) output=`$echo $output | ${SED} -e 's,.exe$,,;s,$,.exe,'` ;;
7499
4320
      esac
7500
 
      test -n "$vinfo" && \
7501
 
        func_warning "\`-version-info' is ignored for programs"
7502
 
 
7503
 
      test -n "$release" && \
7504
 
        func_warning "\`-release' is ignored for programs"
7505
 
 
7506
 
      test "$preload" = yes \
7507
 
        && test "$dlopen_support" = unknown \
7508
 
        && test "$dlopen_self" = unknown \
7509
 
        && test "$dlopen_self_static" = unknown && \
7510
 
          func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support."
 
4321
      if test -n "$vinfo"; then
 
4322
        $echo "$modename: warning: \`-version-info' is ignored for programs" 1>&2
 
4323
      fi
 
4324
 
 
4325
      if test -n "$release"; then
 
4326
        $echo "$modename: warning: \`-release' is ignored for programs" 1>&2
 
4327
      fi
 
4328
 
 
4329
      if test "$preload" = yes; then
 
4330
        if test "$dlopen_support" = unknown && test "$dlopen_self" = unknown &&
 
4331
           test "$dlopen_self_static" = unknown; then
 
4332
          $echo "$modename: warning: \`AC_LIBTOOL_DLOPEN' not used. Assuming no dlopen support."
 
4333
        fi
 
4334
      fi
7511
4335
 
7512
4336
      case $host in
7513
4337
      *-*-rhapsody* | *-*-darwin1.[012])
7514
4338
        # On Rhapsody replace the C library is the System framework
7515
 
        compile_deplibs=`$ECHO "X $compile_deplibs" | $Xsed -e 's/ -lc / System.ltframework /'`
7516
 
        finalize_deplibs=`$ECHO "X $finalize_deplibs" | $Xsed -e 's/ -lc / System.ltframework /'`
 
4339
        compile_deplibs=`$echo "X $compile_deplibs" | $Xsed -e 's/ -lc / -framework System /'`
 
4340
        finalize_deplibs=`$echo "X $finalize_deplibs" | $Xsed -e 's/ -lc / -framework System /'`
7517
4341
        ;;
7518
4342
      esac
7519
4343
 
7520
4344
      case $host in
7521
 
      *-*-darwin*)
7522
 
        # Don't allow lazy linking, it breaks C++ global constructors
7523
 
        # But is supposedly fixed on 10.4 or later (yay!).
7524
 
        if test "$tagname" = CXX ; then
7525
 
          case ${MACOSX_DEPLOYMENT_TARGET-10.0} in
7526
 
            10.[0123])
7527
 
              compile_command="$compile_command ${wl}-bind_at_load"
7528
 
              finalize_command="$finalize_command ${wl}-bind_at_load"
7529
 
            ;;
7530
 
          esac
7531
 
        fi
7532
 
        # Time to change all our "foo.ltframework" stuff back to "-framework foo"
7533
 
        compile_deplibs=`$ECHO "X $compile_deplibs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'`
7534
 
        finalize_deplibs=`$ECHO "X $finalize_deplibs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'`
7535
 
        ;;
 
4345
      *darwin*)
 
4346
        # Don't allow lazy linking, it breaks C++ global constructors
 
4347
        if test "$tagname" = CXX ; then
 
4348
        compile_command="$compile_command ${wl}-bind_at_load"
 
4349
        finalize_command="$finalize_command ${wl}-bind_at_load"
 
4350
        fi
 
4351
        ;;
7536
4352
      esac
7537
4353
 
7538
4354
 
7607
4423
          esac
7608
4424
        fi
7609
4425
        case $host in
7610
 
        *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
7611
 
          testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'`
 
4426
        *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
 
4427
          testbindir=`$echo "X$libdir" | $Xsed -e 's*/lib$*/bin*'`
7612
4428
          case :$dllsearchpath: in
7613
4429
          *":$libdir:"*) ;;
7614
 
          ::) dllsearchpath=$libdir;;
7615
4430
          *) dllsearchpath="$dllsearchpath:$libdir";;
7616
4431
          esac
7617
4432
          case :$dllsearchpath: in
7618
4433
          *":$testbindir:"*) ;;
7619
 
          ::) dllsearchpath=$testbindir;;
7620
4434
          *) dllsearchpath="$dllsearchpath:$testbindir";;
7621
4435
          esac
7622
4436
          ;;
7668
4482
 
7669
4483
      if test -n "$libobjs" && test "$build_old_libs" = yes; then
7670
4484
        # Transform all the library objects into standard objects.
7671
 
        compile_command=`$ECHO "X$compile_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
7672
 
        finalize_command=`$ECHO "X$finalize_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
7673
 
      fi
7674
 
 
7675
 
      func_generate_dlsyms "$outputname" "@PROGRAM@" "no"
7676
 
 
7677
 
      # template prelinking step
7678
 
      if test -n "$prelink_cmds"; then
7679
 
        func_execute_cmds "$prelink_cmds" 'exit $?'
7680
 
      fi
7681
 
 
7682
 
      wrappers_required=yes
7683
 
      case $host in
7684
 
      *cygwin* | *mingw* )
7685
 
        if test "$build_libtool_libs" != yes; then
7686
 
          wrappers_required=no
7687
 
        fi
7688
 
        ;;
7689
 
      *cegcc)
7690
 
        # Disable wrappers for cegcc, we are cross compiling anyway.
7691
 
        wrappers_required=no
7692
 
        ;;
7693
 
      *)
7694
 
        if test "$need_relink" = no || test "$build_libtool_libs" != yes; then
7695
 
          wrappers_required=no
7696
 
        fi
7697
 
        ;;
7698
 
      esac
7699
 
      if test "$wrappers_required" = no; then
 
4485
        compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
 
4486
        finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
 
4487
      fi
 
4488
 
 
4489
      dlsyms=
 
4490
      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
 
4491
        if test -n "$NM" && test -n "$global_symbol_pipe"; then
 
4492
          dlsyms="${outputname}S.c"
 
4493
        else
 
4494
          $echo "$modename: not configured to extract global symbols from dlpreopened files" 1>&2
 
4495
        fi
 
4496
      fi
 
4497
 
 
4498
      if test -n "$dlsyms"; then
 
4499
        case $dlsyms in
 
4500
        "") ;;
 
4501
        *.c)
 
4502
          # Discover the nlist of each of the dlfiles.
 
4503
          nlist="$output_objdir/${outputname}.nm"
 
4504
 
 
4505
          $show "$rm $nlist ${nlist}S ${nlist}T"
 
4506
          $run $rm "$nlist" "${nlist}S" "${nlist}T"
 
4507
 
 
4508
          # Parse the name list into a source file.
 
4509
          $show "creating $output_objdir/$dlsyms"
 
4510
 
 
4511
          test -z "$run" && $echo > "$output_objdir/$dlsyms" "\
 
4512
/* $dlsyms - symbol resolution table for \`$outputname' dlsym emulation. */
 
4513
/* Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP */
 
4514
 
 
4515
#ifdef __cplusplus
 
4516
extern \"C\" {
 
4517
#endif
 
4518
 
 
4519
/* Prevent the only kind of declaration conflicts we can make. */
 
4520
#define lt_preloaded_symbols some_other_symbol
 
4521
 
 
4522
/* External symbol declarations for the compiler. */\
 
4523
"
 
4524
 
 
4525
          if test "$dlself" = yes; then
 
4526
            $show "generating symbol list for \`$output'"
 
4527
 
 
4528
            test -z "$run" && $echo ': @PROGRAM@ ' > "$nlist"
 
4529
 
 
4530
            # Add our own program objects to the symbol list.
 
4531
            progfiles=`$echo "X$objs$old_deplibs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
 
4532
            for arg in $progfiles; do
 
4533
              $show "extracting global C symbols from \`$arg'"
 
4534
              $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'"
 
4535
            done
 
4536
 
 
4537
            if test -n "$exclude_expsyms"; then
 
4538
              $run eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T'
 
4539
              $run eval '$mv "$nlist"T "$nlist"'
 
4540
            fi
 
4541
 
 
4542
            if test -n "$export_symbols_regex"; then
 
4543
              $run eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T'
 
4544
              $run eval '$mv "$nlist"T "$nlist"'
 
4545
            fi
 
4546
 
 
4547
            # Prepare the list of exported symbols
 
4548
            if test -z "$export_symbols"; then
 
4549
              export_symbols="$output_objdir/$outputname.exp"
 
4550
              $run $rm $export_symbols
 
4551
              $run eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"'
 
4552
              case $host in
 
4553
              *cygwin* | *mingw* )
 
4554
                $run eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
 
4555
                $run eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"'
 
4556
                ;;
 
4557
              esac
 
4558
            else
 
4559
              $run eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"'
 
4560
              $run eval 'grep -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T'
 
4561
              $run eval 'mv "$nlist"T "$nlist"'
 
4562
              case $host in
 
4563
              *cygwin* | *mingw* )
 
4564
                $run eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
 
4565
                $run eval 'cat "$nlist" >> "$output_objdir/$outputname.def"'
 
4566
                ;;
 
4567
              esac
 
4568
            fi
 
4569
          fi
 
4570
 
 
4571
          for arg in $dlprefiles; do
 
4572
            $show "extracting global C symbols from \`$arg'"
 
4573
            name=`$echo "$arg" | ${SED} -e 's%^.*/%%'`
 
4574
            $run eval '$echo ": $name " >> "$nlist"'
 
4575
            $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'"
 
4576
          done
 
4577
 
 
4578
          if test -z "$run"; then
 
4579
            # Make sure we have at least an empty file.
 
4580
            test -f "$nlist" || : > "$nlist"
 
4581
 
 
4582
            if test -n "$exclude_expsyms"; then
 
4583
              $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T
 
4584
              $mv "$nlist"T "$nlist"
 
4585
            fi
 
4586
 
 
4587
            # Try sorting and uniquifying the output.
 
4588
            if grep -v "^: " < "$nlist" |
 
4589
                if sort -k 3 </dev/null >/dev/null 2>&1; then
 
4590
                  sort -k 3
 
4591
                else
 
4592
                  sort +2
 
4593
                fi |
 
4594
                uniq > "$nlist"S; then
 
4595
              :
 
4596
            else
 
4597
              grep -v "^: " < "$nlist" > "$nlist"S
 
4598
            fi
 
4599
 
 
4600
            if test -f "$nlist"S; then
 
4601
              eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$dlsyms"'
 
4602
            else
 
4603
              $echo '/* NONE */' >> "$output_objdir/$dlsyms"
 
4604
            fi
 
4605
 
 
4606
            $echo >> "$output_objdir/$dlsyms" "\
 
4607
 
 
4608
#undef lt_preloaded_symbols
 
4609
 
 
4610
#if defined (__STDC__) && __STDC__
 
4611
# define lt_ptr void *
 
4612
#else
 
4613
# define lt_ptr char *
 
4614
# define const
 
4615
#endif
 
4616
 
 
4617
/* The mapping between symbol names and symbols. */
 
4618
"
 
4619
 
 
4620
            case $host in
 
4621
            *cygwin* | *mingw* )
 
4622
          $echo >> "$output_objdir/$dlsyms" "\
 
4623
/* DATA imports from DLLs on WIN32 can't be const, because
 
4624
   runtime relocations are performed -- see ld's documentation
 
4625
   on pseudo-relocs */
 
4626
struct {
 
4627
"
 
4628
              ;;
 
4629
            * )
 
4630
          $echo >> "$output_objdir/$dlsyms" "\
 
4631
const struct {
 
4632
"
 
4633
              ;;
 
4634
            esac
 
4635
 
 
4636
 
 
4637
          $echo >> "$output_objdir/$dlsyms" "\
 
4638
  const char *name;
 
4639
  lt_ptr address;
 
4640
}
 
4641
lt_preloaded_symbols[] =
 
4642
{\
 
4643
"
 
4644
 
 
4645
            eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$dlsyms"
 
4646
 
 
4647
            $echo >> "$output_objdir/$dlsyms" "\
 
4648
  {0, (lt_ptr) 0}
 
4649
};
 
4650
 
 
4651
/* This works around a problem in FreeBSD linker */
 
4652
#ifdef FREEBSD_WORKAROUND
 
4653
static const void *lt_preloaded_setup() {
 
4654
  return lt_preloaded_symbols;
 
4655
}
 
4656
#endif
 
4657
 
 
4658
#ifdef __cplusplus
 
4659
}
 
4660
#endif\
 
4661
"
 
4662
          fi
 
4663
 
 
4664
          pic_flag_for_symtable=
 
4665
          case $host in
 
4666
          # compiling the symbol table file with pic_flag works around
 
4667
          # a FreeBSD bug that causes programs to crash when -lm is
 
4668
          # linked before any other PIC object.  But we must not use
 
4669
          # pic_flag when linking with -static.  The problem exists in
 
4670
          # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1.
 
4671
          *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)
 
4672
            case "$compile_command " in
 
4673
            *" -static "*) ;;
 
4674
            *) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND";;
 
4675
            esac;;
 
4676
          *-*-hpux*)
 
4677
            case "$compile_command " in
 
4678
            *" -static "*) ;;
 
4679
            *) pic_flag_for_symtable=" $pic_flag";;
 
4680
            esac
 
4681
          esac
 
4682
 
 
4683
          # Now compile the dynamic symbol file.
 
4684
          $show "(cd $output_objdir && $LTCC  $LTCFLAGS -c$no_builtin_flag$pic_flag_for_symtable \"$dlsyms\")"
 
4685
          $run eval '(cd $output_objdir && $LTCC  $LTCFLAGS -c$no_builtin_flag$pic_flag_for_symtable "$dlsyms")' || exit $?
 
4686
 
 
4687
          # Clean up the generated files.
 
4688
          $show "$rm $output_objdir/$dlsyms $nlist ${nlist}S ${nlist}T"
 
4689
          $run $rm "$output_objdir/$dlsyms" "$nlist" "${nlist}S" "${nlist}T"
 
4690
 
 
4691
          # Transform the symbol file into the correct name.
 
4692
          case $host in
 
4693
          *cygwin* | *mingw* )
 
4694
            if test -f "$output_objdir/${outputname}.def" ; then
 
4695
              compile_command=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}.def $output_objdir/${outputname}S.${objext}%"`
 
4696
              finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}.def $output_objdir/${outputname}S.${objext}%"`
 
4697
            else
 
4698
              compile_command=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
 
4699
              finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
 
4700
             fi
 
4701
            ;;
 
4702
          * )
 
4703
            compile_command=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
 
4704
            finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
 
4705
            ;;
 
4706
          esac
 
4707
          ;;
 
4708
        *)
 
4709
          $echo "$modename: unknown suffix for \`$dlsyms'" 1>&2
 
4710
          exit $EXIT_FAILURE
 
4711
          ;;
 
4712
        esac
 
4713
      else
 
4714
        # We keep going just in case the user didn't refer to
 
4715
        # lt_preloaded_symbols.  The linker will fail if global_symbol_pipe
 
4716
        # really was required.
 
4717
 
 
4718
        # Nullify the symbol file.
 
4719
        compile_command=`$echo "X$compile_command" | $Xsed -e "s% @SYMFILE@%%"`
 
4720
        finalize_command=`$echo "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"`
 
4721
      fi
 
4722
 
 
4723
      if test "$need_relink" = no || test "$build_libtool_libs" != yes; then
7700
4724
        # Replace the output file specification.
7701
 
        compile_command=`$ECHO "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
 
4725
        compile_command=`$echo "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
7702
4726
        link_command="$compile_command$compile_rpath"
7703
4727
 
7704
4728
        # We have no uninstalled library dependencies, so finalize right now.
7705
 
        exit_status=0
7706
 
        func_show_eval "$link_command" 'exit_status=$?'
 
4729
        $show "$link_command"
 
4730
        $run eval "$link_command"
 
4731
        exit_status=$?
7707
4732
 
7708
4733
        # Delete the generated files.
7709
 
        if test -f "$output_objdir/${outputname}S.${objext}"; then
7710
 
          func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"'
 
4734
        if test -n "$dlsyms"; then
 
4735
          $show "$rm $output_objdir/${outputname}S.${objext}"
 
4736
          $run $rm "$output_objdir/${outputname}S.${objext}"
7711
4737
        fi
7712
4738
 
7713
4739
        exit $exit_status
7714
4740
      fi
7715
4741
 
 
4742
      if test -n "$shlibpath_var"; then
 
4743
        # We should set the shlibpath_var
 
4744
        rpath=
 
4745
        for dir in $temp_rpath; do
 
4746
          case $dir in
 
4747
          [\\/]* | [A-Za-z]:[\\/]*)
 
4748
            # Absolute path.
 
4749
            rpath="$rpath$dir:"
 
4750
            ;;
 
4751
          *)
 
4752
            # Relative path: add a thisdir entry.
 
4753
            rpath="$rpath\$thisdir/$dir:"
 
4754
            ;;
 
4755
          esac
 
4756
        done
 
4757
        temp_rpath="$rpath"
 
4758
      fi
 
4759
 
7716
4760
      if test -n "$compile_shlibpath$finalize_shlibpath"; then
7717
4761
        compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command"
7718
4762
      fi
7745
4789
        # We don't need to create a wrapper script.
7746
4790
        link_command="$compile_var$compile_command$compile_rpath"
7747
4791
        # Replace the output file specification.
7748
 
        link_command=`$ECHO "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
 
4792
        link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
7749
4793
        # Delete the old output file.
7750
 
        $opt_dry_run || $RM $output
 
4794
        $run $rm $output
7751
4795
        # Link the executable and exit
7752
 
        func_show_eval "$link_command" 'exit $?'
 
4796
        $show "$link_command"
 
4797
        $run eval "$link_command" || exit $?
7753
4798
        exit $EXIT_SUCCESS
7754
4799
      fi
7755
4800
 
7758
4803
        link_command="$compile_var$compile_command$compile_rpath"
7759
4804
        relink_command="$finalize_var$finalize_command$finalize_rpath"
7760
4805
 
7761
 
        func_warning "this platform does not like uninstalled shared libraries"
7762
 
        func_warning "\`$output' will be relinked during installation"
 
4806
        $echo "$modename: warning: this platform does not like uninstalled shared libraries" 1>&2
 
4807
        $echo "$modename: \`$output' will be relinked during installation" 1>&2
7763
4808
      else
7764
4809
        if test "$fast_install" != no; then
7765
4810
          link_command="$finalize_var$compile_command$finalize_rpath"
7766
4811
          if test "$fast_install" = yes; then
7767
 
            relink_command=`$ECHO "X$compile_var$compile_command$compile_rpath" | $Xsed -e 's%@OUTPUT@%\$progdir/\$file%g'`
 
4812
            relink_command=`$echo "X$compile_var$compile_command$compile_rpath" | $Xsed -e 's%@OUTPUT@%\$progdir/\$file%g'`
7768
4813
          else
7769
4814
            # fast_install is set to needless
7770
4815
            relink_command=
7776
4821
      fi
7777
4822
 
7778
4823
      # Replace the output file specification.
7779
 
      link_command=`$ECHO "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'`
 
4824
      link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'`
7780
4825
 
7781
4826
      # Delete the old output files.
7782
 
      $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname
 
4827
      $run $rm $output $output_objdir/$outputname $output_objdir/lt-$outputname
7783
4828
 
7784
 
      func_show_eval "$link_command" 'exit $?'
 
4829
      $show "$link_command"
 
4830
      $run eval "$link_command" || exit $?
7785
4831
 
7786
4832
      # Now create the wrapper script.
7787
 
      func_verbose "creating $output"
 
4833
      $show "creating $output"
7788
4834
 
7789
4835
      # Quote the relink command for shipping.
7790
4836
      if test -n "$relink_command"; then
7791
4837
        # Preserve any variables that may affect compiler behavior
7792
4838
        for var in $variables_saved_for_relink; do
7793
4839
          if eval test -z \"\${$var+set}\"; then
7794
 
            relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command"
 
4840
            relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command"
7795
4841
          elif eval var_value=\$$var; test -z "$var_value"; then
7796
4842
            relink_command="$var=; export $var; $relink_command"
7797
4843
          else
7798
 
            func_quote_for_eval "$var_value"
7799
 
            relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command"
 
4844
            var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
 
4845
            relink_command="$var=\"$var_value\"; export $var; $relink_command"
7800
4846
          fi
7801
4847
        done
7802
4848
        relink_command="(cd `pwd`; $relink_command)"
7803
 
        relink_command=`$ECHO "X$relink_command" | $Xsed -e "$sed_quote_subst"`
 
4849
        relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
7804
4850
      fi
7805
4851
 
7806
 
      # Quote $ECHO for shipping.
7807
 
      if test "X$ECHO" = "X$SHELL $progpath --fallback-echo"; then
 
4852
      # Quote $echo for shipping.
 
4853
      if test "X$echo" = "X$SHELL $progpath --fallback-echo"; then
7808
4854
        case $progpath in
7809
4855
        [\\/]* | [A-Za-z]:[\\/]*) qecho="$SHELL $progpath --fallback-echo";;
7810
4856
        *) qecho="$SHELL `pwd`/$progpath --fallback-echo";;
7811
4857
        esac
7812
 
        qecho=`$ECHO "X$qecho" | $Xsed -e "$sed_quote_subst"`
 
4858
        qecho=`$echo "X$qecho" | $Xsed -e "$sed_quote_subst"`
7813
4859
      else
7814
 
        qecho=`$ECHO "X$ECHO" | $Xsed -e "$sed_quote_subst"`
 
4860
        qecho=`$echo "X$echo" | $Xsed -e "$sed_quote_subst"`
7815
4861
      fi
7816
4862
 
7817
 
      # Only actually do things if not in dry run mode.
7818
 
      $opt_dry_run || {
 
4863
      # Only actually do things if our run command is non-null.
 
4864
      if test -z "$run"; then
7819
4865
        # win32 will think the script is a binary if it has
7820
4866
        # a .exe suffix, so we strip it off here.
7821
4867
        case $output in
7822
 
          *.exe) func_stripname '' '.exe' "$output"
7823
 
                 output=$func_stripname_result ;;
 
4868
          *.exe) output=`$echo $output|${SED} 's,.exe$,,'` ;;
7824
4869
        esac
7825
4870
        # test for cygwin because mv fails w/o .exe extensions
7826
4871
        case $host in
7827
4872
          *cygwin*)
7828
4873
            exeext=.exe
7829
 
            func_stripname '' '.exe' "$outputname"
7830
 
            outputname=$func_stripname_result ;;
 
4874
            outputname=`$echo $outputname|${SED} 's,.exe$,,'` ;;
7831
4875
          *) exeext= ;;
7832
4876
        esac
7833
4877
        case $host in
7834
4878
          *cygwin* | *mingw* )
7835
 
            func_dirname_and_basename "$output" "" "."
7836
 
            output_name=$func_basename_result
7837
 
            output_path=$func_dirname_result
7838
 
            cwrappersource="$output_path/$objdir/lt-$output_name.c"
7839
 
            cwrapper="$output_path/$output_name.exe"
7840
 
            $RM $cwrappersource $cwrapper
7841
 
            trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15
7842
 
 
7843
 
            func_emit_cwrapperexe_src > $cwrappersource
7844
 
 
7845
 
            # The wrapper executable is built using the $host compiler,
7846
 
            # because it contains $host paths and files. If cross-
7847
 
            # compiling, it, like the target executable, must be
7848
 
            # executed on the $host or under an emulation environment.
7849
 
            $opt_dry_run || {
7850
 
              $LTCC $LTCFLAGS -o $cwrapper $cwrappersource
7851
 
              $STRIP $cwrapper
7852
 
            }
7853
 
 
7854
 
            # Now, create the wrapper script for func_source use:
7855
 
            func_ltwrapper_scriptname $cwrapper
7856
 
            $RM $func_ltwrapper_scriptname_result
7857
 
            trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15
7858
 
            $opt_dry_run || {
7859
 
              # note: this script will not be executed, so do not chmod.
7860
 
              if test "x$build" = "x$host" ; then
7861
 
                $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result
7862
 
              else
7863
 
                func_emit_wrapper no > $func_ltwrapper_scriptname_result
7864
 
              fi
7865
 
            }
 
4879
            output_name=`basename $output`
 
4880
            output_path=`dirname $output`
 
4881
            cwrappersource="$output_path/$objdir/lt-$output_name.c"
 
4882
            cwrapper="$output_path/$output_name.exe"
 
4883
            $rm $cwrappersource $cwrapper
 
4884
            trap "$rm $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15
 
4885
 
 
4886
            cat > $cwrappersource <<EOF
 
4887
 
 
4888
/* $cwrappersource - temporary wrapper executable for $objdir/$outputname
 
4889
   Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
 
4890
 
 
4891
   The $output program cannot be directly executed until all the libtool
 
4892
   libraries that it depends on are installed.
 
4893
 
 
4894
   This wrapper executable should never be moved out of the build directory.
 
4895
   If it is, it will not operate correctly.
 
4896
 
 
4897
   Currently, it simply execs the wrapper *script* "/bin/sh $output",
 
4898
   but could eventually absorb all of the scripts functionality and
 
4899
   exec $objdir/$outputname directly.
 
4900
*/
 
4901
EOF
 
4902
            cat >> $cwrappersource<<"EOF"
 
4903
#include <stdio.h>
 
4904
#include <stdlib.h>
 
4905
#include <unistd.h>
 
4906
#include <malloc.h>
 
4907
#include <stdarg.h>
 
4908
#include <assert.h>
 
4909
#include <string.h>
 
4910
#include <ctype.h>
 
4911
#include <sys/stat.h>
 
4912
 
 
4913
#if defined(PATH_MAX)
 
4914
# define LT_PATHMAX PATH_MAX
 
4915
#elif defined(MAXPATHLEN)
 
4916
# define LT_PATHMAX MAXPATHLEN
 
4917
#else
 
4918
# define LT_PATHMAX 1024
 
4919
#endif
 
4920
 
 
4921
#ifndef DIR_SEPARATOR
 
4922
# define DIR_SEPARATOR '/'
 
4923
# define PATH_SEPARATOR ':'
 
4924
#endif
 
4925
 
 
4926
#if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \
 
4927
  defined (__OS2__)
 
4928
# define HAVE_DOS_BASED_FILE_SYSTEM
 
4929
# ifndef DIR_SEPARATOR_2
 
4930
#  define DIR_SEPARATOR_2 '\\'
 
4931
# endif
 
4932
# ifndef PATH_SEPARATOR_2
 
4933
#  define PATH_SEPARATOR_2 ';'
 
4934
# endif
 
4935
#endif
 
4936
 
 
4937
#ifndef DIR_SEPARATOR_2
 
4938
# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)
 
4939
#else /* DIR_SEPARATOR_2 */
 
4940
# define IS_DIR_SEPARATOR(ch) \
 
4941
        (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))
 
4942
#endif /* DIR_SEPARATOR_2 */
 
4943
 
 
4944
#ifndef PATH_SEPARATOR_2
 
4945
# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR)
 
4946
#else /* PATH_SEPARATOR_2 */
 
4947
# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2)
 
4948
#endif /* PATH_SEPARATOR_2 */
 
4949
 
 
4950
#define XMALLOC(type, num)      ((type *) xmalloc ((num) * sizeof(type)))
 
4951
#define XFREE(stale) do { \
 
4952
  if (stale) { free ((void *) stale); stale = 0; } \
 
4953
} while (0)
 
4954
 
 
4955
/* -DDEBUG is fairly common in CFLAGS.  */
 
4956
#undef DEBUG
 
4957
#if defined DEBUGWRAPPER
 
4958
# define DEBUG(format, ...) fprintf(stderr, format, __VA_ARGS__)
 
4959
#else
 
4960
# define DEBUG(format, ...)
 
4961
#endif
 
4962
 
 
4963
const char *program_name = NULL;
 
4964
 
 
4965
void * xmalloc (size_t num);
 
4966
char * xstrdup (const char *string);
 
4967
const char * base_name (const char *name);
 
4968
char * find_executable(const char *wrapper);
 
4969
int    check_executable(const char *path);
 
4970
char * strendzap(char *str, const char *pat);
 
4971
void lt_fatal (const char *message, ...);
 
4972
 
 
4973
int
 
4974
main (int argc, char *argv[])
 
4975
{
 
4976
  char **newargz;
 
4977
  int i;
 
4978
 
 
4979
  program_name = (char *) xstrdup (base_name (argv[0]));
 
4980
  DEBUG("(main) argv[0]      : %s\n",argv[0]);
 
4981
  DEBUG("(main) program_name : %s\n",program_name);
 
4982
  newargz = XMALLOC(char *, argc+2);
 
4983
EOF
 
4984
 
 
4985
            cat >> $cwrappersource <<EOF
 
4986
  newargz[0] = (char *) xstrdup("$SHELL");
 
4987
EOF
 
4988
 
 
4989
            cat >> $cwrappersource <<"EOF"
 
4990
  newargz[1] = find_executable(argv[0]);
 
4991
  if (newargz[1] == NULL)
 
4992
    lt_fatal("Couldn't find %s", argv[0]);
 
4993
  DEBUG("(main) found exe at : %s\n",newargz[1]);
 
4994
  /* we know the script has the same name, without the .exe */
 
4995
  /* so make sure newargz[1] doesn't end in .exe */
 
4996
  strendzap(newargz[1],".exe");
 
4997
  for (i = 1; i < argc; i++)
 
4998
    newargz[i+1] = xstrdup(argv[i]);
 
4999
  newargz[argc+1] = NULL;
 
5000
 
 
5001
  for (i=0; i<argc+1; i++)
 
5002
  {
 
5003
    DEBUG("(main) newargz[%d]   : %s\n",i,newargz[i]);
 
5004
    ;
 
5005
  }
 
5006
 
 
5007
EOF
 
5008
 
 
5009
            case $host_os in
 
5010
              mingw*)
 
5011
                cat >> $cwrappersource <<EOF
 
5012
  execv("$SHELL",(char const **)newargz);
 
5013
EOF
 
5014
              ;;
 
5015
              *)
 
5016
                cat >> $cwrappersource <<EOF
 
5017
  execv("$SHELL",newargz);
 
5018
EOF
 
5019
              ;;
 
5020
            esac
 
5021
 
 
5022
            cat >> $cwrappersource <<"EOF"
 
5023
  return 127;
 
5024
}
 
5025
 
 
5026
void *
 
5027
xmalloc (size_t num)
 
5028
{
 
5029
  void * p = (void *) malloc (num);
 
5030
  if (!p)
 
5031
    lt_fatal ("Memory exhausted");
 
5032
 
 
5033
  return p;
 
5034
}
 
5035
 
 
5036
char *
 
5037
xstrdup (const char *string)
 
5038
{
 
5039
  return string ? strcpy ((char *) xmalloc (strlen (string) + 1), string) : NULL
 
5040
;
 
5041
}
 
5042
 
 
5043
const char *
 
5044
base_name (const char *name)
 
5045
{
 
5046
  const char *base;
 
5047
 
 
5048
#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
 
5049
  /* Skip over the disk name in MSDOS pathnames. */
 
5050
  if (isalpha ((unsigned char)name[0]) && name[1] == ':')
 
5051
    name += 2;
 
5052
#endif
 
5053
 
 
5054
  for (base = name; *name; name++)
 
5055
    if (IS_DIR_SEPARATOR (*name))
 
5056
      base = name + 1;
 
5057
  return base;
 
5058
}
 
5059
 
 
5060
int
 
5061
check_executable(const char * path)
 
5062
{
 
5063
  struct stat st;
 
5064
 
 
5065
  DEBUG("(check_executable)  : %s\n", path ? (*path ? path : "EMPTY!") : "NULL!");
 
5066
  if ((!path) || (!*path))
 
5067
    return 0;
 
5068
 
 
5069
  if ((stat (path, &st) >= 0) &&
 
5070
      (
 
5071
        /* MinGW & native WIN32 do not support S_IXOTH or S_IXGRP */
 
5072
#if defined (S_IXOTH)
 
5073
       ((st.st_mode & S_IXOTH) == S_IXOTH) ||
 
5074
#endif
 
5075
#if defined (S_IXGRP)
 
5076
       ((st.st_mode & S_IXGRP) == S_IXGRP) ||
 
5077
#endif
 
5078
       ((st.st_mode & S_IXUSR) == S_IXUSR))
 
5079
      )
 
5080
    return 1;
 
5081
  else
 
5082
    return 0;
 
5083
}
 
5084
 
 
5085
/* Searches for the full path of the wrapper.  Returns
 
5086
   newly allocated full path name if found, NULL otherwise */
 
5087
char *
 
5088
find_executable (const char* wrapper)
 
5089
{
 
5090
  int has_slash = 0;
 
5091
  const char* p;
 
5092
  const char* p_next;
 
5093
  /* static buffer for getcwd */
 
5094
  char tmp[LT_PATHMAX + 1];
 
5095
  int tmp_len;
 
5096
  char* concat_name;
 
5097
 
 
5098
  DEBUG("(find_executable)  : %s\n", wrapper ? (*wrapper ? wrapper : "EMPTY!") : "NULL!");
 
5099
 
 
5100
  if ((wrapper == NULL) || (*wrapper == '\0'))
 
5101
    return NULL;
 
5102
 
 
5103
  /* Absolute path? */
 
5104
#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
 
5105
  if (isalpha ((unsigned char)wrapper[0]) && wrapper[1] == ':')
 
5106
  {
 
5107
    concat_name = xstrdup (wrapper);
 
5108
    if (check_executable(concat_name))
 
5109
      return concat_name;
 
5110
    XFREE(concat_name);
 
5111
  }
 
5112
  else
 
5113
  {
 
5114
#endif
 
5115
    if (IS_DIR_SEPARATOR (wrapper[0]))
 
5116
    {
 
5117
      concat_name = xstrdup (wrapper);
 
5118
      if (check_executable(concat_name))
 
5119
        return concat_name;
 
5120
      XFREE(concat_name);
 
5121
    }
 
5122
#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
 
5123
  }
 
5124
#endif
 
5125
 
 
5126
  for (p = wrapper; *p; p++)
 
5127
    if (*p == '/')
 
5128
    {
 
5129
      has_slash = 1;
 
5130
      break;
 
5131
    }
 
5132
  if (!has_slash)
 
5133
  {
 
5134
    /* no slashes; search PATH */
 
5135
    const char* path = getenv ("PATH");
 
5136
    if (path != NULL)
 
5137
    {
 
5138
      for (p = path; *p; p = p_next)
 
5139
      {
 
5140
        const char* q;
 
5141
        size_t p_len;
 
5142
        for (q = p; *q; q++)
 
5143
          if (IS_PATH_SEPARATOR(*q))
 
5144
            break;
 
5145
        p_len = q - p;
 
5146
        p_next = (*q == '\0' ? q : q + 1);
 
5147
        if (p_len == 0)
 
5148
        {
 
5149
          /* empty path: current directory */
 
5150
          if (getcwd (tmp, LT_PATHMAX) == NULL)
 
5151
            lt_fatal ("getcwd failed");
 
5152
          tmp_len = strlen(tmp);
 
5153
          concat_name = XMALLOC(char, tmp_len + 1 + strlen(wrapper) + 1);
 
5154
          memcpy (concat_name, tmp, tmp_len);
 
5155
          concat_name[tmp_len] = '/';
 
5156
          strcpy (concat_name + tmp_len + 1, wrapper);
 
5157
        }
 
5158
        else
 
5159
        {
 
5160
          concat_name = XMALLOC(char, p_len + 1 + strlen(wrapper) + 1);
 
5161
          memcpy (concat_name, p, p_len);
 
5162
          concat_name[p_len] = '/';
 
5163
          strcpy (concat_name + p_len + 1, wrapper);
 
5164
        }
 
5165
        if (check_executable(concat_name))
 
5166
          return concat_name;
 
5167
        XFREE(concat_name);
 
5168
      }
 
5169
    }
 
5170
    /* not found in PATH; assume curdir */
 
5171
  }
 
5172
  /* Relative path | not found in path: prepend cwd */
 
5173
  if (getcwd (tmp, LT_PATHMAX) == NULL)
 
5174
    lt_fatal ("getcwd failed");
 
5175
  tmp_len = strlen(tmp);
 
5176
  concat_name = XMALLOC(char, tmp_len + 1 + strlen(wrapper) + 1);
 
5177
  memcpy (concat_name, tmp, tmp_len);
 
5178
  concat_name[tmp_len] = '/';
 
5179
  strcpy (concat_name + tmp_len + 1, wrapper);
 
5180
 
 
5181
  if (check_executable(concat_name))
 
5182
    return concat_name;
 
5183
  XFREE(concat_name);
 
5184
  return NULL;
 
5185
}
 
5186
 
 
5187
char *
 
5188
strendzap(char *str, const char *pat)
 
5189
{
 
5190
  size_t len, patlen;
 
5191
 
 
5192
  assert(str != NULL);
 
5193
  assert(pat != NULL);
 
5194
 
 
5195
  len = strlen(str);
 
5196
  patlen = strlen(pat);
 
5197
 
 
5198
  if (patlen <= len)
 
5199
  {
 
5200
    str += len - patlen;
 
5201
    if (strcmp(str, pat) == 0)
 
5202
      *str = '\0';
 
5203
  }
 
5204
  return str;
 
5205
}
 
5206
 
 
5207
static void
 
5208
lt_error_core (int exit_status, const char * mode,
 
5209
          const char * message, va_list ap)
 
5210
{
 
5211
  fprintf (stderr, "%s: %s: ", program_name, mode);
 
5212
  vfprintf (stderr, message, ap);
 
5213
  fprintf (stderr, ".\n");
 
5214
 
 
5215
  if (exit_status >= 0)
 
5216
    exit (exit_status);
 
5217
}
 
5218
 
 
5219
void
 
5220
lt_fatal (const char *message, ...)
 
5221
{
 
5222
  va_list ap;
 
5223
  va_start (ap, message);
 
5224
  lt_error_core (EXIT_FAILURE, "FATAL", message, ap);
 
5225
  va_end (ap);
 
5226
}
 
5227
EOF
 
5228
          # we should really use a build-platform specific compiler
 
5229
          # here, but OTOH, the wrappers (shell script and this C one)
 
5230
          # are only useful if you want to execute the "real" binary.
 
5231
          # Since the "real" binary is built for $host, then this
 
5232
          # wrapper might as well be built for $host, too.
 
5233
          $run $LTCC $LTCFLAGS -s -o $cwrapper $cwrappersource
 
5234
          ;;
 
5235
        esac
 
5236
        $rm $output
 
5237
        trap "$rm $output; exit $EXIT_FAILURE" 1 2 15
 
5238
 
 
5239
        $echo > $output "\
 
5240
#! $SHELL
 
5241
 
 
5242
# $output - temporary wrapper script for $objdir/$outputname
 
5243
# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
 
5244
#
 
5245
# The $output program cannot be directly executed until all the libtool
 
5246
# libraries that it depends on are installed.
 
5247
#
 
5248
# This wrapper script should never be moved out of the build directory.
 
5249
# If it is, it will not operate correctly.
 
5250
 
 
5251
# Sed substitution that helps us do robust quoting.  It backslashifies
 
5252
# metacharacters that are still active within double-quoted strings.
 
5253
Xsed='${SED} -e 1s/^X//'
 
5254
sed_quote_subst='$sed_quote_subst'
 
5255
 
 
5256
# The HP-UX ksh and POSIX shell print the target directory to stdout
 
5257
# if CDPATH is set.
 
5258
(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
 
5259
 
 
5260
relink_command=\"$relink_command\"
 
5261
 
 
5262
# This environment variable determines our operation mode.
 
5263
if test \"\$libtool_install_magic\" = \"$magic\"; then
 
5264
  # install mode needs the following variable:
 
5265
  notinst_deplibs='$notinst_deplibs'
 
5266
else
 
5267
  # When we are sourced in execute mode, \$file and \$echo are already set.
 
5268
  if test \"\$libtool_execute_magic\" != \"$magic\"; then
 
5269
    echo=\"$qecho\"
 
5270
    file=\"\$0\"
 
5271
    # Make sure echo works.
 
5272
    if test \"X\$1\" = X--no-reexec; then
 
5273
      # Discard the --no-reexec flag, and continue.
 
5274
      shift
 
5275
    elif test \"X\`(\$echo '\t') 2>/dev/null\`\" = 'X\t'; then
 
5276
      # Yippee, \$echo works!
 
5277
      :
 
5278
    else
 
5279
      # Restart under the correct shell, and then maybe \$echo will work.
 
5280
      exec $SHELL \"\$0\" --no-reexec \${1+\"\$@\"}
 
5281
    fi
 
5282
  fi\
 
5283
"
 
5284
        $echo >> $output "\
 
5285
 
 
5286
  # Find the directory that this script lives in.
 
5287
  thisdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\`
 
5288
  test \"x\$thisdir\" = \"x\$file\" && thisdir=.
 
5289
 
 
5290
  # Follow symbolic links until we get to the real thisdir.
 
5291
  file=\`ls -ld \"\$file\" | ${SED} -n 's/.*-> //p'\`
 
5292
  while test -n \"\$file\"; do
 
5293
    destdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\`
 
5294
 
 
5295
    # If there was a directory component, then change thisdir.
 
5296
    if test \"x\$destdir\" != \"x\$file\"; then
 
5297
      case \"\$destdir\" in
 
5298
      [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;;
 
5299
      *) thisdir=\"\$thisdir/\$destdir\" ;;
 
5300
      esac
 
5301
    fi
 
5302
 
 
5303
    file=\`\$echo \"X\$file\" | \$Xsed -e 's%^.*/%%'\`
 
5304
    file=\`ls -ld \"\$thisdir/\$file\" | ${SED} -n 's/.*-> //p'\`
 
5305
  done
 
5306
 
 
5307
  # Try to get the absolute directory name.
 
5308
  absdir=\`cd \"\$thisdir\" && pwd\`
 
5309
  test -n \"\$absdir\" && thisdir=\"\$absdir\"
 
5310
"
 
5311
 
 
5312
        if test "$fast_install" = yes; then
 
5313
          $echo >> $output "\
 
5314
  program=lt-'$outputname'$exeext
 
5315
  progdir=\"\$thisdir/$objdir\"
 
5316
 
 
5317
  if test ! -f \"\$progdir/\$program\" || \\
 
5318
     { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\
 
5319
       test \"X\$file\" != \"X\$progdir/\$program\"; }; then
 
5320
 
 
5321
    file=\"\$\$-\$program\"
 
5322
 
 
5323
    if test ! -d \"\$progdir\"; then
 
5324
      $mkdir \"\$progdir\"
 
5325
    else
 
5326
      $rm \"\$progdir/\$file\"
 
5327
    fi"
 
5328
 
 
5329
          $echo >> $output "\
 
5330
 
 
5331
    # relink executable if necessary
 
5332
    if test -n \"\$relink_command\"; then
 
5333
      if relink_command_output=\`eval \$relink_command 2>&1\`; then :
 
5334
      else
 
5335
        $echo \"\$relink_command_output\" >&2
 
5336
        $rm \"\$progdir/\$file\"
 
5337
        exit $EXIT_FAILURE
 
5338
      fi
 
5339
    fi
 
5340
 
 
5341
    $mv \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null ||
 
5342
    { $rm \"\$progdir/\$program\";
 
5343
      $mv \"\$progdir/\$file\" \"\$progdir/\$program\"; }
 
5344
    $rm \"\$progdir/\$file\"
 
5345
  fi"
 
5346
        else
 
5347
          $echo >> $output "\
 
5348
  program='$outputname'
 
5349
  progdir=\"\$thisdir/$objdir\"
 
5350
"
 
5351
        fi
 
5352
 
 
5353
        $echo >> $output "\
 
5354
 
 
5355
  if test -f \"\$progdir/\$program\"; then"
 
5356
 
 
5357
        # Export our shlibpath_var if we have one.
 
5358
        if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
 
5359
          $echo >> $output "\
 
5360
    # Add our own library path to $shlibpath_var
 
5361
    $shlibpath_var=\"$temp_rpath\$$shlibpath_var\"
 
5362
 
 
5363
    # Some systems cannot cope with colon-terminated $shlibpath_var
 
5364
    # The second colon is a workaround for a bug in BeOS R4 sed
 
5365
    $shlibpath_var=\`\$echo \"X\$$shlibpath_var\" | \$Xsed -e 's/::*\$//'\`
 
5366
 
 
5367
    export $shlibpath_var
 
5368
"
 
5369
        fi
 
5370
 
 
5371
        # fixup the dll searchpath if we need to.
 
5372
        if test -n "$dllsearchpath"; then
 
5373
          $echo >> $output "\
 
5374
    # Add the dll search path components to the executable PATH
 
5375
    PATH=$dllsearchpath:\$PATH
 
5376
"
 
5377
        fi
 
5378
 
 
5379
        $echo >> $output "\
 
5380
    if test \"\$libtool_execute_magic\" != \"$magic\"; then
 
5381
      # Run the actual program with our arguments.
 
5382
"
 
5383
        case $host in
 
5384
        # Backslashes separate directories on plain windows
 
5385
        *-*-mingw | *-*-os2*)
 
5386
          $echo >> $output "\
 
5387
      exec \"\$progdir\\\\\$program\" \${1+\"\$@\"}
 
5388
"
7866
5389
          ;;
7867
 
          * )
7868
 
            $RM $output
7869
 
            trap "$RM $output; exit $EXIT_FAILURE" 1 2 15
7870
5390
 
7871
 
            func_emit_wrapper no > $output
7872
 
            chmod +x $output
 
5391
        *)
 
5392
          $echo >> $output "\
 
5393
      exec \"\$progdir/\$program\" \${1+\"\$@\"}
 
5394
"
7873
5395
          ;;
7874
5396
        esac
7875
 
      }
 
5397
        $echo >> $output "\
 
5398
      \$echo \"\$0: cannot exec \$program \${1+\"\$@\"}\"
 
5399
      exit $EXIT_FAILURE
 
5400
    fi
 
5401
  else
 
5402
    # The program doesn't exist.
 
5403
    \$echo \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2
 
5404
    \$echo \"This script is just a wrapper for \$program.\" 1>&2
 
5405
    $echo \"See the $PACKAGE documentation for more information.\" 1>&2
 
5406
    exit $EXIT_FAILURE
 
5407
  fi
 
5408
fi\
 
5409
"
 
5410
        chmod +x $output
 
5411
      fi
7876
5412
      exit $EXIT_SUCCESS
7877
5413
      ;;
7878
5414
    esac
7881
5417
    for oldlib in $oldlibs; do
7882
5418
 
7883
5419
      if test "$build_libtool_libs" = convenience; then
7884
 
        oldobjs="$libobjs_save $symfileobj"
 
5420
        oldobjs="$libobjs_save"
7885
5421
        addlibs="$convenience"
7886
5422
        build_libtool_libs=no
7887
5423
      else
7890
5426
          build_libtool_libs=no
7891
5427
        else
7892
5428
          oldobjs="$old_deplibs $non_pic_objects"
7893
 
          if test "$preload" = yes && test -f "$symfileobj"; then
7894
 
            oldobjs="$oldobjs $symfileobj"
7895
 
          fi
7896
5429
        fi
7897
5430
        addlibs="$old_convenience"
7898
5431
      fi
7907
5440
 
7908
5441
      # Do each command in the archive commands.
7909
5442
      if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then
7910
 
        cmds=$old_archive_from_new_cmds
 
5443
       cmds=$old_archive_from_new_cmds
7911
5444
      else
7912
 
 
7913
 
        # Add any objects from preloaded convenience libraries
7914
 
        if test -n "$dlprefiles"; then
7915
 
          gentop="$output_objdir/${outputname}x"
7916
 
          generated="$generated $gentop"
7917
 
 
7918
 
          func_extract_archives $gentop $dlprefiles
7919
 
          oldobjs="$oldobjs $func_extract_archives_result"
7920
 
        fi
7921
 
 
7922
5445
        # POSIX demands no paths to be encoded in archives.  We have
7923
5446
        # to avoid creating archives with duplicate basenames if we
7924
5447
        # might have to extract them afterwards, e.g., when creating a
7927
5450
        # not supported by libtool).
7928
5451
        if (for obj in $oldobjs
7929
5452
            do
7930
 
              func_basename "$obj"
7931
 
              $ECHO "$func_basename_result"
 
5453
              $echo "X$obj" | $Xsed -e 's%^.*/%%'
7932
5454
            done | sort | sort -uc >/dev/null 2>&1); then
7933
5455
          :
7934
5456
        else
7935
 
          $ECHO "copying selected object files to avoid basename conflicts..."
7936
 
          gentop="$output_objdir/${outputname}x"
7937
 
          generated="$generated $gentop"
7938
 
          func_mkdir_p "$gentop"
 
5457
          $echo "copying selected object files to avoid basename conflicts..."
 
5458
 
 
5459
          if test -z "$gentop"; then
 
5460
            gentop="$output_objdir/${outputname}x"
 
5461
            generated="$generated $gentop"
 
5462
 
 
5463
            $show "${rm}r $gentop"
 
5464
            $run ${rm}r "$gentop"
 
5465
            $show "$mkdir $gentop"
 
5466
            $run $mkdir "$gentop"
 
5467
            exit_status=$?
 
5468
            if test "$exit_status" -ne 0 && test ! -d "$gentop"; then
 
5469
              exit $exit_status
 
5470
            fi
 
5471
          fi
 
5472
 
7939
5473
          save_oldobjs=$oldobjs
7940
5474
          oldobjs=
7941
5475
          counter=1
7942
5476
          for obj in $save_oldobjs
7943
5477
          do
7944
 
            func_basename "$obj"
7945
 
            objbase="$func_basename_result"
 
5478
            objbase=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`
7946
5479
            case " $oldobjs " in
7947
5480
            " ") oldobjs=$obj ;;
7948
5481
            *[\ /]"$objbase "*)
7950
5483
                # Make sure we don't pick an alternate name that also
7951
5484
                # overlaps.
7952
5485
                newobj=lt$counter-$objbase
7953
 
                func_arith $counter + 1
7954
 
                counter=$func_arith_result
 
5486
                counter=`expr $counter + 1`
7955
5487
                case " $oldobjs " in
7956
5488
                *[\ /]"$newobj "*) ;;
7957
5489
                *) if test ! -f "$gentop/$newobj"; then break; fi ;;
7958
5490
                esac
7959
5491
              done
7960
 
              func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj"
 
5492
              $show "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj"
 
5493
              $run ln "$obj" "$gentop/$newobj" ||
 
5494
              $run cp "$obj" "$gentop/$newobj"
7961
5495
              oldobjs="$oldobjs $gentop/$newobj"
7962
5496
              ;;
7963
5497
            *) oldobjs="$oldobjs $obj" ;;
7964
5498
            esac
7965
5499
          done
7966
5500
        fi
 
5501
 
7967
5502
        eval cmds=\"$old_archive_cmds\"
7968
5503
 
7969
 
        func_len " $cmds"
7970
 
        len=$func_len_result
7971
 
        if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then
 
5504
        if len=`expr "X$cmds" : ".*"` &&
 
5505
             test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then
7972
5506
          cmds=$old_archive_cmds
7973
5507
        else
7974
5508
          # the command line is too long to link in one step, link in parts
7975
 
          func_verbose "using piecewise archive linking..."
 
5509
          $echo "using piecewise archive linking..."
7976
5510
          save_RANLIB=$RANLIB
7977
5511
          RANLIB=:
7978
5512
          objlist=
7979
5513
          concat_cmds=
7980
5514
          save_oldobjs=$oldobjs
7981
 
          oldobjs=
 
5515
 
7982
5516
          # Is there a better way of finding the last object in the list?
7983
5517
          for obj in $save_oldobjs
7984
5518
          do
7985
5519
            last_oldobj=$obj
7986
5520
          done
7987
 
          eval test_cmds=\"$old_archive_cmds\"
7988
 
          func_len " $test_cmds"
7989
 
          len0=$func_len_result
7990
 
          len=$len0
7991
5521
          for obj in $save_oldobjs
7992
5522
          do
7993
 
            func_len " $obj"
7994
 
            func_arith $len + $func_len_result
7995
 
            len=$func_arith_result
7996
 
            func_append objlist " $obj"
7997
 
            if test "$len" -lt "$max_cmd_len"; then
 
5523
            oldobjs="$objlist $obj"
 
5524
            objlist="$objlist $obj"
 
5525
            eval test_cmds=\"$old_archive_cmds\"
 
5526
            if len=`expr "X$test_cmds" : ".*" 2>/dev/null` &&
 
5527
               test "$len" -le "$max_cmd_len"; then
7998
5528
              :
7999
5529
            else
8000
5530
              # the above command should be used before it gets too long
8001
5531
              oldobjs=$objlist
8002
5532
              if test "$obj" = "$last_oldobj" ; then
8003
 
                RANLIB=$save_RANLIB
 
5533
                RANLIB=$save_RANLIB
8004
5534
              fi
8005
5535
              test -z "$concat_cmds" || concat_cmds=$concat_cmds~
8006
5536
              eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\"
8007
5537
              objlist=
8008
 
              len=$len0
8009
5538
            fi
8010
5539
          done
8011
5540
          RANLIB=$save_RANLIB
8017
5546
          fi
8018
5547
        fi
8019
5548
      fi
8020
 
      func_execute_cmds "$cmds" 'exit $?'
 
5549
      save_ifs="$IFS"; IFS='~'
 
5550
      for cmd in $cmds; do
 
5551
        eval cmd=\"$cmd\"
 
5552
        IFS="$save_ifs"
 
5553
        $show "$cmd"
 
5554
        $run eval "$cmd" || exit $?
 
5555
      done
 
5556
      IFS="$save_ifs"
8021
5557
    done
8022
5558
 
8023
 
    test -n "$generated" && \
8024
 
      func_show_eval "${RM}r$generated"
 
5559
    if test -n "$generated"; then
 
5560
      $show "${rm}r$generated"
 
5561
      $run ${rm}r$generated
 
5562
    fi
8025
5563
 
8026
5564
    # Now create the libtool archive.
8027
5565
    case $output in
8028
5566
    *.la)
8029
5567
      old_library=
8030
5568
      test "$build_old_libs" = yes && old_library="$libname.$libext"
8031
 
      func_verbose "creating $output"
 
5569
      $show "creating $output"
8032
5570
 
8033
5571
      # Preserve any variables that may affect compiler behavior
8034
5572
      for var in $variables_saved_for_relink; do
8035
5573
        if eval test -z \"\${$var+set}\"; then
8036
 
          relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command"
 
5574
          relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command"
8037
5575
        elif eval var_value=\$$var; test -z "$var_value"; then
8038
5576
          relink_command="$var=; export $var; $relink_command"
8039
5577
        else
8040
 
          func_quote_for_eval "$var_value"
8041
 
          relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command"
 
5578
          var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
 
5579
          relink_command="$var=\"$var_value\"; export $var; $relink_command"
8042
5580
        fi
8043
5581
      done
8044
5582
      # Quote the link command for shipping.
8045
5583
      relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)"
8046
 
      relink_command=`$ECHO "X$relink_command" | $Xsed -e "$sed_quote_subst"`
 
5584
      relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
8047
5585
      if test "$hardcode_automatic" = yes ; then
8048
5586
        relink_command=
8049
5587
      fi
8050
5588
 
 
5589
 
8051
5590
      # Only create the output if not a dry run.
8052
 
      $opt_dry_run || {
 
5591
      if test -z "$run"; then
8053
5592
        for installed in no yes; do
8054
5593
          if test "$installed" = yes; then
8055
5594
            if test -z "$install_libdir"; then
8061
5600
            for deplib in $dependency_libs; do
8062
5601
              case $deplib in
8063
5602
              *.la)
8064
 
                func_basename "$deplib"
8065
 
                name="$func_basename_result"
 
5603
                name=`$echo "X$deplib" | $Xsed -e 's%^.*/%%'`
8066
5604
                eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
8067
 
                test -z "$libdir" && \
8068
 
                  func_fatal_error "\`$deplib' is not a valid libtool archive"
 
5605
                if test -z "$libdir"; then
 
5606
                  $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2
 
5607
                  exit $EXIT_FAILURE
 
5608
                fi
8069
5609
                newdependency_libs="$newdependency_libs $libdir/$name"
8070
5610
                ;;
8071
5611
              *) newdependency_libs="$newdependency_libs $deplib" ;;
8073
5613
            done
8074
5614
            dependency_libs="$newdependency_libs"
8075
5615
            newdlfiles=
8076
 
 
8077
5616
            for lib in $dlfiles; do
8078
 
              case $lib in
8079
 
              *.la)
8080
 
                func_basename "$lib"
8081
 
                name="$func_basename_result"
8082
 
                eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
8083
 
                test -z "$libdir" && \
8084
 
                  func_fatal_error "\`$lib' is not a valid libtool archive"
8085
 
                newdlfiles="$newdlfiles $libdir/$name"
8086
 
                ;;
8087
 
              *) newdlfiles="$newdlfiles $lib" ;;
8088
 
              esac
 
5617
              name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
 
5618
              eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
 
5619
              if test -z "$libdir"; then
 
5620
                $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
 
5621
                exit $EXIT_FAILURE
 
5622
              fi
 
5623
              newdlfiles="$newdlfiles $libdir/$name"
8089
5624
            done
8090
5625
            dlfiles="$newdlfiles"
8091
5626
            newdlprefiles=
8092
5627
            for lib in $dlprefiles; do
8093
 
              case $lib in
8094
 
              *.la)
8095
 
                # Only pass preopened files to the pseudo-archive (for
8096
 
                # eventual linking with the app. that links it) if we
8097
 
                # didn't already link the preopened objects directly into
8098
 
                # the library:
8099
 
                func_basename "$lib"
8100
 
                name="$func_basename_result"
8101
 
                eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
8102
 
                test -z "$libdir" && \
8103
 
                  func_fatal_error "\`$lib' is not a valid libtool archive"
8104
 
                newdlprefiles="$newdlprefiles $libdir/$name"
8105
 
                ;;
8106
 
              esac
 
5628
              name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
 
5629
              eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
 
5630
              if test -z "$libdir"; then
 
5631
                $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
 
5632
                exit $EXIT_FAILURE
 
5633
              fi
 
5634
              newdlprefiles="$newdlprefiles $libdir/$name"
8107
5635
            done
8108
5636
            dlprefiles="$newdlprefiles"
8109
5637
          else
8126
5654
            done
8127
5655
            dlprefiles="$newdlprefiles"
8128
5656
          fi
8129
 
          $RM $output
 
5657
          $rm $output
8130
5658
          # place dlname in correct position for cygwin
8131
5659
          tdlname=$dlname
8132
5660
          case $host,$output,$installed,$module,$dlname in
8133
 
            *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) tdlname=../bin/$dlname ;;
 
5661
            *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll) tdlname=../bin/$dlname ;;
8134
5662
          esac
8135
 
          $ECHO > $output "\
 
5663
          $echo > $output "\
8136
5664
# $outputname - a libtool library file
8137
 
# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
 
5665
# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
8138
5666
#
8139
5667
# Please DO NOT delete this file!
8140
5668
# It is necessary for linking the library.
8148
5676
# The name of the static archive.
8149
5677
old_library='$old_library'
8150
5678
 
8151
 
# Linker flags that can not go in dependency_libs.
8152
 
inherited_linker_flags='$new_inherited_linker_flags'
8153
 
 
8154
5679
# Libraries that this one depends upon.
8155
5680
dependency_libs='$dependency_libs'
8156
5681
 
8157
 
# Names of additional weak libraries provided by this library
8158
 
weak_library_names='$weak_libs'
8159
 
 
8160
5682
# Version information for $libname.
8161
5683
current=$current
8162
5684
age=$age
8175
5697
# Directory that this library needs to be installed in:
8176
5698
libdir='$install_libdir'"
8177
5699
          if test "$installed" = no && test "$need_relink" = yes; then
8178
 
            $ECHO >> $output "\
 
5700
            $echo >> $output "\
8179
5701
relink_command=\"$relink_command\""
8180
5702
          fi
8181
5703
        done
8182
 
      }
 
5704
      fi
8183
5705
 
8184
5706
      # Do a symbolic link so that the libtool archive can be found in
8185
5707
      # LD_LIBRARY_PATH before the program is installed.
8186
 
      func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?'
8187
 
      ;;
8188
 
    esac
8189
 
    exit $EXIT_SUCCESS
8190
 
}
8191
 
 
8192
 
{ test "$mode" = link || test "$mode" = relink; } &&
8193
 
    func_mode_link ${1+"$@"}
8194
 
 
8195
 
 
8196
 
# func_mode_uninstall arg...
8197
 
func_mode_uninstall ()
8198
 
{
8199
 
    $opt_debug
8200
 
    RM="$nonopt"
 
5708
      $show "(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)"
 
5709
      $run eval '(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)' || exit $?
 
5710
      ;;
 
5711
    esac
 
5712
    exit $EXIT_SUCCESS
 
5713
    ;;
 
5714
 
 
5715
  # libtool install mode
 
5716
  install)
 
5717
    modename="$modename: install"
 
5718
 
 
5719
    # There may be an optional sh(1) argument at the beginning of
 
5720
    # install_prog (especially on Windows NT).
 
5721
    if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh ||
 
5722
       # Allow the use of GNU shtool's install command.
 
5723
       $echo "X$nonopt" | grep shtool > /dev/null; then
 
5724
      # Aesthetically quote it.
 
5725
      arg=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"`
 
5726
      case $arg in
 
5727
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \     ]*|*]*|"")
 
5728
        arg="\"$arg\""
 
5729
        ;;
 
5730
      esac
 
5731
      install_prog="$arg "
 
5732
      arg="$1"
 
5733
      shift
 
5734
    else
 
5735
      install_prog=
 
5736
      arg=$nonopt
 
5737
    fi
 
5738
 
 
5739
    # The real first argument should be the name of the installation program.
 
5740
    # Aesthetically quote it.
 
5741
    arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
 
5742
    case $arg in
 
5743
    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \       ]*|*]*|"")
 
5744
      arg="\"$arg\""
 
5745
      ;;
 
5746
    esac
 
5747
    install_prog="$install_prog$arg"
 
5748
 
 
5749
    # We need to accept at least all the BSD install flags.
 
5750
    dest=
 
5751
    files=
 
5752
    opts=
 
5753
    prev=
 
5754
    install_type=
 
5755
    isdir=no
 
5756
    stripme=
 
5757
    for arg
 
5758
    do
 
5759
      if test -n "$dest"; then
 
5760
        files="$files $dest"
 
5761
        dest=$arg
 
5762
        continue
 
5763
      fi
 
5764
 
 
5765
      case $arg in
 
5766
      -d) isdir=yes ;;
 
5767
      -f) 
 
5768
        case " $install_prog " in
 
5769
        *[\\\ /]cp\ *) ;;
 
5770
        *) prev=$arg ;;
 
5771
        esac
 
5772
        ;;
 
5773
      -g | -m | -o) prev=$arg ;;
 
5774
      -s)
 
5775
        stripme=" -s"
 
5776
        continue
 
5777
        ;;
 
5778
      -*)
 
5779
        ;;
 
5780
      *)
 
5781
        # If the previous option needed an argument, then skip it.
 
5782
        if test -n "$prev"; then
 
5783
          prev=
 
5784
        else
 
5785
          dest=$arg
 
5786
          continue
 
5787
        fi
 
5788
        ;;
 
5789
      esac
 
5790
 
 
5791
      # Aesthetically quote the argument.
 
5792
      arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
 
5793
      case $arg in
 
5794
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \     ]*|*]*|"")
 
5795
        arg="\"$arg\""
 
5796
        ;;
 
5797
      esac
 
5798
      install_prog="$install_prog $arg"
 
5799
    done
 
5800
 
 
5801
    if test -z "$install_prog"; then
 
5802
      $echo "$modename: you must specify an install program" 1>&2
 
5803
      $echo "$help" 1>&2
 
5804
      exit $EXIT_FAILURE
 
5805
    fi
 
5806
 
 
5807
    if test -n "$prev"; then
 
5808
      $echo "$modename: the \`$prev' option requires an argument" 1>&2
 
5809
      $echo "$help" 1>&2
 
5810
      exit $EXIT_FAILURE
 
5811
    fi
 
5812
 
 
5813
    if test -z "$files"; then
 
5814
      if test -z "$dest"; then
 
5815
        $echo "$modename: no file or destination specified" 1>&2
 
5816
      else
 
5817
        $echo "$modename: you must specify a destination" 1>&2
 
5818
      fi
 
5819
      $echo "$help" 1>&2
 
5820
      exit $EXIT_FAILURE
 
5821
    fi
 
5822
 
 
5823
    # Strip any trailing slash from the destination.
 
5824
    dest=`$echo "X$dest" | $Xsed -e 's%/$%%'`
 
5825
 
 
5826
    # Check to see that the destination is a directory.
 
5827
    test -d "$dest" && isdir=yes
 
5828
    if test "$isdir" = yes; then
 
5829
      destdir="$dest"
 
5830
      destname=
 
5831
    else
 
5832
      destdir=`$echo "X$dest" | $Xsed -e 's%/[^/]*$%%'`
 
5833
      test "X$destdir" = "X$dest" && destdir=.
 
5834
      destname=`$echo "X$dest" | $Xsed -e 's%^.*/%%'`
 
5835
 
 
5836
      # Not a directory, so check to see that there is only one file specified.
 
5837
      set dummy $files
 
5838
      if test "$#" -gt 2; then
 
5839
        $echo "$modename: \`$dest' is not a directory" 1>&2
 
5840
        $echo "$help" 1>&2
 
5841
        exit $EXIT_FAILURE
 
5842
      fi
 
5843
    fi
 
5844
    case $destdir in
 
5845
    [\\/]* | [A-Za-z]:[\\/]*) ;;
 
5846
    *)
 
5847
      for file in $files; do
 
5848
        case $file in
 
5849
        *.lo) ;;
 
5850
        *)
 
5851
          $echo "$modename: \`$destdir' must be an absolute directory name" 1>&2
 
5852
          $echo "$help" 1>&2
 
5853
          exit $EXIT_FAILURE
 
5854
          ;;
 
5855
        esac
 
5856
      done
 
5857
      ;;
 
5858
    esac
 
5859
 
 
5860
    # This variable tells wrapper scripts just to set variables rather
 
5861
    # than running their programs.
 
5862
    libtool_install_magic="$magic"
 
5863
 
 
5864
    staticlibs=
 
5865
    future_libdirs=
 
5866
    current_libdirs=
 
5867
    for file in $files; do
 
5868
 
 
5869
      # Do each installation.
 
5870
      case $file in
 
5871
      *.$libext)
 
5872
        # Do the static libraries later.
 
5873
        staticlibs="$staticlibs $file"
 
5874
        ;;
 
5875
 
 
5876
      *.la)
 
5877
        # Check to see that this really is a libtool archive.
 
5878
        if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
 
5879
        else
 
5880
          $echo "$modename: \`$file' is not a valid libtool archive" 1>&2
 
5881
          $echo "$help" 1>&2
 
5882
          exit $EXIT_FAILURE
 
5883
        fi
 
5884
 
 
5885
        library_names=
 
5886
        old_library=
 
5887
        relink_command=
 
5888
        # If there is no directory component, then add one.
 
5889
        case $file in
 
5890
        */* | *\\*) . $file ;;
 
5891
        *) . ./$file ;;
 
5892
        esac
 
5893
 
 
5894
        # Add the libdir to current_libdirs if it is the destination.
 
5895
        if test "X$destdir" = "X$libdir"; then
 
5896
          case "$current_libdirs " in
 
5897
          *" $libdir "*) ;;
 
5898
          *) current_libdirs="$current_libdirs $libdir" ;;
 
5899
          esac
 
5900
        else
 
5901
          # Note the libdir as a future libdir.
 
5902
          case "$future_libdirs " in
 
5903
          *" $libdir "*) ;;
 
5904
          *) future_libdirs="$future_libdirs $libdir" ;;
 
5905
          esac
 
5906
        fi
 
5907
 
 
5908
        dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`/
 
5909
        test "X$dir" = "X$file/" && dir=
 
5910
        dir="$dir$objdir"
 
5911
 
 
5912
        if test -n "$relink_command"; then
 
5913
          # Determine the prefix the user has applied to our future dir.
 
5914
          inst_prefix_dir=`$echo "$destdir" | $SED "s%$libdir\$%%"`
 
5915
 
 
5916
          # Don't allow the user to place us outside of our expected
 
5917
          # location b/c this prevents finding dependent libraries that
 
5918
          # are installed to the same prefix.
 
5919
          # At present, this check doesn't affect windows .dll's that
 
5920
          # are installed into $libdir/../bin (currently, that works fine)
 
5921
          # but it's something to keep an eye on.
 
5922
          if test "$inst_prefix_dir" = "$destdir"; then
 
5923
            $echo "$modename: error: cannot install \`$file' to a directory not ending in $libdir" 1>&2
 
5924
            exit $EXIT_FAILURE
 
5925
          fi
 
5926
 
 
5927
          if test -n "$inst_prefix_dir"; then
 
5928
            # Stick the inst_prefix_dir data into the link command.
 
5929
            relink_command=`$echo "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"`
 
5930
          else
 
5931
            relink_command=`$echo "$relink_command" | $SED "s%@inst_prefix_dir@%%"`
 
5932
          fi
 
5933
 
 
5934
          $echo "$modename: warning: relinking \`$file'" 1>&2
 
5935
          $show "$relink_command"
 
5936
          if $run eval "$relink_command"; then :
 
5937
          else
 
5938
            $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2
 
5939
            exit $EXIT_FAILURE
 
5940
          fi
 
5941
        fi
 
5942
 
 
5943
        # See the names of the shared library.
 
5944
        set dummy $library_names
 
5945
        if test -n "$2"; then
 
5946
          realname="$2"
 
5947
          shift
 
5948
          shift
 
5949
 
 
5950
          srcname="$realname"
 
5951
          test -n "$relink_command" && srcname="$realname"T
 
5952
 
 
5953
          # Install the shared library and build the symlinks.
 
5954
          $show "$install_prog $dir/$srcname $destdir/$realname"
 
5955
          $run eval "$install_prog $dir/$srcname $destdir/$realname" || exit $?
 
5956
          if test -n "$stripme" && test -n "$striplib"; then
 
5957
            $show "$striplib $destdir/$realname"
 
5958
            $run eval "$striplib $destdir/$realname" || exit $?
 
5959
          fi
 
5960
 
 
5961
          if test "$#" -gt 0; then
 
5962
            # Delete the old symlinks, and create new ones.
 
5963
            # Try `ln -sf' first, because the `ln' binary might depend on
 
5964
            # the symlink we replace!  Solaris /bin/ln does not understand -f,
 
5965
            # so we also need to try rm && ln -s.
 
5966
            for linkname
 
5967
            do
 
5968
              if test "$linkname" != "$realname"; then
 
5969
                $show "(cd $destdir && { $LN_S -f $realname $linkname || { $rm $linkname && $LN_S $realname $linkname; }; })"
 
5970
                $run eval "(cd $destdir && { $LN_S -f $realname $linkname || { $rm $linkname && $LN_S $realname $linkname; }; })"
 
5971
              fi
 
5972
            done
 
5973
          fi
 
5974
 
 
5975
          # Do each command in the postinstall commands.
 
5976
          lib="$destdir/$realname"
 
5977
          cmds=$postinstall_cmds
 
5978
          save_ifs="$IFS"; IFS='~'
 
5979
          for cmd in $cmds; do
 
5980
            IFS="$save_ifs"
 
5981
            eval cmd=\"$cmd\"
 
5982
            $show "$cmd"
 
5983
            $run eval "$cmd" || {
 
5984
              lt_exit=$?
 
5985
 
 
5986
              # Restore the uninstalled library and exit
 
5987
              if test "$mode" = relink; then
 
5988
                $run eval '(cd $output_objdir && $rm ${realname}T && $mv ${realname}U $realname)'
 
5989
              fi
 
5990
 
 
5991
              exit $lt_exit
 
5992
            }
 
5993
          done
 
5994
          IFS="$save_ifs"
 
5995
        fi
 
5996
 
 
5997
        # Install the pseudo-library for information purposes.
 
5998
        name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
 
5999
        instname="$dir/$name"i
 
6000
        $show "$install_prog $instname $destdir/$name"
 
6001
        $run eval "$install_prog $instname $destdir/$name" || exit $?
 
6002
 
 
6003
        # Maybe install the static library, too.
 
6004
        test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
 
6005
        ;;
 
6006
 
 
6007
      *.lo)
 
6008
        # Install (i.e. copy) a libtool object.
 
6009
 
 
6010
        # Figure out destination file name, if it wasn't already specified.
 
6011
        if test -n "$destname"; then
 
6012
          destfile="$destdir/$destname"
 
6013
        else
 
6014
          destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
 
6015
          destfile="$destdir/$destfile"
 
6016
        fi
 
6017
 
 
6018
        # Deduce the name of the destination old-style object file.
 
6019
        case $destfile in
 
6020
        *.lo)
 
6021
          staticdest=`$echo "X$destfile" | $Xsed -e "$lo2o"`
 
6022
          ;;
 
6023
        *.$objext)
 
6024
          staticdest="$destfile"
 
6025
          destfile=
 
6026
          ;;
 
6027
        *)
 
6028
          $echo "$modename: cannot copy a libtool object to \`$destfile'" 1>&2
 
6029
          $echo "$help" 1>&2
 
6030
          exit $EXIT_FAILURE
 
6031
          ;;
 
6032
        esac
 
6033
 
 
6034
        # Install the libtool object if requested.
 
6035
        if test -n "$destfile"; then
 
6036
          $show "$install_prog $file $destfile"
 
6037
          $run eval "$install_prog $file $destfile" || exit $?
 
6038
        fi
 
6039
 
 
6040
        # Install the old object if enabled.
 
6041
        if test "$build_old_libs" = yes; then
 
6042
          # Deduce the name of the old-style object file.
 
6043
          staticobj=`$echo "X$file" | $Xsed -e "$lo2o"`
 
6044
 
 
6045
          $show "$install_prog $staticobj $staticdest"
 
6046
          $run eval "$install_prog \$staticobj \$staticdest" || exit $?
 
6047
        fi
 
6048
        exit $EXIT_SUCCESS
 
6049
        ;;
 
6050
 
 
6051
      *)
 
6052
        # Figure out destination file name, if it wasn't already specified.
 
6053
        if test -n "$destname"; then
 
6054
          destfile="$destdir/$destname"
 
6055
        else
 
6056
          destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
 
6057
          destfile="$destdir/$destfile"
 
6058
        fi
 
6059
 
 
6060
        # If the file is missing, and there is a .exe on the end, strip it
 
6061
        # because it is most likely a libtool script we actually want to
 
6062
        # install
 
6063
        stripped_ext=""
 
6064
        case $file in
 
6065
          *.exe)
 
6066
            if test ! -f "$file"; then
 
6067
              file=`$echo $file|${SED} 's,.exe$,,'`
 
6068
              stripped_ext=".exe"
 
6069
            fi
 
6070
            ;;
 
6071
        esac
 
6072
 
 
6073
        # Do a test to see if this is really a libtool program.
 
6074
        case $host in
 
6075
        *cygwin*|*mingw*)
 
6076
            wrapper=`$echo $file | ${SED} -e 's,.exe$,,'`
 
6077
            ;;
 
6078
        *)
 
6079
            wrapper=$file
 
6080
            ;;
 
6081
        esac
 
6082
        if (${SED} -e '4q' $wrapper | grep "^# Generated by .*$PACKAGE")>/dev/null 2>&1; then
 
6083
          notinst_deplibs=
 
6084
          relink_command=
 
6085
 
 
6086
          # Note that it is not necessary on cygwin/mingw to append a dot to
 
6087
          # foo even if both foo and FILE.exe exist: automatic-append-.exe
 
6088
          # behavior happens only for exec(3), not for open(2)!  Also, sourcing
 
6089
          # `FILE.' does not work on cygwin managed mounts.
 
6090
          #
 
6091
          # If there is no directory component, then add one.
 
6092
          case $wrapper in
 
6093
          */* | *\\*) . ${wrapper} ;;
 
6094
          *) . ./${wrapper} ;;
 
6095
          esac
 
6096
 
 
6097
          # Check the variables that should have been set.
 
6098
          if test -z "$notinst_deplibs"; then
 
6099
            $echo "$modename: invalid libtool wrapper script \`$wrapper'" 1>&2
 
6100
            exit $EXIT_FAILURE
 
6101
          fi
 
6102
 
 
6103
          finalize=yes
 
6104
          for lib in $notinst_deplibs; do
 
6105
            # Check to see that each library is installed.
 
6106
            libdir=
 
6107
            if test -f "$lib"; then
 
6108
              # If there is no directory component, then add one.
 
6109
              case $lib in
 
6110
              */* | *\\*) . $lib ;;
 
6111
              *) . ./$lib ;;
 
6112
              esac
 
6113
            fi
 
6114
            libfile="$libdir/"`$echo "X$lib" | $Xsed -e 's%^.*/%%g'` ### testsuite: skip nested quoting test
 
6115
            if test -n "$libdir" && test ! -f "$libfile"; then
 
6116
              $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2
 
6117
              finalize=no
 
6118
            fi
 
6119
          done
 
6120
 
 
6121
          relink_command=
 
6122
          # Note that it is not necessary on cygwin/mingw to append a dot to
 
6123
          # foo even if both foo and FILE.exe exist: automatic-append-.exe
 
6124
          # behavior happens only for exec(3), not for open(2)!  Also, sourcing
 
6125
          # `FILE.' does not work on cygwin managed mounts.
 
6126
          #
 
6127
          # If there is no directory component, then add one.
 
6128
          case $wrapper in
 
6129
          */* | *\\*) . ${wrapper} ;;
 
6130
          *) . ./${wrapper} ;;
 
6131
          esac
 
6132
 
 
6133
          outputname=
 
6134
          if test "$fast_install" = no && test -n "$relink_command"; then
 
6135
            if test "$finalize" = yes && test -z "$run"; then
 
6136
              tmpdir=`func_mktempdir`
 
6137
              file=`$echo "X$file$stripped_ext" | $Xsed -e 's%^.*/%%'`
 
6138
              outputname="$tmpdir/$file"
 
6139
              # Replace the output file specification.
 
6140
              relink_command=`$echo "X$relink_command" | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g'`
 
6141
 
 
6142
              $show "$relink_command"
 
6143
              if $run eval "$relink_command"; then :
 
6144
              else
 
6145
                $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2
 
6146
                ${rm}r "$tmpdir"
 
6147
                continue
 
6148
              fi
 
6149
              file="$outputname"
 
6150
            else
 
6151
              $echo "$modename: warning: cannot relink \`$file'" 1>&2
 
6152
            fi
 
6153
          else
 
6154
            # Install the binary that we compiled earlier.
 
6155
            file=`$echo "X$file$stripped_ext" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"`
 
6156
          fi
 
6157
        fi
 
6158
 
 
6159
        # remove .exe since cygwin /usr/bin/install will append another
 
6160
        # one anyway 
 
6161
        case $install_prog,$host in
 
6162
        */usr/bin/install*,*cygwin*)
 
6163
          case $file:$destfile in
 
6164
          *.exe:*.exe)
 
6165
            # this is ok
 
6166
            ;;
 
6167
          *.exe:*)
 
6168
            destfile=$destfile.exe
 
6169
            ;;
 
6170
          *:*.exe)
 
6171
            destfile=`$echo $destfile | ${SED} -e 's,.exe$,,'`
 
6172
            ;;
 
6173
          esac
 
6174
          ;;
 
6175
        esac
 
6176
        $show "$install_prog$stripme $file $destfile"
 
6177
        $run eval "$install_prog\$stripme \$file \$destfile" || exit $?
 
6178
        test -n "$outputname" && ${rm}r "$tmpdir"
 
6179
        ;;
 
6180
      esac
 
6181
    done
 
6182
 
 
6183
    for file in $staticlibs; do
 
6184
      name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
 
6185
 
 
6186
      # Set up the ranlib parameters.
 
6187
      oldlib="$destdir/$name"
 
6188
 
 
6189
      $show "$install_prog $file $oldlib"
 
6190
      $run eval "$install_prog \$file \$oldlib" || exit $?
 
6191
 
 
6192
      if test -n "$stripme" && test -n "$old_striplib"; then
 
6193
        $show "$old_striplib $oldlib"
 
6194
        $run eval "$old_striplib $oldlib" || exit $?
 
6195
      fi
 
6196
 
 
6197
      # Do each command in the postinstall commands.
 
6198
      cmds=$old_postinstall_cmds
 
6199
      save_ifs="$IFS"; IFS='~'
 
6200
      for cmd in $cmds; do
 
6201
        IFS="$save_ifs"
 
6202
        eval cmd=\"$cmd\"
 
6203
        $show "$cmd"
 
6204
        $run eval "$cmd" || exit $?
 
6205
      done
 
6206
      IFS="$save_ifs"
 
6207
    done
 
6208
 
 
6209
    if test -n "$future_libdirs"; then
 
6210
      $echo "$modename: warning: remember to run \`$progname --finish$future_libdirs'" 1>&2
 
6211
    fi
 
6212
 
 
6213
    if test -n "$current_libdirs"; then
 
6214
      # Maybe just do a dry run.
 
6215
      test -n "$run" && current_libdirs=" -n$current_libdirs"
 
6216
      exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs'
 
6217
    else
 
6218
      exit $EXIT_SUCCESS
 
6219
    fi
 
6220
    ;;
 
6221
 
 
6222
  # libtool finish mode
 
6223
  finish)
 
6224
    modename="$modename: finish"
 
6225
    libdirs="$nonopt"
 
6226
    admincmds=
 
6227
 
 
6228
    if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
 
6229
      for dir
 
6230
      do
 
6231
        libdirs="$libdirs $dir"
 
6232
      done
 
6233
 
 
6234
      for libdir in $libdirs; do
 
6235
        if test -n "$finish_cmds"; then
 
6236
          # Do each command in the finish commands.
 
6237
          cmds=$finish_cmds
 
6238
          save_ifs="$IFS"; IFS='~'
 
6239
          for cmd in $cmds; do
 
6240
            IFS="$save_ifs"
 
6241
            eval cmd=\"$cmd\"
 
6242
            $show "$cmd"
 
6243
            $run eval "$cmd" || admincmds="$admincmds
 
6244
       $cmd"
 
6245
          done
 
6246
          IFS="$save_ifs"
 
6247
        fi
 
6248
        if test -n "$finish_eval"; then
 
6249
          # Do the single finish_eval.
 
6250
          eval cmds=\"$finish_eval\"
 
6251
          $run eval "$cmds" || admincmds="$admincmds
 
6252
       $cmds"
 
6253
        fi
 
6254
      done
 
6255
    fi
 
6256
 
 
6257
    # Exit here if they wanted silent mode.
 
6258
    test "$show" = : && exit $EXIT_SUCCESS
 
6259
 
 
6260
    $echo "X----------------------------------------------------------------------" | $Xsed
 
6261
    $echo "Libraries have been installed in:"
 
6262
    for libdir in $libdirs; do
 
6263
      $echo "   $libdir"
 
6264
    done
 
6265
    $echo
 
6266
    $echo "If you ever happen to want to link against installed libraries"
 
6267
    $echo "in a given directory, LIBDIR, you must either use libtool, and"
 
6268
    $echo "specify the full pathname of the library, or use the \`-LLIBDIR'"
 
6269
    $echo "flag during linking and do at least one of the following:"
 
6270
    if test -n "$shlibpath_var"; then
 
6271
      $echo "   - add LIBDIR to the \`$shlibpath_var' environment variable"
 
6272
      $echo "     during execution"
 
6273
    fi
 
6274
    if test -n "$runpath_var"; then
 
6275
      $echo "   - add LIBDIR to the \`$runpath_var' environment variable"
 
6276
      $echo "     during linking"
 
6277
    fi
 
6278
    if test -n "$hardcode_libdir_flag_spec"; then
 
6279
      libdir=LIBDIR
 
6280
      eval flag=\"$hardcode_libdir_flag_spec\"
 
6281
 
 
6282
      $echo "   - use the \`$flag' linker flag"
 
6283
    fi
 
6284
    if test -n "$admincmds"; then
 
6285
      $echo "   - have your system administrator run these commands:$admincmds"
 
6286
    fi
 
6287
    if test -f /etc/ld.so.conf; then
 
6288
      $echo "   - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
 
6289
    fi
 
6290
    $echo
 
6291
    $echo "See any operating system documentation about shared libraries for"
 
6292
    $echo "more information, such as the ld(1) and ld.so(8) manual pages."
 
6293
    $echo "X----------------------------------------------------------------------" | $Xsed
 
6294
    exit $EXIT_SUCCESS
 
6295
    ;;
 
6296
 
 
6297
  # libtool execute mode
 
6298
  execute)
 
6299
    modename="$modename: execute"
 
6300
 
 
6301
    # The first argument is the command name.
 
6302
    cmd="$nonopt"
 
6303
    if test -z "$cmd"; then
 
6304
      $echo "$modename: you must specify a COMMAND" 1>&2
 
6305
      $echo "$help"
 
6306
      exit $EXIT_FAILURE
 
6307
    fi
 
6308
 
 
6309
    # Handle -dlopen flags immediately.
 
6310
    for file in $execute_dlfiles; do
 
6311
      if test ! -f "$file"; then
 
6312
        $echo "$modename: \`$file' is not a file" 1>&2
 
6313
        $echo "$help" 1>&2
 
6314
        exit $EXIT_FAILURE
 
6315
      fi
 
6316
 
 
6317
      dir=
 
6318
      case $file in
 
6319
      *.la)
 
6320
        # Check to see that this really is a libtool archive.
 
6321
        if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
 
6322
        else
 
6323
          $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
 
6324
          $echo "$help" 1>&2
 
6325
          exit $EXIT_FAILURE
 
6326
        fi
 
6327
 
 
6328
        # Read the libtool library.
 
6329
        dlname=
 
6330
        library_names=
 
6331
 
 
6332
        # If there is no directory component, then add one.
 
6333
        case $file in
 
6334
        */* | *\\*) . $file ;;
 
6335
        *) . ./$file ;;
 
6336
        esac
 
6337
 
 
6338
        # Skip this library if it cannot be dlopened.
 
6339
        if test -z "$dlname"; then
 
6340
          # Warn if it was a shared library.
 
6341
          test -n "$library_names" && $echo "$modename: warning: \`$file' was not linked with \`-export-dynamic'"
 
6342
          continue
 
6343
        fi
 
6344
 
 
6345
        dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
 
6346
        test "X$dir" = "X$file" && dir=.
 
6347
 
 
6348
        if test -f "$dir/$objdir/$dlname"; then
 
6349
          dir="$dir/$objdir"
 
6350
        else
 
6351
          $echo "$modename: cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" 1>&2
 
6352
          exit $EXIT_FAILURE
 
6353
        fi
 
6354
        ;;
 
6355
 
 
6356
      *.lo)
 
6357
        # Just add the directory containing the .lo file.
 
6358
        dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
 
6359
        test "X$dir" = "X$file" && dir=.
 
6360
        ;;
 
6361
 
 
6362
      *)
 
6363
        $echo "$modename: warning \`-dlopen' is ignored for non-libtool libraries and objects" 1>&2
 
6364
        continue
 
6365
        ;;
 
6366
      esac
 
6367
 
 
6368
      # Get the absolute pathname.
 
6369
      absdir=`cd "$dir" && pwd`
 
6370
      test -n "$absdir" && dir="$absdir"
 
6371
 
 
6372
      # Now add the directory to shlibpath_var.
 
6373
      if eval "test -z \"\$$shlibpath_var\""; then
 
6374
        eval "$shlibpath_var=\"\$dir\""
 
6375
      else
 
6376
        eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\""
 
6377
      fi
 
6378
    done
 
6379
 
 
6380
    # This variable tells wrapper scripts just to set shlibpath_var
 
6381
    # rather than running their programs.
 
6382
    libtool_execute_magic="$magic"
 
6383
 
 
6384
    # Check if any of the arguments is a wrapper script.
 
6385
    args=
 
6386
    for file
 
6387
    do
 
6388
      case $file in
 
6389
      -*) ;;
 
6390
      *)
 
6391
        # Do a test to see if this is really a libtool program.
 
6392
        if (${SED} -e '4q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
 
6393
          # If there is no directory component, then add one.
 
6394
          case $file in
 
6395
          */* | *\\*) . $file ;;
 
6396
          *) . ./$file ;;
 
6397
          esac
 
6398
 
 
6399
          # Transform arg to wrapped name.
 
6400
          file="$progdir/$program"
 
6401
        fi
 
6402
        ;;
 
6403
      esac
 
6404
      # Quote arguments (to preserve shell metacharacters).
 
6405
      file=`$echo "X$file" | $Xsed -e "$sed_quote_subst"`
 
6406
      args="$args \"$file\""
 
6407
    done
 
6408
 
 
6409
    if test -z "$run"; then
 
6410
      if test -n "$shlibpath_var"; then
 
6411
        # Export the shlibpath_var.
 
6412
        eval "export $shlibpath_var"
 
6413
      fi
 
6414
 
 
6415
      # Restore saved environment variables
 
6416
      if test "${save_LC_ALL+set}" = set; then
 
6417
        LC_ALL="$save_LC_ALL"; export LC_ALL
 
6418
      fi
 
6419
      if test "${save_LANG+set}" = set; then
 
6420
        LANG="$save_LANG"; export LANG
 
6421
      fi
 
6422
 
 
6423
      # Now prepare to actually exec the command.
 
6424
      exec_cmd="\$cmd$args"
 
6425
    else
 
6426
      # Display what would be done.
 
6427
      if test -n "$shlibpath_var"; then
 
6428
        eval "\$echo \"\$shlibpath_var=\$$shlibpath_var\""
 
6429
        $echo "export $shlibpath_var"
 
6430
      fi
 
6431
      $echo "$cmd$args"
 
6432
      exit $EXIT_SUCCESS
 
6433
    fi
 
6434
    ;;
 
6435
 
 
6436
  # libtool clean and uninstall mode
 
6437
  clean | uninstall)
 
6438
    modename="$modename: $mode"
 
6439
    rm="$nonopt"
8201
6440
    files=
8202
6441
    rmforce=
8203
6442
    exit_status=0
8209
6448
    for arg
8210
6449
    do
8211
6450
      case $arg in
8212
 
      -f) RM="$RM $arg"; rmforce=yes ;;
8213
 
      -*) RM="$RM $arg" ;;
 
6451
      -f) rm="$rm $arg"; rmforce=yes ;;
 
6452
      -*) rm="$rm $arg" ;;
8214
6453
      *) files="$files $arg" ;;
8215
6454
      esac
8216
6455
    done
8217
6456
 
8218
 
    test -z "$RM" && \
8219
 
      func_fatal_help "you must specify an RM program"
 
6457
    if test -z "$rm"; then
 
6458
      $echo "$modename: you must specify an RM program" 1>&2
 
6459
      $echo "$help" 1>&2
 
6460
      exit $EXIT_FAILURE
 
6461
    fi
8220
6462
 
8221
6463
    rmdirs=
8222
6464
 
8223
6465
    origobjdir="$objdir"
8224
6466
    for file in $files; do
8225
 
      func_dirname "$file" "" "."
8226
 
      dir="$func_dirname_result"
8227
 
      if test "X$dir" = X.; then
 
6467
      dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
 
6468
      if test "X$dir" = "X$file"; then
 
6469
        dir=.
8228
6470
        objdir="$origobjdir"
8229
6471
      else
8230
6472
        objdir="$dir/$origobjdir"
8231
6473
      fi
8232
 
      func_basename "$file"
8233
 
      name="$func_basename_result"
 
6474
      name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
8234
6475
      test "$mode" = uninstall && objdir="$dir"
8235
6476
 
8236
6477
      # Remember objdir for removal later, being careful to avoid duplicates
8242
6483
      fi
8243
6484
 
8244
6485
      # Don't error if the file doesn't exist and rm -f was used.
8245
 
      if { test -L "$file"; } >/dev/null 2>&1 ||
8246
 
         { test -h "$file"; } >/dev/null 2>&1 ||
8247
 
         test -f "$file"; then
 
6486
      if (test -L "$file") >/dev/null 2>&1 \
 
6487
        || (test -h "$file") >/dev/null 2>&1 \
 
6488
        || test -f "$file"; then
8248
6489
        :
8249
6490
      elif test -d "$file"; then
8250
6491
        exit_status=1
8258
6499
      case $name in
8259
6500
      *.la)
8260
6501
        # Possibly a libtool archive, so verify it.
8261
 
        if func_lalib_p "$file"; then
8262
 
          func_source $dir/$name
 
6502
        if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
 
6503
          . $dir/$name
8263
6504
 
8264
6505
          # Delete the libtool libraries and symlinks.
8265
6506
          for n in $library_names; do
8274
6515
            *" $dlname "*) ;;
8275
6516
            *) rmfiles="$rmfiles $objdir/$dlname" ;;
8276
6517
            esac
8277
 
            test -n "$libdir" && rmfiles="$rmfiles $objdir/$name $objdir/${name}i"
 
6518
             test -n "$libdir" && rmfiles="$rmfiles $objdir/$name $objdir/${name}i"
8278
6519
            ;;
8279
6520
          uninstall)
8280
6521
            if test -n "$library_names"; then
8281
6522
              # Do each command in the postuninstall commands.
8282
 
              func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1'
 
6523
              cmds=$postuninstall_cmds
 
6524
              save_ifs="$IFS"; IFS='~'
 
6525
              for cmd in $cmds; do
 
6526
                IFS="$save_ifs"
 
6527
                eval cmd=\"$cmd\"
 
6528
                $show "$cmd"
 
6529
                $run eval "$cmd"
 
6530
                if test "$?" -ne 0 && test "$rmforce" != yes; then
 
6531
                  exit_status=1
 
6532
                fi
 
6533
              done
 
6534
              IFS="$save_ifs"
8283
6535
            fi
8284
6536
 
8285
6537
            if test -n "$old_library"; then
8286
6538
              # Do each command in the old_postuninstall commands.
8287
 
              func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1'
 
6539
              cmds=$old_postuninstall_cmds
 
6540
              save_ifs="$IFS"; IFS='~'
 
6541
              for cmd in $cmds; do
 
6542
                IFS="$save_ifs"
 
6543
                eval cmd=\"$cmd\"
 
6544
                $show "$cmd"
 
6545
                $run eval "$cmd"
 
6546
                if test "$?" -ne 0 && test "$rmforce" != yes; then
 
6547
                  exit_status=1
 
6548
                fi
 
6549
              done
 
6550
              IFS="$save_ifs"
8288
6551
            fi
8289
6552
            # FIXME: should reinstall the best remaining shared library.
8290
6553
            ;;
8294
6557
 
8295
6558
      *.lo)
8296
6559
        # Possibly a libtool object, so verify it.
8297
 
        if func_lalib_p "$file"; then
 
6560
        if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
8298
6561
 
8299
6562
          # Read the .lo file
8300
 
          func_source $dir/$name
 
6563
          . $dir/$name
8301
6564
 
8302
6565
          # Add PIC object to the list of files to remove.
8303
 
          if test -n "$pic_object" &&
8304
 
             test "$pic_object" != none; then
 
6566
          if test -n "$pic_object" \
 
6567
             && test "$pic_object" != none; then
8305
6568
            rmfiles="$rmfiles $dir/$pic_object"
8306
6569
          fi
8307
6570
 
8308
6571
          # Add non-PIC object to the list of files to remove.
8309
 
          if test -n "$non_pic_object" &&
8310
 
             test "$non_pic_object" != none; then
 
6572
          if test -n "$non_pic_object" \
 
6573
             && test "$non_pic_object" != none; then
8311
6574
            rmfiles="$rmfiles $dir/$non_pic_object"
8312
6575
          fi
8313
6576
        fi
8318
6581
          noexename=$name
8319
6582
          case $file in
8320
6583
          *.exe)
8321
 
            func_stripname '' '.exe' "$file"
8322
 
            file=$func_stripname_result
8323
 
            func_stripname '' '.exe' "$name"
8324
 
            noexename=$func_stripname_result
 
6584
            file=`$echo $file|${SED} 's,.exe$,,'`
 
6585
            noexename=`$echo $name|${SED} 's,.exe$,,'`
8325
6586
            # $file with .exe has already been added to rmfiles,
8326
6587
            # add $file without .exe
8327
6588
            rmfiles="$rmfiles $file"
8328
6589
            ;;
8329
6590
          esac
8330
6591
          # Do a test to see if this is a libtool program.
8331
 
          if func_ltwrapper_p "$file"; then
8332
 
            if func_ltwrapper_executable_p "$file"; then
8333
 
              func_ltwrapper_scriptname "$file"
8334
 
              relink_command=
8335
 
              func_source $func_ltwrapper_scriptname_result
8336
 
              rmfiles="$rmfiles $func_ltwrapper_scriptname_result"
8337
 
            else
8338
 
              relink_command=
8339
 
              func_source $dir/$noexename
8340
 
            fi
 
6592
          if (${SED} -e '4q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
 
6593
            relink_command=
 
6594
            . $dir/$noexename
8341
6595
 
8342
6596
            # note $name still contains .exe if it was in $file originally
8343
6597
            # as does the version of $file that was added into $rmfiles
8352
6606
        fi
8353
6607
        ;;
8354
6608
      esac
8355
 
      func_show_eval "$RM $rmfiles" 'exit_status=1'
 
6609
      $show "$rm $rmfiles"
 
6610
      $run $rm $rmfiles || exit_status=1
8356
6611
    done
8357
6612
    objdir="$origobjdir"
8358
6613
 
8359
6614
    # Try to remove the ${objdir}s in the directories where we deleted files
8360
6615
    for dir in $rmdirs; do
8361
6616
      if test -d "$dir"; then
8362
 
        func_show_eval "rmdir $dir >/dev/null 2>&1"
 
6617
        $show "rmdir $dir"
 
6618
        $run rmdir $dir >/dev/null 2>&1
8363
6619
      fi
8364
6620
    done
8365
6621
 
8366
6622
    exit $exit_status
8367
 
}
8368
 
 
8369
 
{ test "$mode" = uninstall || test "$mode" = clean; } &&
8370
 
    func_mode_uninstall ${1+"$@"}
8371
 
 
8372
 
test -z "$mode" && {
8373
 
  help="$generic_help"
8374
 
  func_fatal_help "you must specify a MODE"
8375
 
}
8376
 
 
8377
 
test -z "$exec_cmd" && \
8378
 
  func_fatal_help "invalid operation mode \`$mode'"
 
6623
    ;;
 
6624
 
 
6625
  "")
 
6626
    $echo "$modename: you must specify a MODE" 1>&2
 
6627
    $echo "$generic_help" 1>&2
 
6628
    exit $EXIT_FAILURE
 
6629
    ;;
 
6630
  esac
 
6631
 
 
6632
  if test -z "$exec_cmd"; then
 
6633
    $echo "$modename: invalid operation mode \`$mode'" 1>&2
 
6634
    $echo "$generic_help" 1>&2
 
6635
    exit $EXIT_FAILURE
 
6636
  fi
 
6637
fi # test -z "$show_help"
8379
6638
 
8380
6639
if test -n "$exec_cmd"; then
8381
 
  eval exec "$exec_cmd"
 
6640
  eval exec $exec_cmd
8382
6641
  exit $EXIT_FAILURE
8383
6642
fi
8384
6643
 
8385
 
exit $exit_status
8386
 
 
 
6644
# We need to display help for each of the modes.
 
6645
case $mode in
 
6646
"") $echo \
 
6647
"Usage: $modename [OPTION]... [MODE-ARG]...
 
6648
 
 
6649
Provide generalized library-building support services.
 
6650
 
 
6651
    --config          show all configuration variables
 
6652
    --debug           enable verbose shell tracing
 
6653
-n, --dry-run         display commands without modifying any files
 
6654
    --features        display basic configuration information and exit
 
6655
    --finish          same as \`--mode=finish'
 
6656
    --help            display this help message and exit
 
6657
    --mode=MODE       use operation mode MODE [default=inferred from MODE-ARGS]
 
6658
    --quiet           same as \`--silent'
 
6659
    --silent          don't print informational messages
 
6660
    --tag=TAG         use configuration variables from tag TAG
 
6661
    --version         print version information
 
6662
 
 
6663
MODE must be one of the following:
 
6664
 
 
6665
      clean           remove files from the build directory
 
6666
      compile         compile a source file into a libtool object
 
6667
      execute         automatically set library path, then run a program
 
6668
      finish          complete the installation of libtool libraries
 
6669
      install         install libraries or executables
 
6670
      link            create a library or an executable
 
6671
      uninstall       remove libraries from an installed directory
 
6672
 
 
6673
MODE-ARGS vary depending on the MODE.  Try \`$modename --help --mode=MODE' for
 
6674
a more detailed description of MODE.
 
6675
 
 
6676
Report bugs to <bug-libtool@gnu.org>."
 
6677
  exit $EXIT_SUCCESS
 
6678
  ;;
 
6679
 
 
6680
clean)
 
6681
  $echo \
 
6682
"Usage: $modename [OPTION]... --mode=clean RM [RM-OPTION]... FILE...
 
6683
 
 
6684
Remove files from the build directory.
 
6685
 
 
6686
RM is the name of the program to use to delete files associated with each FILE
 
6687
(typically \`/bin/rm').  RM-OPTIONS are options (such as \`-f') to be passed
 
6688
to RM.
 
6689
 
 
6690
If FILE is a libtool library, object or program, all the files associated
 
6691
with it are deleted. Otherwise, only FILE itself is deleted using RM."
 
6692
  ;;
 
6693
 
 
6694
compile)
 
6695
  $echo \
 
6696
"Usage: $modename [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE
 
6697
 
 
6698
Compile a source file into a libtool library object.
 
6699
 
 
6700
This mode accepts the following additional options:
 
6701
 
 
6702
  -o OUTPUT-FILE    set the output file name to OUTPUT-FILE
 
6703
  -prefer-pic       try to building PIC objects only
 
6704
  -prefer-non-pic   try to building non-PIC objects only
 
6705
  -static           always build a \`.o' file suitable for static linking
 
6706
 
 
6707
COMPILE-COMMAND is a command to be used in creating a \`standard' object file
 
6708
from the given SOURCEFILE.
 
6709
 
 
6710
The output file name is determined by removing the directory component from
 
6711
SOURCEFILE, then substituting the C source code suffix \`.c' with the
 
6712
library object suffix, \`.lo'."
 
6713
  ;;
 
6714
 
 
6715
execute)
 
6716
  $echo \
 
6717
"Usage: $modename [OPTION]... --mode=execute COMMAND [ARGS]...
 
6718
 
 
6719
Automatically set library path, then run a program.
 
6720
 
 
6721
This mode accepts the following additional options:
 
6722
 
 
6723
  -dlopen FILE      add the directory containing FILE to the library path
 
6724
 
 
6725
This mode sets the library path environment variable according to \`-dlopen'
 
6726
flags.
 
6727
 
 
6728
If any of the ARGS are libtool executable wrappers, then they are translated
 
6729
into their corresponding uninstalled binary, and any of their required library
 
6730
directories are added to the library path.
 
6731
 
 
6732
Then, COMMAND is executed, with ARGS as arguments."
 
6733
  ;;
 
6734
 
 
6735
finish)
 
6736
  $echo \
 
6737
"Usage: $modename [OPTION]... --mode=finish [LIBDIR]...
 
6738
 
 
6739
Complete the installation of libtool libraries.
 
6740
 
 
6741
Each LIBDIR is a directory that contains libtool libraries.
 
6742
 
 
6743
The commands that this mode executes may require superuser privileges.  Use
 
6744
the \`--dry-run' option if you just want to see what would be executed."
 
6745
  ;;
 
6746
 
 
6747
install)
 
6748
  $echo \
 
6749
"Usage: $modename [OPTION]... --mode=install INSTALL-COMMAND...
 
6750
 
 
6751
Install executables or libraries.
 
6752
 
 
6753
INSTALL-COMMAND is the installation command.  The first component should be
 
6754
either the \`install' or \`cp' program.
 
6755
 
 
6756
The rest of the components are interpreted as arguments to that command (only
 
6757
BSD-compatible install options are recognized)."
 
6758
  ;;
 
6759
 
 
6760
link)
 
6761
  $echo \
 
6762
"Usage: $modename [OPTION]... --mode=link LINK-COMMAND...
 
6763
 
 
6764
Link object files or libraries together to form another library, or to
 
6765
create an executable program.
 
6766
 
 
6767
LINK-COMMAND is a command using the C compiler that you would use to create
 
6768
a program from several object files.
 
6769
 
 
6770
The following components of LINK-COMMAND are treated specially:
 
6771
 
 
6772
  -all-static       do not do any dynamic linking at all
 
6773
  -avoid-version    do not add a version suffix if possible
 
6774
  -dlopen FILE      \`-dlpreopen' FILE if it cannot be dlopened at runtime
 
6775
  -dlpreopen FILE   link in FILE and add its symbols to lt_preloaded_symbols
 
6776
  -export-dynamic   allow symbols from OUTPUT-FILE to be resolved with dlsym(3)
 
6777
  -export-symbols SYMFILE
 
6778
                    try to export only the symbols listed in SYMFILE
 
6779
  -export-symbols-regex REGEX
 
6780
                    try to export only the symbols matching REGEX
 
6781
  -LLIBDIR          search LIBDIR for required installed libraries
 
6782
  -lNAME            OUTPUT-FILE requires the installed library libNAME
 
6783
  -module           build a library that can dlopened
 
6784
  -no-fast-install  disable the fast-install mode
 
6785
  -no-install       link a not-installable executable
 
6786
  -no-undefined     declare that a library does not refer to external symbols
 
6787
  -o OUTPUT-FILE    create OUTPUT-FILE from the specified objects
 
6788
  -objectlist FILE  Use a list of object files found in FILE to specify objects
 
6789
  -precious-files-regex REGEX
 
6790
                    don't remove output files matching REGEX
 
6791
  -release RELEASE  specify package release information
 
6792
  -rpath LIBDIR     the created library will eventually be installed in LIBDIR
 
6793
  -R[ ]LIBDIR       add LIBDIR to the runtime path of programs and libraries
 
6794
  -static           do not do any dynamic linking of libtool libraries
 
6795
  -version-info CURRENT[:REVISION[:AGE]]
 
6796
                    specify library version info [each variable defaults to 0]
 
6797
 
 
6798
All other options (arguments beginning with \`-') are ignored.
 
6799
 
 
6800
Every other argument is treated as a filename.  Files ending in \`.la' are
 
6801
treated as uninstalled libtool libraries, other files are standard or library
 
6802
object files.
 
6803
 
 
6804
If the OUTPUT-FILE ends in \`.la', then a libtool library is created,
 
6805
only library objects (\`.lo' files) may be specified, and \`-rpath' is
 
6806
required, except when creating a convenience library.
 
6807
 
 
6808
If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created
 
6809
using \`ar' and \`ranlib', or on Windows using \`lib'.
 
6810
 
 
6811
If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file
 
6812
is created, otherwise an executable program is created."
 
6813
  ;;
 
6814
 
 
6815
uninstall)
 
6816
  $echo \
 
6817
"Usage: $modename [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...
 
6818
 
 
6819
Remove libraries from an installation directory.
 
6820
 
 
6821
RM is the name of the program to use to delete files associated with each FILE
 
6822
(typically \`/bin/rm').  RM-OPTIONS are options (such as \`-f') to be passed
 
6823
to RM.
 
6824
 
 
6825
If FILE is a libtool library, all the files associated with it are deleted.
 
6826
Otherwise, only FILE itself is deleted using RM."
 
6827
  ;;
 
6828
 
 
6829
*)
 
6830
  $echo "$modename: invalid operation mode \`$mode'" 1>&2
 
6831
  $echo "$help" 1>&2
 
6832
  exit $EXIT_FAILURE
 
6833
  ;;
 
6834
esac
 
6835
 
 
6836
$echo
 
6837
$echo "Try \`$modename --help' for more information about other modes."
 
6838
 
 
6839
exit $?
8387
6840
 
8388
6841
# The TAGs below are defined such that we never get into a situation
8389
6842
# in which we disable both kinds of libraries.  Given conflicting
8397
6850
# configuration.  But we'll never go from static-only to shared-only.
8398
6851
 
8399
6852
# ### BEGIN LIBTOOL TAG CONFIG: disable-shared
8400
 
build_libtool_libs=no
8401
 
build_old_libs=yes
 
6853
disable_libs=shared
8402
6854
# ### END LIBTOOL TAG CONFIG: disable-shared
8403
6855
 
8404
6856
# ### BEGIN LIBTOOL TAG CONFIG: disable-static
8405
 
build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac`
 
6857
disable_libs=static
8406
6858
# ### END LIBTOOL TAG CONFIG: disable-static
8407
6859
 
8408
6860
# Local Variables:
8409
6861
# mode:shell-script
8410
6862
# sh-indentation:2
8411
6863
# End:
8412
 
# vi:sw=2
8413