~ubuntu-branches/ubuntu/precise/trousers/precise-proposed

« back to all changes in this revision

Viewing changes to ltmain.sh

  • Committer: Package Import Robot
  • Author(s): Pierre Chifflier
  • Date: 2011-11-21 21:21:39 UTC
  • mfrom: (0.1.17 sid)
  • Revision ID: package-import@ubuntu.com-20111121212139-ctknyhaijski2e02
Tags: 0.3.7-1
* Imported Upstream version 0.3.7
* Adopt package (set new maintainer) (Closes: #543932)
* Add pkg-config to build-depends
* Update symbols for libtspi1
* Use dh --with autoreconf
* Update patches to work with dh_autoreconf

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
 
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
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
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
21
#
 
22
# As a special exception to the GNU General Public License, if you
 
23
# distribute this file as part of a program that contains a
 
24
# configuration script generated by Autoconf, you may include it under
 
25
# the same distribution terms that you use for the rest of that program.
 
26
 
 
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
177
33
# function.
178
34
progpath="$0"
179
35
 
 
36
# RH: define SED for historic ltconfig's generated by Libtool 1.3
 
37
[ -z "$SED" ] && SED=sed
 
38
 
180
39
# 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.
 
40
progname=`echo "$progpath" | $SED $basename`
 
41
modename="$progname"
 
42
 
 
43
# Global variables:
 
44
EXIT_SUCCESS=0
 
45
EXIT_FAILURE=1
 
46
 
 
47
PROGRAM=ltmain.sh
 
48
PACKAGE=libtool
 
49
VERSION=1.5.6
 
50
TIMESTAMP=" (1.1220.2.95 2004/04/11 05:50:42)"
 
51
 
 
52
 
 
53
# Check that we have a working $echo.
560
54
if test "X$1" = X--no-reexec; then
561
55
  # Discard the --no-reexec flag, and continue.
562
56
  shift
563
57
elif test "X$1" = X--fallback-echo; then
564
58
  # Avoid inline document here, it may be left over
565
59
  :
566
 
elif test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t'; then
567
 
  # Yippee, $ECHO works!
 
60
elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then
 
61
  # Yippee, $echo works!
568
62
  :
569
63
else
570
 
  # Restart under the correct shell, and then maybe $ECHO will work.
 
64
  # Restart under the correct shell, and then maybe $echo will work.
571
65
  exec $SHELL "$progpath" --no-reexec ${1+"$@"}
572
66
fi
573
67
 
580
74
  exit $EXIT_SUCCESS
581
75
fi
582
76
 
 
77
default_mode=
 
78
help="Try \`$progname --help' for more information."
583
79
magic="%%%MAGIC variable%%%"
584
 
magic_exe="%%%MAGIC EXE variable%%%"
 
80
mkdir="mkdir"
 
81
mv="mv -f"
 
82
rm="rm -f"
 
83
 
 
84
# Sed substitution that helps us do robust quoting.  It backslashifies
 
85
# metacharacters that are still active within double-quoted strings.
 
86
Xsed="${SED}"' -e 1s/^X//'
 
87
sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g'
 
88
# test EBCDIC or ASCII
 
89
case `echo A|tr A '\301'` in
 
90
 A) # EBCDIC based system
 
91
  SP2NL="tr '\100' '\n'"
 
92
  NL2SP="tr '\r\n' '\100\100'"
 
93
  ;;
 
94
 *) # Assume ASCII based system
 
95
  SP2NL="tr '\040' '\012'"
 
96
  NL2SP="tr '\015\012' '\040\040'"
 
97
  ;;
 
98
esac
 
99
 
 
100
# NLS nuisances.
 
101
# Only set LANG and LC_ALL to C if already set.
 
102
# These must not be set unconditionally because not all systems understand
 
103
# e.g. LANG=C (notably SCO).
 
104
# We save the old values to restore during execute mode.
 
105
if test "${LC_ALL+set}" = set; then
 
106
  save_LC_ALL="$LC_ALL"; LC_ALL=C; export LC_ALL
 
107
fi
 
108
if test "${LANG+set}" = set; then
 
109
  save_LANG="$LANG"; LANG=C; export LANG
 
110
fi
 
111
 
 
112
# Make sure IFS has a sensible default
 
113
: ${IFS="       
 
114
"}
 
115
 
 
116
if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then
 
117
  $echo "$modename: not configured to build any kind of library" 1>&2
 
118
  $echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2
 
119
  exit $EXIT_FAILURE
 
120
fi
585
121
 
586
122
# Global variables.
587
 
# $mode is unset
 
123
mode=$default_mode
588
124
nonopt=
 
125
prev=
 
126
prevopt=
 
127
run=
 
128
show="$echo"
 
129
show_help=
589
130
execute_dlfiles=
590
 
preserve_args=
591
131
lo2o="s/\\.lo\$/.${objext}/"
592
132
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
 
133
 
 
134
#####################################
 
135
# Shell function definitions:
 
136
# This seems to be the best place for them
 
137
 
 
138
# func_win32_libid arg
 
139
# return the library type of file 'arg'
 
140
#
 
141
# Need a lot of goo to handle *both* DLLs and import libs
 
142
# Has to be a shell function in order to 'eat' the argument
 
143
# that is supplied when $file_magic_command is called.
 
144
func_win32_libid () {
 
145
  win32_libid_type="unknown"
 
146
  win32_fileres=`file -L $1 2>/dev/null`
 
147
  case $win32_fileres in
 
148
  *ar\ archive\ import\ library*) # definitely import
 
149
    win32_libid_type="x86 archive import"
 
150
    ;;
 
151
  *ar\ archive*) # could be an import, or static
 
152
    if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | \
 
153
      $EGREP -e 'file format pe-i386(.*architecture: i386)?' >/dev/null ; then
 
154
      win32_nmres=`eval $NM -f posix -A $1 | \
 
155
        sed -n -e '1,100{/ I /{x;/import/!{s/^/import/;h;p;};x;};}'`
 
156
      if test "X$win32_nmres" = "Ximport" ; then
 
157
        win32_libid_type="x86 archive import"
 
158
      else
 
159
        win32_libid_type="x86 archive static"
 
160
      fi
 
161
    fi
 
162
    ;;
 
163
  *DLL*)
 
164
    win32_libid_type="x86 DLL"
 
165
    ;;
 
166
  *executable*) # but shell scripts are "executable" too...
 
167
    case $win32_fileres in
 
168
    *MS\ Windows\ PE\ Intel*)
 
169
      win32_libid_type="x86 DLL"
 
170
      ;;
 
171
    esac
 
172
    ;;
 
173
  esac
 
174
  $echo $win32_libid_type
1001
175
}
1002
176
 
1003
177
 
1007
181
# Only attempt this if the compiler in the base compile
1008
182
# command doesn't match the default compiler.
1009
183
# arg is usually of the form 'gcc ...'
1010
 
func_infer_tag ()
1011
 
{
1012
 
    $opt_debug
 
184
func_infer_tag () {
1013
185
    if test -n "$available_tags" && test -z "$tagname"; then
1014
186
      CC_quoted=
1015
187
      for arg in $CC; do
1016
 
        func_quote_for_eval "$arg"
1017
 
        CC_quoted="$CC_quoted $func_quote_for_eval_result"
 
188
        case $arg in
 
189
          *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
 
190
          arg="\"$arg\""
 
191
          ;;
 
192
        esac
 
193
        CC_quoted="$CC_quoted $arg"
1018
194
      done
1019
195
      case $@ in
1020
196
      # Blanks in the command may have been stripped by the calling shell,
1021
197
      # 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` "*) ;;
 
198
      " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*) ;;
1023
199
      # Blanks at the start of $base_compile will cause this to fail
1024
200
      # if we don't check for them as well.
1025
201
      *)
1026
202
        for z in $available_tags; do
1027
 
          if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then
 
203
          if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then
1028
204
            # Evaluate the configuration.
1029
205
            eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`"
1030
206
            CC_quoted=
1031
207
            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
 
208
            # Double-quote args containing other shell metacharacters.
 
209
            case $arg in
 
210
              *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \     ]*|*]*|"")
 
211
              arg="\"$arg\""
 
212
              ;;
 
213
            esac
 
214
            CC_quoted="$CC_quoted $arg"
 
215
          done
1036
216
            case "$@ " in
1037
 
              " $CC "* | "$CC "* | " `$ECHO $CC` "* | "`$ECHO $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$ECHO $CC_quoted` "* | "`$ECHO $CC_quoted` "*)
 
217
              " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*)
1038
218
              # The compiler in the base compile command matches
1039
219
              # the one in the tagged configuration.
1040
220
              # Assume this is the tagged configuration we want.
1048
228
        # was found and let the user know that the "--tag" command
1049
229
        # line option must be used.
1050
230
        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"
 
231
          $echo "$modename: unable to infer tagged configuration"
 
232
          $echo "$modename: specify a tag with \`--tag'" 1>&2
 
233
          exit $EXIT_FAILURE
 
234
#        else
 
235
#          $echo "$modename: using $tagname tagged configuration"
1055
236
        fi
1056
237
        ;;
1057
238
      esac
1058
239
    fi
1059
240
}
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}
 
241
# End of Shell function definitions
 
242
#####################################
 
243
 
 
244
# Darwin sucks
 
245
eval std_shrext=\"$shrext_cmds\"
 
246
 
 
247
# Parse our command line options once, thoroughly.
 
248
while test "$#" -gt 0
 
249
do
 
250
  arg="$1"
 
251
  shift
 
252
 
 
253
  case $arg in
 
254
  -*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;;
 
255
  *) optarg= ;;
 
256
  esac
 
257
 
 
258
  # If the previous option needs an argument, assign it.
 
259
  if test -n "$prev"; then
 
260
    case $prev in
 
261
    execute_dlfiles)
 
262
      execute_dlfiles="$execute_dlfiles $arg"
 
263
      ;;
 
264
    tag)
 
265
      tagname="$arg"
 
266
      preserve_args="${preserve_args}=$arg"
 
267
 
 
268
      # Check whether tagname contains only valid characters
 
269
      case $tagname in
 
270
      *[!-_A-Za-z0-9,/]*)
 
271
        $echo "$progname: invalid tag name: $tagname" 1>&2
 
272
        exit $EXIT_FAILURE
 
273
        ;;
 
274
      esac
 
275
 
 
276
      case $tagname in
 
277
      CC)
 
278
        # Don't test for the "default" C tag, as we know, it's there, but
 
279
        # not specially marked.
 
280
        ;;
 
281
      *)
 
282
        if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "$progpath" > /dev/null; then
 
283
          taglist="$taglist $tagname"
 
284
          # Evaluate the configuration.
 
285
          eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$tagname'$/,/^# ### END LIBTOOL TAG CONFIG: '$tagname'$/p' < $progpath`"
 
286
        else
 
287
          $echo "$progname: ignoring unknown tag $tagname" 1>&2
 
288
        fi
 
289
        ;;
 
290
      esac
 
291
      ;;
 
292
    *)
 
293
      eval "$prev=\$arg"
 
294
      ;;
 
295
    esac
 
296
 
 
297
    prev=
 
298
    prevopt=
 
299
    continue
 
300
  fi
 
301
 
 
302
  # Have we seen a non-optional argument yet?
 
303
  case $arg in
 
304
  --help)
 
305
    show_help=yes
 
306
    ;;
 
307
 
 
308
  --version)
 
309
    $echo "$PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP"
 
310
    $echo
 
311
    $echo "Copyright (C) 2003  Free Software Foundation, Inc."
 
312
    $echo "This is free software; see the source for copying conditions.  There is NO"
 
313
    $echo "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
 
314
    exit $EXIT_SUCCESS
 
315
    ;;
 
316
 
 
317
  --config)
 
318
    ${SED} -e '1,/^# ### BEGIN LIBTOOL CONFIG/d' -e '/^# ### END LIBTOOL CONFIG/,$d' $progpath
 
319
    # Now print the configurations for the tags.
 
320
    for tagname in $taglist; do
 
321
      ${SED} -n -e "/^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$/,/^# ### END LIBTOOL TAG CONFIG: $tagname$/p" < "$progpath"
 
322
    done
 
323
    exit $EXIT_SUCCESS
 
324
    ;;
 
325
 
 
326
  --debug)
 
327
    $echo "$progname: enabling shell trace mode"
 
328
    set -x
 
329
    preserve_args="$preserve_args $arg"
 
330
    ;;
 
331
 
 
332
  --dry-run | -n)
 
333
    run=:
 
334
    ;;
 
335
 
 
336
  --features)
 
337
    $echo "host: $host"
1069
338
    if test "$build_libtool_libs" = yes; then
1070
 
      write_lobj=\'${2}\'
 
339
      $echo "enable shared libraries"
1071
340
    else
1072
 
      write_lobj=none
 
341
      $echo "disable shared libraries"
1073
342
    fi
1074
 
 
1075
343
    if test "$build_old_libs" = yes; then
1076
 
      write_oldobj=\'${3}\'
 
344
      $echo "enable static libraries"
1077
345
    else
1078
 
      write_oldobj=none
 
346
      $echo "disable static libraries"
1079
347
    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
 
348
    exit $EXIT_SUCCESS
 
349
    ;;
 
350
 
 
351
  --finish) mode="finish" ;;
 
352
 
 
353
  --mode) prevopt="--mode" prev=mode ;;
 
354
  --mode=*) mode="$optarg" ;;
 
355
 
 
356
  --preserve-dup-deps) duplicate_deps="yes" ;;
 
357
 
 
358
  --quiet | --silent)
 
359
    show=:
 
360
    preserve_args="$preserve_args $arg"
 
361
    ;;
 
362
 
 
363
  --tag) prevopt="--tag" prev=tag ;;
 
364
  --tag=*)
 
365
    set tag "$optarg" ${1+"$@"}
 
366
    shift
 
367
    prev=tag
 
368
    preserve_args="$preserve_args --tag"
 
369
    ;;
 
370
 
 
371
  -dlopen)
 
372
    prevopt="-dlopen"
 
373
    prev=execute_dlfiles
 
374
    ;;
 
375
 
 
376
  -*)
 
377
    $echo "$modename: unrecognized option \`$arg'" 1>&2
 
378
    $echo "$help" 1>&2
 
379
    exit $EXIT_FAILURE
 
380
    ;;
 
381
 
 
382
  *)
 
383
    nonopt="$arg"
 
384
    break
 
385
    ;;
 
386
  esac
 
387
done
 
388
 
 
389
if test -n "$prevopt"; then
 
390
  $echo "$modename: option \`$prevopt' requires an argument" 1>&2
 
391
  $echo "$help" 1>&2
 
392
  exit $EXIT_FAILURE
 
393
fi
 
394
 
 
395
# If this variable is set in any of the actions, the command in it
 
396
# will be execed at the end.  This prevents here-documents from being
 
397
# left over by shells.
 
398
exec_cmd=
 
399
 
 
400
if test -z "$show_help"; then
 
401
 
 
402
  # Infer the operation mode.
 
403
  if test -z "$mode"; then
 
404
    $echo "*** Warning: inferring the mode of operation is deprecated." 1>&2
 
405
    $echo "*** Future versions of Libtool will require -mode=MODE be specified." 1>&2
 
406
    case $nonopt in
 
407
    *cc | cc* | *++ | gcc* | *-gcc* | g++* | xlc*)
 
408
      mode=link
 
409
      for arg
 
410
      do
 
411
        case $arg in
 
412
        -c)
 
413
           mode=compile
 
414
           break
 
415
           ;;
 
416
        esac
 
417
      done
 
418
      ;;
 
419
    *db | *dbx | *strace | *truss)
 
420
      mode=execute
 
421
      ;;
 
422
    *install*|cp|mv)
 
423
      mode=install
 
424
      ;;
 
425
    *rm)
 
426
      mode=uninstall
 
427
      ;;
 
428
    *)
 
429
      # If we have no mode, but dlfiles were specified, then do execute mode.
 
430
      test -n "$execute_dlfiles" && mode=execute
 
431
 
 
432
      # Just use the default operation mode.
 
433
      if test -z "$mode"; then
 
434
        if test -n "$nonopt"; then
 
435
          $echo "$modename: warning: cannot infer operation mode from \`$nonopt'" 1>&2
 
436
        else
 
437
          $echo "$modename: warning: cannot infer operation mode without MODE-ARGS" 1>&2
 
438
        fi
 
439
      fi
 
440
      ;;
 
441
    esac
 
442
  fi
 
443
 
 
444
  # Only execute mode is allowed to have -dlopen flags.
 
445
  if test -n "$execute_dlfiles" && test "$mode" != execute; then
 
446
    $echo "$modename: unrecognized option \`-dlopen'" 1>&2
 
447
    $echo "$help" 1>&2
 
448
    exit $EXIT_FAILURE
 
449
  fi
 
450
 
 
451
  # Change the help message to a mode-specific one.
 
452
  generic_help="$help"
 
453
  help="Try \`$modename --help --mode=$mode' for more information."
 
454
 
 
455
  # These modes are in order of execution frequency so that they run quickly.
 
456
  case $mode in
 
457
  # libtool compile mode
 
458
  compile)
 
459
    modename="$modename: compile"
1104
460
    # Get the compilation command and the source file.
1105
461
    base_compile=
1106
462
    srcfile="$nonopt"  #  always keep a non-empty value in "srcfile"
1109
465
    arg_mode=normal
1110
466
    libobj=
1111
467
    later=
1112
 
    pie_flag=
1113
468
 
1114
469
    for arg
1115
470
    do
1116
 
      case $arg_mode in
 
471
      case "$arg_mode" in
1117
472
      arg  )
1118
473
        # do not "continue".  Instead, add this to base_compile
1119
474
        lastarg="$arg"
1130
485
        # Accept any command-line options.
1131
486
        case $arg in
1132
487
        -o)
1133
 
          test -n "$libobj" && \
1134
 
            func_fatal_error "you cannot specify \`-o' more than once"
 
488
          if test -n "$libobj" ; then
 
489
            $echo "$modename: you cannot specify \`-o' more than once" 1>&2
 
490
            exit $EXIT_FAILURE
 
491
          fi
1135
492
          arg_mode=target
1136
493
          continue
1137
494
          ;;
1138
495
 
1139
 
        -pie | -fpie | -fPIE)
1140
 
          pie_flag="$pie_flag $arg"
1141
 
          continue
1142
 
          ;;
1143
 
 
1144
 
        -shared | -static | -prefer-pic | -prefer-non-pic)
 
496
        -static | -prefer-pic | -prefer-non-pic)
1145
497
          later="$later $arg"
1146
498
          continue
1147
499
          ;;
1157
509
          ;;            #  replaced later.  I would guess that would be a bug.
1158
510
 
1159
511
        -Wc,*)
1160
 
          func_stripname '-Wc,' '' "$arg"
1161
 
          args=$func_stripname_result
 
512
          args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"`
1162
513
          lastarg=
1163
514
          save_ifs="$IFS"; IFS=','
1164
 
          for arg in $args; do
 
515
          for arg in $args; do
1165
516
            IFS="$save_ifs"
1166
 
            func_quote_for_eval "$arg"
1167
 
            lastarg="$lastarg $func_quote_for_eval_result"
 
517
 
 
518
            # Double-quote args containing other shell metacharacters.
 
519
            # Many Bourne shells cannot handle close brackets correctly
 
520
            # in scan sets, so we specify it separately.
 
521
            case $arg in
 
522
              *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \     ]*|*]*|"")
 
523
              arg="\"$arg\""
 
524
              ;;
 
525
            esac
 
526
            lastarg="$lastarg $arg"
1168
527
          done
1169
528
          IFS="$save_ifs"
1170
 
          func_stripname ' ' '' "$lastarg"
1171
 
          lastarg=$func_stripname_result
 
529
          lastarg=`$echo "X$lastarg" | $Xsed -e "s/^ //"`
1172
530
 
1173
531
          # Add the arguments to base_compile.
1174
532
          base_compile="$base_compile $lastarg"
1175
533
          continue
1176
534
          ;;
1177
535
 
1178
 
        *)
 
536
        * )
1179
537
          # Accept the current argument as the source file.
1180
538
          # The previous "srcfile" becomes the current argument.
1181
539
          #
1187
545
      esac    #  case $arg_mode
1188
546
 
1189
547
      # Aesthetically quote the previous argument.
1190
 
      func_quote_for_eval "$lastarg"
1191
 
      base_compile="$base_compile $func_quote_for_eval_result"
 
548
      lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"`
 
549
 
 
550
      case $lastarg in
 
551
      # Double-quote args containing other shell metacharacters.
 
552
      # Many Bourne shells cannot handle close brackets correctly
 
553
      # in scan sets, so we specify it separately.
 
554
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \     ]*|*]*|"")
 
555
        lastarg="\"$lastarg\""
 
556
        ;;
 
557
      esac
 
558
 
 
559
      base_compile="$base_compile $lastarg"
1192
560
    done # for arg
1193
561
 
1194
562
    case $arg_mode in
1195
563
    arg)
1196
 
      func_fatal_error "you must specify an argument for -Xcompile"
 
564
      $echo "$modename: you must specify an argument for -Xcompile"
 
565
      exit $EXIT_FAILURE
1197
566
      ;;
1198
567
    target)
1199
 
      func_fatal_error "you must specify a target with \`-o'"
 
568
      $echo "$modename: you must specify a target with \`-o'" 1>&2
 
569
      exit $EXIT_FAILURE
1200
570
      ;;
1201
571
    *)
1202
572
      # Get the name of the library object.
1203
 
      test -z "$libobj" && {
1204
 
        func_basename "$srcfile"
1205
 
        libobj="$func_basename_result"
1206
 
      }
 
573
      [ -z "$libobj" ] && libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'`
1207
574
      ;;
1208
575
    esac
1209
576
 
1210
577
    # Recognize several different file suffixes.
1211
578
    # If the user specifies -o file.o, it is replaced with file.lo
 
579
    xform='[cCFSifmso]'
1212
580
    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
 
      ;;
 
581
    *.ada) xform=ada ;;
 
582
    *.adb) xform=adb ;;
 
583
    *.ads) xform=ads ;;
 
584
    *.asm) xform=asm ;;
 
585
    *.c++) xform=c++ ;;
 
586
    *.cc) xform=cc ;;
 
587
    *.ii) xform=ii ;;
 
588
    *.class) xform=class ;;
 
589
    *.cpp) xform=cpp ;;
 
590
    *.cxx) xform=cxx ;;
 
591
    *.f90) xform=f90 ;;
 
592
    *.for) xform=for ;;
 
593
    *.java) xform=java ;;
1220
594
    esac
1221
595
 
 
596
    libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"`
 
597
 
1222
598
    case $libobj in
1223
 
    *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;;
 
599
    *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;;
1224
600
    *)
1225
 
      func_fatal_error "cannot determine name of library object from \`$libobj'"
 
601
      $echo "$modename: cannot determine name of library object from \`$libobj'" 1>&2
 
602
      exit $EXIT_FAILURE
1226
603
      ;;
1227
604
    esac
1228
605
 
1230
607
 
1231
608
    for arg in $later; do
1232
609
      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
610
      -static)
1241
 
        build_libtool_libs=no
1242
611
        build_old_libs=yes
1243
612
        continue
1244
613
        ;;
1255
624
      esac
1256
625
    done
1257
626
 
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"
 
627
    objname=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`
 
628
    xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`
 
629
    if test "X$xdir" = "X$obj"; then
 
630
      xdir=
 
631
    else
 
632
      xdir=$xdir/
 
633
    fi
1265
634
    lobj=${xdir}$objdir/$objname
1266
635
 
1267
 
    test -z "$base_compile" && \
1268
 
      func_fatal_help "you must specify a compilation command"
 
636
    if test -z "$base_compile"; then
 
637
      $echo "$modename: you must specify a compilation command" 1>&2
 
638
      $echo "$help" 1>&2
 
639
      exit $EXIT_FAILURE
 
640
    fi
1269
641
 
1270
642
    # Delete any leftover library objects.
1271
643
    if test "$build_old_libs" = yes; then
1274
646
      removelist="$lobj $libobj ${libobj}T"
1275
647
    fi
1276
648
 
 
649
    $run $rm $removelist
 
650
    trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15
 
651
 
1277
652
    # On Cygwin there's no "real" PIC flag so we must build both object types
1278
653
    case $host_os in
1279
 
    cygwin* | mingw* | pw32* | os2* | cegcc*)
 
654
    cygwin* | mingw* | pw32* | os2*)
1280
655
      pic_mode=default
1281
656
      ;;
1282
657
    esac
1288
663
    # Calculate the filename of the output object if compiler does
1289
664
    # not support -o with -c
1290
665
    if test "$compiler_c_o" = no; then
1291
 
      output_obj=`$ECHO "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext}
 
666
      output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext}
1292
667
      lockfile="$output_obj.lock"
 
668
      removelist="$removelist $output_obj $lockfile"
 
669
      trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15
1293
670
    else
1294
671
      output_obj=
1295
672
      need_locks=no
1299
676
    # Lock this critical section if it is needed
1300
677
    # We use this script file to make the link, it avoids creating a new file
1301
678
    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"
 
679
      until $run ln "$progpath" "$lockfile" 2>/dev/null; do
 
680
        $show "Waiting for $lockfile to be removed"
1304
681
        sleep 2
1305
682
      done
1306
683
    elif test "$need_locks" = warn; then
1307
684
      if test -f "$lockfile"; then
1308
 
        $ECHO "\
 
685
        $echo "\
1309
686
*** ERROR, $lockfile exists and contains:
1310
687
`cat $lockfile 2>/dev/null`
1311
688
 
1316
693
avoid parallel builds (make -j) in this platform, or get a better
1317
694
compiler."
1318
695
 
1319
 
        $opt_dry_run || $RM $removelist
 
696
        $run $rm $removelist
1320
697
        exit $EXIT_FAILURE
1321
698
      fi
1322
 
      removelist="$removelist $output_obj"
1323
 
      $ECHO "$srcfile" > "$lockfile"
 
699
      $echo $srcfile > "$lockfile"
1324
700
    fi
1325
701
 
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
702
    if test -n "$fix_srcfile_path"; then
1331
703
      eval srcfile=\"$fix_srcfile_path\"
1332
704
    fi
1333
 
    func_quote_for_eval "$srcfile"
1334
 
    qsrcfile=$func_quote_for_eval_result
 
705
 
 
706
    $run $rm "$libobj" "${libobj}T"
 
707
 
 
708
    # Create a libtool object file (analogous to a ".la" file),
 
709
    # but don't create it if we're doing a dry run.
 
710
    test -z "$run" && cat > ${libobj}T <<EOF
 
711
# $libobj - a libtool object file
 
712
# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
 
713
#
 
714
# Please DO NOT delete this file!
 
715
# It is necessary for linking the library.
 
716
 
 
717
# Name of the PIC object.
 
718
EOF
1335
719
 
1336
720
    # Only build a PIC object if we are building libtool libraries.
1337
721
    if test "$build_libtool_libs" = yes; then
1339
723
      fbsd_hideous_sh_bug=$base_compile
1340
724
 
1341
725
      if test "$pic_mode" != no; then
1342
 
        command="$base_compile $qsrcfile $pic_flag"
 
726
        command="$base_compile $srcfile $pic_flag"
1343
727
      else
1344
728
        # Don't build PIC code
1345
 
        command="$base_compile $qsrcfile"
 
729
        command="$base_compile $srcfile"
1346
730
      fi
1347
731
 
1348
 
      func_mkdir_p "$xdir$objdir"
 
732
      if test ! -d "${xdir}$objdir"; then
 
733
        $show "$mkdir ${xdir}$objdir"
 
734
        $run $mkdir ${xdir}$objdir
 
735
        status=$?
 
736
        if test "$status" -ne 0 && test ! -d "${xdir}$objdir"; then
 
737
          exit $status
 
738
        fi
 
739
      fi
1349
740
 
1350
741
      if test -z "$output_obj"; then
1351
742
        # Place PIC objects in $objdir
1352
743
        command="$command -o $lobj"
1353
744
      fi
1354
745
 
1355
 
      func_show_eval_locale "$command"  \
1356
 
          'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE'
 
746
      $run $rm "$lobj" "$output_obj"
 
747
 
 
748
      $show "$command"
 
749
      if $run eval "$command"; then :
 
750
      else
 
751
        test -n "$output_obj" && $run $rm $removelist
 
752
        exit $EXIT_FAILURE
 
753
      fi
1357
754
 
1358
755
      if test "$need_locks" = warn &&
1359
756
         test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
1360
 
        $ECHO "\
 
757
        $echo "\
1361
758
*** ERROR, $lockfile contains:
1362
759
`cat $lockfile 2>/dev/null`
1363
760
 
1371
768
avoid parallel builds (make -j) in this platform, or get a better
1372
769
compiler."
1373
770
 
1374
 
        $opt_dry_run || $RM $removelist
 
771
        $run $rm $removelist
1375
772
        exit $EXIT_FAILURE
1376
773
      fi
1377
774
 
1378
775
      # Just move the object if needed, then go on to compile the next one
1379
776
      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'
 
777
        $show "$mv $output_obj $lobj"
 
778
        if $run $mv $output_obj $lobj; then :
 
779
        else
 
780
          error=$?
 
781
          $run $rm $removelist
 
782
          exit $error
 
783
        fi
1382
784
      fi
1383
785
 
 
786
      # Append the name of the PIC object to the libtool object file.
 
787
      test -z "$run" && cat >> ${libobj}T <<EOF
 
788
pic_object='$objdir/$objname'
 
789
 
 
790
EOF
 
791
 
1384
792
      # Allow error messages only from the first compilation.
1385
793
      if test "$suppress_opt" = yes; then
1386
 
        suppress_output=' >/dev/null 2>&1'
 
794
        suppress_output=' >/dev/null 2>&1'
1387
795
      fi
 
796
    else
 
797
      # No PIC object so indicate it doesn't exist in the libtool
 
798
      # object file.
 
799
      test -z "$run" && cat >> ${libobj}T <<EOF
 
800
pic_object=none
 
801
 
 
802
EOF
1388
803
    fi
1389
804
 
1390
805
    # Only build a position-dependent object if we build old libraries.
1391
806
    if test "$build_old_libs" = yes; then
1392
807
      if test "$pic_mode" != yes; then
1393
808
        # Don't build PIC code
1394
 
        command="$base_compile $qsrcfile$pie_flag"
 
809
        command="$base_compile $srcfile"
1395
810
      else
1396
 
        command="$base_compile $qsrcfile $pic_flag"
 
811
        command="$base_compile $srcfile $pic_flag"
1397
812
      fi
1398
813
      if test "$compiler_c_o" = yes; then
1399
814
        command="$command -o $obj"
1401
816
 
1402
817
      # Suppress compiler output if we already did a PIC compilation.
1403
818
      command="$command$suppress_output"
1404
 
      func_show_eval_locale "$command" \
1405
 
        '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE'
 
819
      $run $rm "$obj" "$output_obj"
 
820
      $show "$command"
 
821
      if $run eval "$command"; then :
 
822
      else
 
823
        $run $rm $removelist
 
824
        exit $EXIT_FAILURE
 
825
      fi
1406
826
 
1407
827
      if test "$need_locks" = warn &&
1408
828
         test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
1409
 
        $ECHO "\
 
829
        $echo "\
1410
830
*** ERROR, $lockfile contains:
1411
831
`cat $lockfile 2>/dev/null`
1412
832
 
1420
840
avoid parallel builds (make -j) in this platform, or get a better
1421
841
compiler."
1422
842
 
1423
 
        $opt_dry_run || $RM $removelist
 
843
        $run $rm $removelist
1424
844
        exit $EXIT_FAILURE
1425
845
      fi
1426
846
 
1427
847
      # Just move the object if needed
1428
848
      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*)
 
849
        $show "$mv $output_obj $obj"
 
850
        if $run $mv $output_obj $obj; then :
 
851
        else
 
852
          error=$?
 
853
          $run $rm $removelist
 
854
          exit $error
 
855
        fi
 
856
      fi
 
857
 
 
858
      # Append the name of the non-PIC object the libtool object file.
 
859
      # Only append if the libtool object file exists.
 
860
      test -z "$run" && cat >> ${libobj}T <<EOF
 
861
# Name of the non-PIC object.
 
862
non_pic_object='$objname'
 
863
 
 
864
EOF
 
865
    else
 
866
      # Append the name of the non-PIC object the libtool object file.
 
867
      # Only append if the libtool object file exists.
 
868
      test -z "$run" && cat >> ${libobj}T <<EOF
 
869
# Name of the non-PIC object.
 
870
non_pic_object=none
 
871
 
 
872
EOF
 
873
    fi
 
874
 
 
875
    $run $mv "${libobj}T" "${libobj}"
 
876
 
 
877
    # Unlock the critical section if it was locked
 
878
    if test "$need_locks" != no; then
 
879
      $run $rm "$lockfile"
 
880
    fi
 
881
 
 
882
    exit $EXIT_SUCCESS
 
883
    ;;
 
884
 
 
885
  # libtool link mode
 
886
  link | relink)
 
887
    modename="$modename: link"
 
888
    case $host in
 
889
    *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
4037
890
      # It is impossible to link a dll without this setting, and
4038
891
      # we shouldn't force the makefile maintainer to figure out
4039
892
      # which system we are compiling for in order to pass an extra
4051
904
      allow_undefined=yes
4052
905
      ;;
4053
906
    esac
4054
 
    libtool_args=$nonopt
 
907
    libtool_args="$nonopt"
4055
908
    base_compile="$nonopt $@"
4056
 
    compile_command=$nonopt
4057
 
    finalize_command=$nonopt
 
909
    compile_command="$nonopt"
 
910
    finalize_command="$nonopt"
4058
911
 
4059
912
    compile_rpath=
4060
913
    finalize_rpath=
4069
922
    dllsearchpath=
4070
923
    lib_search_path=`pwd`
4071
924
    inst_prefix_dir=
4072
 
    new_inherited_linker_flags=
4073
925
 
4074
926
    avoid_version=no
4075
927
    dlfiles=
4098
950
    thread_safe=no
4099
951
    vinfo=
4100
952
    vinfo_number=no
4101
 
    weak_libs=
4102
 
    single_module="${wl}-single_module"
 
953
 
4103
954
    func_infer_tag $base_compile
4104
955
 
4105
956
    # We need to know -static, to get the right output filenames.
4106
957
    for arg
4107
958
    do
4108
959
      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)
 
960
      -all-static | -static)
 
961
        if test "X$arg" = "X-all-static"; then
4118
962
          if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then
4119
 
            func_warning "complete static linking is impossible in this configuration"
 
963
            $echo "$modename: warning: complete static linking is impossible in this configuration" 1>&2
4120
964
          fi
4121
965
          if test -n "$link_static_flag"; then
4122
966
            dlopen_self=$dlopen_self_static
4123
967
          fi
4124
 
          prefer_static_libs=yes
4125
 
          ;;
4126
 
        -static)
4127
 
          if test -z "$pic_flag" && test -n "$link_static_flag"; then
4128
 
            dlopen_self=$dlopen_self_static
4129
 
          fi
4130
 
          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
 
968
        else
 
969
          if test -z "$pic_flag" && test -n "$link_static_flag"; then
 
970
            dlopen_self=$dlopen_self_static
 
971
          fi
 
972
        fi
4139
973
        build_libtool_libs=no
4140
974
        build_old_libs=yes
 
975
        prefer_static_libs=yes
4141
976
        break
4142
977
        ;;
4143
978
      esac
4150
985
    while test "$#" -gt 0; do
4151
986
      arg="$1"
4152
987
      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"
 
988
      case $arg in
 
989
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \     ]*|*]*|"")
 
990
        qarg=\"`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`\" ### testsuite: skip nested quoting test
 
991
        ;;
 
992
      *) qarg=$arg ;;
 
993
      esac
 
994
      libtool_args="$libtool_args $qarg"
4156
995
 
4157
996
      # If the previous option needs an argument, assign it.
4158
997
      if test -n "$prev"; then
4159
998
        case $prev in
4160
999
        output)
4161
 
          func_append compile_command " @OUTPUT@"
4162
 
          func_append finalize_command " @OUTPUT@"
 
1000
          compile_command="$compile_command @OUTPUT@"
 
1001
          finalize_command="$finalize_command @OUTPUT@"
4163
1002
          ;;
4164
1003
        esac
4165
1004
 
4167
1006
        dlfiles|dlprefiles)
4168
1007
          if test "$preload" = no; then
4169
1008
            # Add the symbol object into the linking commands.
4170
 
            func_append compile_command " @SYMFILE@"
4171
 
            func_append finalize_command " @SYMFILE@"
 
1009
            compile_command="$compile_command @SYMFILE@"
 
1010
            finalize_command="$finalize_command @SYMFILE@"
4172
1011
            preload=yes
4173
1012
          fi
4174
1013
          case $arg in
4206
1045
          ;;
4207
1046
        expsyms)
4208
1047
          export_symbols="$arg"
4209
 
          test -f "$arg" \
4210
 
            || func_fatal_error "symbol file \`$arg' does not exist"
 
1048
          if test ! -f "$arg"; then
 
1049
            $echo "$modename: symbol file \`$arg' does not exist"
 
1050
            exit $EXIT_FAILURE
 
1051
          fi
4211
1052
          prev=
4212
1053
          continue
4213
1054
          ;;
4216
1057
          prev=
4217
1058
          continue
4218
1059
          ;;
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
1060
        inst_prefix)
4233
1061
          inst_prefix_dir="$arg"
4234
1062
          prev=
4235
1063
          continue
4236
1064
          ;;
 
1065
        precious_regex)
 
1066
          precious_files_regex="$arg"
 
1067
          prev=
 
1068
          continue
 
1069
          ;;
 
1070
        release)
 
1071
          release="-$arg"
 
1072
          prev=
 
1073
          continue
 
1074
          ;;
4237
1075
        objectlist)
4238
1076
          if test -f "$arg"; then
4239
1077
            save_arg=$arg
4240
1078
            moreargs=
4241
 
            for fil in `cat "$save_arg"`
 
1079
            for fil in `cat $save_arg`
4242
1080
            do
4243
1081
#             moreargs="$moreargs $fil"
4244
1082
              arg=$fil
4245
1083
              # A libtool-controlled object.
4246
1084
 
4247
1085
              # Check to see that this really is a libtool object.
4248
 
              if func_lalib_unsafe_p "$arg"; then
 
1086
              if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
4249
1087
                pic_object=
4250
1088
                non_pic_object=
4251
1089
 
4252
1090
                # Read the .lo file
4253
 
                func_source "$arg"
 
1091
                # If there is no directory component, then add one.
 
1092
                case $arg in
 
1093
                */* | *\\*) . $arg ;;
 
1094
                *) . ./$arg ;;
 
1095
                esac
4254
1096
 
4255
 
                if test -z "$pic_object" ||
 
1097
                if test -z "$pic_object" || \
4256
1098
                   test -z "$non_pic_object" ||
4257
 
                   test "$pic_object" = none &&
 
1099
                   test "$pic_object" = none && \
4258
1100
                   test "$non_pic_object" = none; then
4259
 
                  func_fatal_error "cannot find name of object for \`$arg'"
 
1101
                  $echo "$modename: cannot find name of object for \`$arg'" 1>&2
 
1102
                  exit $EXIT_FAILURE
4260
1103
                fi
4261
1104
 
4262
1105
                # Extract subdirectory from the argument.
4263
 
                func_dirname "$arg" "/" ""
4264
 
                xdir="$func_dirname_result"
 
1106
                xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
 
1107
                if test "X$xdir" = "X$arg"; then
 
1108
                  xdir=
 
1109
                else
 
1110
                  xdir="$xdir/"
 
1111
                fi
4265
1112
 
4266
1113
                if test "$pic_object" != none; then
4267
1114
                  # Prepend the subdirectory the object is found in.
4286
1133
                  fi
4287
1134
 
4288
1135
                  # A PIC object.
4289
 
                  func_append libobjs " $pic_object"
 
1136
                  libobjs="$libobjs $pic_object"
4290
1137
                  arg="$pic_object"
4291
1138
                fi
4292
1139
 
4296
1143
                  non_pic_object="$xdir$non_pic_object"
4297
1144
 
4298
1145
                  # A standard non-PIC object
4299
 
                  func_append non_pic_objects " $non_pic_object"
 
1146
                  non_pic_objects="$non_pic_objects $non_pic_object"
4300
1147
                  if test -z "$pic_object" || test "$pic_object" = none ; then
4301
1148
                    arg="$non_pic_object"
4302
1149
                  fi
4303
 
                else
4304
 
                  # If the PIC object exists, use it instead.
4305
 
                  # $xdir was prepended to $pic_object above.
4306
 
                  non_pic_object="$pic_object"
4307
 
                  func_append non_pic_objects " $non_pic_object"
4308
1150
                fi
4309
1151
              else
4310
1152
                # Only an error if not doing a dry-run.
4311
 
                if $opt_dry_run; then
 
1153
                if test -z "$run"; then
 
1154
                  $echo "$modename: \`$arg' is not a valid libtool object" 1>&2
 
1155
                  exit $EXIT_FAILURE
 
1156
                else
 
1157
                  # Dry-run case.
 
1158
 
4312
1159
                  # Extract subdirectory from the argument.
4313
 
                  func_dirname "$arg" "/" ""
4314
 
                  xdir="$func_dirname_result"
 
1160
                  xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
 
1161
                  if test "X$xdir" = "X$arg"; then
 
1162
                    xdir=
 
1163
                  else
 
1164
                    xdir="$xdir/"
 
1165
                  fi
4315
1166
 
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"
 
1167
                  pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"`
 
1168
                  non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"`
 
1169
                  libobjs="$libobjs $pic_object"
 
1170
                  non_pic_objects="$non_pic_objects $non_pic_object"
4323
1171
                fi
4324
1172
              fi
4325
1173
            done
4326
1174
          else
4327
 
            func_fatal_error "link input file \`$arg' does not exist"
 
1175
            $echo "$modename: link input file \`$save_arg' does not exist"
 
1176
            exit $EXIT_FAILURE
4328
1177
          fi
4329
1178
          arg=$save_arg
4330
1179
          prev=
4331
1180
          continue
4332
1181
          ;;
4333
 
        precious_regex)
4334
 
          precious_files_regex="$arg"
4335
 
          prev=
4336
 
          continue
4337
 
          ;;
4338
 
        release)
4339
 
          release="-$arg"
4340
 
          prev=
4341
 
          continue
4342
 
          ;;
4343
1182
        rpath | xrpath)
4344
1183
          # We need an absolute path.
4345
1184
          case $arg in
4346
1185
          [\\/]* | [A-Za-z]:[\\/]*) ;;
4347
1186
          *)
4348
 
            func_fatal_error "only absolute run-paths are allowed"
 
1187
            $echo "$modename: only absolute run-paths are allowed" 1>&2
 
1188
            exit $EXIT_FAILURE
4349
1189
            ;;
4350
1190
          esac
4351
1191
          if test "$prev" = rpath; then
4362
1202
          prev=
4363
1203
          continue
4364
1204
          ;;
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
1205
        xcompiler)
4384
1206
          compiler_flags="$compiler_flags $qarg"
4385
1207
          prev=
4386
 
          func_append compile_command " $qarg"
4387
 
          func_append finalize_command " $qarg"
 
1208
          compile_command="$compile_command $qarg"
 
1209
          finalize_command="$finalize_command $qarg"
4388
1210
          continue
4389
1211
          ;;
4390
1212
        xlinker)
4391
1213
          linker_flags="$linker_flags $qarg"
4392
1214
          compiler_flags="$compiler_flags $wl$qarg"
4393
1215
          prev=
4394
 
          func_append compile_command " $wl$qarg"
4395
 
          func_append finalize_command " $wl$qarg"
 
1216
          compile_command="$compile_command $wl$qarg"
 
1217
          finalize_command="$finalize_command $wl$qarg"
 
1218
          continue
 
1219
          ;;
 
1220
        xcclinker)
 
1221
          linker_flags="$linker_flags $qarg"
 
1222
          compiler_flags="$compiler_flags $qarg"
 
1223
          prev=
 
1224
          compile_command="$compile_command $qarg"
 
1225
          finalize_command="$finalize_command $qarg"
 
1226
          continue
 
1227
          ;;
 
1228
        shrext)
 
1229
          shrext_cmds="$arg"
 
1230
          prev=
4396
1231
          continue
4397
1232
          ;;
4398
1233
        *)
4408
1243
      case $arg in
4409
1244
      -all-static)
4410
1245
        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"
 
1246
          compile_command="$compile_command $link_static_flag"
 
1247
          finalize_command="$finalize_command $link_static_flag"
4414
1248
        fi
4415
1249
        continue
4416
1250
        ;;
4417
1251
 
4418
1252
      -allow-undefined)
4419
1253
        # FIXME: remove this flag sometime in the future.
4420
 
        func_fatal_error "\`-allow-undefined' must not be used because it is the default"
 
1254
        $echo "$modename: \`-allow-undefined' is deprecated because it is the default" 1>&2
 
1255
        continue
4421
1256
        ;;
4422
1257
 
4423
1258
      -avoid-version)
4442
1277
 
4443
1278
      -export-symbols | -export-symbols-regex)
4444
1279
        if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
4445
 
          func_fatal_error "more than one -exported-symbols argument is not allowed"
 
1280
          $echo "$modename: more than one -exported-symbols argument is not allowed"
 
1281
          exit $EXIT_FAILURE
4446
1282
        fi
4447
1283
        if test "X$arg" = "X-export-symbols"; then
4448
1284
          prev=expsyms
4452
1288
        continue
4453
1289
        ;;
4454
1290
 
4455
 
      -framework)
4456
 
        prev=framework
4457
 
        continue
4458
 
        ;;
4459
 
 
4460
1291
      -inst-prefix-dir)
4461
1292
        prev=inst_prefix
4462
1293
        continue
4467
1298
      -L[A-Z][A-Z]*:*)
4468
1299
        case $with_gcc/$host in
4469
1300
        no/*-*-irix* | /*-*-irix*)
4470
 
          func_append compile_command " $arg"
4471
 
          func_append finalize_command " $arg"
 
1301
          compile_command="$compile_command $arg"
 
1302
          finalize_command="$finalize_command $arg"
4472
1303
          ;;
4473
1304
        esac
4474
1305
        continue
4475
1306
        ;;
4476
1307
 
4477
1308
      -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
 
1309
        dir=`$echo "X$arg" | $Xsed -e 's/^-L//'`
4487
1310
        # We need an absolute path.
4488
1311
        case $dir in
4489
1312
        [\\/]* | [A-Za-z]:[\\/]*) ;;
4490
1313
        *)
4491
1314
          absdir=`cd "$dir" && pwd`
4492
 
          test -z "$absdir" && \
4493
 
            func_fatal_error "cannot determine absolute directory name of \`$dir'"
 
1315
          if test -z "$absdir"; then
 
1316
            $echo "$modename: cannot determine absolute directory name of \`$dir'" 1>&2
 
1317
            exit $EXIT_FAILURE
 
1318
          fi
4494
1319
          dir="$absdir"
4495
1320
          ;;
4496
1321
        esac
4502
1327
          ;;
4503
1328
        esac
4504
1329
        case $host in
4505
 
        *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
4506
 
          testbindir=`$ECHO "X$dir" | $Xsed -e 's*/lib$*/bin*'`
 
1330
        *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
4507
1331
          case :$dllsearchpath: in
4508
1332
          *":$dir:"*) ;;
4509
 
          ::) dllsearchpath=$dir;;
4510
1333
          *) dllsearchpath="$dllsearchpath:$dir";;
4511
1334
          esac
4512
 
          case :$dllsearchpath: in
4513
 
          *":$testbindir:"*) ;;
4514
 
          ::) dllsearchpath=$testbindir;;
4515
 
          *) dllsearchpath="$dllsearchpath:$testbindir";;
4516
 
          esac
4517
1335
          ;;
4518
1336
        esac
4519
1337
        continue
4522
1340
      -l*)
4523
1341
        if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then
4524
1342
          case $host in
4525
 
          *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc*)
 
1343
          *-*-cygwin* | *-*-pw32* | *-*-beos*)
4526
1344
            # These systems don't actually have a C or math library (as such)
4527
1345
            continue
4528
1346
            ;;
4529
 
          *-*-os2*)
 
1347
          *-*-mingw* | *-*-os2*)
4530
1348
            # These systems don't actually have a C library (as such)
4531
1349
            test "X$arg" = "X-lc" && continue
4532
1350
            ;;
4533
 
          *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
 
1351
          *-*-openbsd* | *-*-freebsd*)
4534
1352
            # Do not include libc due to us having libc/libc_r.
4535
1353
            test "X$arg" = "X-lc" && continue
4536
1354
            ;;
4537
1355
          *-*-rhapsody* | *-*-darwin1.[012])
4538
1356
            # Rhapsody C and math libraries are in the System framework
4539
 
            deplibs="$deplibs System.ltframework"
 
1357
            deplibs="$deplibs -framework System"
4540
1358
            continue
4541
 
            ;;
4542
 
          *-*-sco3.2v5* | *-*-sco5v6*)
4543
 
            # Causes problems with __ctype
4544
 
            test "X$arg" = "X-lc" && continue
4545
 
            ;;
4546
 
          *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)
4547
 
            # Compiler inserts libc in the correct place for threads to work
4548
 
            test "X$arg" = "X-lc" && continue
4549
 
            ;;
4550
1359
          esac
4551
1360
        elif test "X$arg" = "X-lc_r"; then
4552
1361
         case $host in
4553
 
         *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
 
1362
         *-*-openbsd* | *-*-freebsd*)
4554
1363
           # Do not include libc_r directly, use -pthread flag.
4555
1364
           continue
4556
1365
           ;;
4560
1369
        continue
4561
1370
        ;;
4562
1371
 
 
1372
     -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe)
 
1373
        deplibs="$deplibs $arg"
 
1374
        continue
 
1375
        ;;
 
1376
 
4563
1377
      -module)
4564
1378
        module=yes
4565
1379
        continue
4566
1380
        ;;
4567
1381
 
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
 
        ;;
4578
 
 
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" ;;
 
1382
      # gcc -m* arguments should be passed to the linker via $compiler_flags
 
1383
      # in order to pass architecture information to the linker
 
1384
      # (e.g. 32 vs 64-bit).  This may also be accomplished via -Wl,-mfoo
 
1385
      # but this is not reliable with gcc because gcc may use -mfoo to
 
1386
      # select a different linker, different libraries, etc, while
 
1387
      # -Wl,-mfoo simply passes -mfoo to the linker.
 
1388
      -m*)
 
1389
        # Unknown arguments in both finalize_command and compile_command need
 
1390
        # to be aesthetically quoted because they are evaled later.
 
1391
        arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
 
1392
        case $arg in
 
1393
        *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \   ]*|*]*|"")
 
1394
          arg="\"$arg\""
 
1395
          ;;
4586
1396
        esac
4587
 
        continue
4588
 
        ;;
 
1397
        compile_command="$compile_command $arg"
 
1398
        finalize_command="$finalize_command $arg"
 
1399
        if test "$with_gcc" = "yes" ; then
 
1400
          compiler_flags="$compiler_flags $arg"
 
1401
        fi
 
1402
        continue
 
1403
        ;;
4589
1404
 
4590
 
      -multi_module)
4591
 
        single_module="${wl}-multi_module"
 
1405
      -shrext)
 
1406
        prev=shrext
4592
1407
        continue
4593
1408
        ;;
4594
1409
 
4599
1414
 
4600
1415
      -no-install)
4601
1416
        case $host in
4602
 
        *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*)
 
1417
        *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
4603
1418
          # 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"
 
1419
          # in order for the loader to find any dlls it needs.
 
1420
          $echo "$modename: warning: \`-no-install' is ignored for $host" 1>&2
 
1421
          $echo "$modename: warning: assuming \`-no-fast-install' instead" 1>&2
4607
1422
          fast_install=no
4608
1423
          ;;
4609
1424
        *) no_install=yes ;;
4644
1459
        ;;
4645
1460
 
4646
1461
      -R*)
4647
 
        func_stripname '-R' '' "$arg"
4648
 
        dir=$func_stripname_result
 
1462
        dir=`$echo "X$arg" | $Xsed -e 's/^-R//'`
4649
1463
        # We need an absolute path.
4650
1464
        case $dir in
4651
1465
        [\\/]* | [A-Za-z]:[\\/]*) ;;
4652
1466
        *)
4653
 
          func_fatal_error "only absolute run-paths are allowed"
 
1467
          $echo "$modename: only absolute run-paths are allowed" 1>&2
 
1468
          exit $EXIT_FAILURE
4654
1469
          ;;
4655
1470
        esac
4656
1471
        case "$xrpath " in
4660
1475
        continue
4661
1476
        ;;
4662
1477
 
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)
 
1478
      -static)
4674
1479
        # The effects of -static are defined in a previous loop.
4675
1480
        # We used to do the same as -all-static on platforms that
4676
1481
        # didn't have a PIC flag, but the assumption that the effects
4688
1493
        prev=vinfo
4689
1494
        continue
4690
1495
        ;;
4691
 
 
4692
1496
      -version-number)
4693
1497
        prev=vinfo
4694
1498
        vinfo_number=yes
4695
1499
        continue
4696
1500
        ;;
4697
1501
 
4698
 
      -weak)
4699
 
        prev=weak
4700
 
        continue
4701
 
        ;;
4702
 
 
4703
1502
      -Wc,*)
4704
 
        func_stripname '-Wc,' '' "$arg"
4705
 
        args=$func_stripname_result
 
1503
        args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wc,//'`
4706
1504
        arg=
4707
1505
        save_ifs="$IFS"; IFS=','
4708
1506
        for flag in $args; do
4709
1507
          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"
 
1508
          case $flag in
 
1509
            *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \       ]*|*]*|"")
 
1510
            flag="\"$flag\""
 
1511
            ;;
 
1512
          esac
 
1513
          arg="$arg $wl$flag"
 
1514
          compiler_flags="$compiler_flags $flag"
4713
1515
        done
4714
1516
        IFS="$save_ifs"
4715
 
        func_stripname ' ' '' "$arg"
4716
 
        arg=$func_stripname_result
 
1517
        arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
4717
1518
        ;;
4718
1519
 
4719
1520
      -Wl,*)
4720
 
        func_stripname '-Wl,' '' "$arg"
4721
 
        args=$func_stripname_result
 
1521
        args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wl,//'`
4722
1522
        arg=
4723
1523
        save_ifs="$IFS"; IFS=','
4724
1524
        for flag in $args; do
4725
1525
          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"
 
1526
          case $flag in
 
1527
            *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \       ]*|*]*|"")
 
1528
            flag="\"$flag\""
 
1529
            ;;
 
1530
          esac
 
1531
          arg="$arg $wl$flag"
 
1532
          compiler_flags="$compiler_flags $wl$flag"
 
1533
          linker_flags="$linker_flags $flag"
4730
1534
        done
4731
1535
        IFS="$save_ifs"
4732
 
        func_stripname ' ' '' "$arg"
4733
 
        arg=$func_stripname_result
 
1536
        arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
4734
1537
        ;;
4735
1538
 
4736
1539
      -Xcompiler)
4748
1551
        continue
4749
1552
        ;;
4750
1553
 
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
1554
      # Some other compiler flag.
4778
1555
      -* | +*)
4779
 
        func_quote_for_eval "$arg"
4780
 
        arg="$func_quote_for_eval_result"
 
1556
        # Unknown arguments in both finalize_command and compile_command need
 
1557
        # to be aesthetically quoted because they are evaled later.
 
1558
        arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
 
1559
        case $arg in
 
1560
        *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \   ]*|*]*|"")
 
1561
          arg="\"$arg\""
 
1562
          ;;
 
1563
        esac
4781
1564
        ;;
4782
1565
 
4783
1566
      *.$objext)
4789
1572
        # A libtool-controlled object.
4790
1573
 
4791
1574
        # Check to see that this really is a libtool object.
4792
 
        if func_lalib_unsafe_p "$arg"; then
 
1575
        if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
4793
1576
          pic_object=
4794
1577
          non_pic_object=
4795
1578
 
4796
1579
          # Read the .lo file
4797
 
          func_source "$arg"
 
1580
          # If there is no directory component, then add one.
 
1581
          case $arg in
 
1582
          */* | *\\*) . $arg ;;
 
1583
          *) . ./$arg ;;
 
1584
          esac
4798
1585
 
4799
 
          if test -z "$pic_object" ||
 
1586
          if test -z "$pic_object" || \
4800
1587
             test -z "$non_pic_object" ||
4801
 
             test "$pic_object" = none &&
 
1588
             test "$pic_object" = none && \
4802
1589
             test "$non_pic_object" = none; then
4803
 
            func_fatal_error "cannot find name of object for \`$arg'"
 
1590
            $echo "$modename: cannot find name of object for \`$arg'" 1>&2
 
1591
            exit $EXIT_FAILURE
4804
1592
          fi
4805
1593
 
4806
1594
          # Extract subdirectory from the argument.
4807
 
          func_dirname "$arg" "/" ""
4808
 
          xdir="$func_dirname_result"
 
1595
          xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
 
1596
          if test "X$xdir" = "X$arg"; then
 
1597
            xdir=
 
1598
          else
 
1599
            xdir="$xdir/"
 
1600
          fi
4809
1601
 
4810
1602
          if test "$pic_object" != none; then
4811
1603
            # Prepend the subdirectory the object is found in.
4830
1622
            fi
4831
1623
 
4832
1624
            # A PIC object.
4833
 
            func_append libobjs " $pic_object"
 
1625
            libobjs="$libobjs $pic_object"
4834
1626
            arg="$pic_object"
4835
1627
          fi
4836
1628
 
4840
1632
            non_pic_object="$xdir$non_pic_object"
4841
1633
 
4842
1634
            # A standard non-PIC object
4843
 
            func_append non_pic_objects " $non_pic_object"
 
1635
            non_pic_objects="$non_pic_objects $non_pic_object"
4844
1636
            if test -z "$pic_object" || test "$pic_object" = none ; then
4845
1637
              arg="$non_pic_object"
4846
1638
            fi
4847
 
          else
4848
 
            # If the PIC object exists, use it instead.
4849
 
            # $xdir was prepended to $pic_object above.
4850
 
            non_pic_object="$pic_object"
4851
 
            func_append non_pic_objects " $non_pic_object"
4852
1639
          fi
4853
1640
        else
4854
1641
          # Only an error if not doing a dry-run.
4855
 
          if $opt_dry_run; then
 
1642
          if test -z "$run"; then
 
1643
            $echo "$modename: \`$arg' is not a valid libtool object" 1>&2
 
1644
            exit $EXIT_FAILURE
 
1645
          else
 
1646
            # Dry-run case.
 
1647
 
4856
1648
            # Extract subdirectory from the argument.
4857
 
            func_dirname "$arg" "/" ""
4858
 
            xdir="$func_dirname_result"
 
1649
            xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
 
1650
            if test "X$xdir" = "X$arg"; then
 
1651
              xdir=
 
1652
            else
 
1653
              xdir="$xdir/"
 
1654
            fi
4859
1655
 
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"
 
1656
            pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"`
 
1657
            non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"`
 
1658
            libobjs="$libobjs $pic_object"
 
1659
            non_pic_objects="$non_pic_objects $non_pic_object"
4867
1660
          fi
4868
1661
        fi
4869
1662
        ;;
4896
1689
      *)
4897
1690
        # Unknown arguments in both finalize_command and compile_command need
4898
1691
        # to be aesthetically quoted because they are evaled later.
4899
 
        func_quote_for_eval "$arg"
4900
 
        arg="$func_quote_for_eval_result"
 
1692
        arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
 
1693
        case $arg in
 
1694
        *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \   ]*|*]*|"")
 
1695
          arg="\"$arg\""
 
1696
          ;;
 
1697
        esac
4901
1698
        ;;
4902
1699
      esac # arg
4903
1700
 
4904
1701
      # Now actually substitute the argument into the commands.
4905
1702
      if test -n "$arg"; then
4906
 
        func_append compile_command " $arg"
4907
 
        func_append finalize_command " $arg"
 
1703
        compile_command="$compile_command $arg"
 
1704
        finalize_command="$finalize_command $arg"
4908
1705
      fi
4909
1706
    done # argument parsing loop
4910
1707
 
4911
 
    test -n "$prev" && \
4912
 
      func_fatal_help "the \`$prevarg' option requires an argument"
 
1708
    if test -n "$prev"; then
 
1709
      $echo "$modename: the \`$prevarg' option requires an argument" 1>&2
 
1710
      $echo "$help" 1>&2
 
1711
      exit $EXIT_FAILURE
 
1712
    fi
4913
1713
 
4914
1714
    if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then
4915
1715
      eval arg=\"$export_dynamic_flag_spec\"
4916
 
      func_append compile_command " $arg"
4917
 
      func_append finalize_command " $arg"
 
1716
      compile_command="$compile_command $arg"
 
1717
      finalize_command="$finalize_command $arg"
4918
1718
    fi
4919
1719
 
4920
1720
    oldlibs=
4921
1721
    # calculate the name of the file, without its directory
4922
 
    func_basename "$output"
4923
 
    outputname="$func_basename_result"
 
1722
    outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'`
4924
1723
    libobjs_save="$libobjs"
4925
1724
 
4926
1725
    if test -n "$shlibpath_var"; then
4927
1726
      # get the directories listed in $shlibpath_var
4928
 
      eval shlib_search_path=\`\$ECHO \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\`
 
1727
      eval shlib_search_path=\`\$echo \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\`
4929
1728
    else
4930
1729
      shlib_search_path=
4931
1730
    fi
4932
1731
    eval sys_lib_search_path=\"$sys_lib_search_path_spec\"
4933
1732
    eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\"
4934
1733
 
4935
 
    func_dirname "$output" "/" ""
4936
 
    output_objdir="$func_dirname_result$objdir"
 
1734
    output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'`
 
1735
    if test "X$output_objdir" = "X$output"; then
 
1736
      output_objdir="$objdir"
 
1737
    else
 
1738
      output_objdir="$output_objdir/$objdir"
 
1739
    fi
4937
1740
    # Create the object directory.
4938
 
    func_mkdir_p "$output_objdir"
 
1741
    if test ! -d "$output_objdir"; then
 
1742
      $show "$mkdir $output_objdir"
 
1743
      $run $mkdir $output_objdir
 
1744
      status=$?
 
1745
      if test "$status" -ne 0 && test ! -d "$output_objdir"; then
 
1746
        exit $status
 
1747
      fi
 
1748
    fi
4939
1749
 
4940
1750
    # Determine the type of output
4941
1751
    case $output in
4942
1752
    "")
4943
 
      func_fatal_help "you must specify an output file"
 
1753
      $echo "$modename: you must specify an output file" 1>&2
 
1754
      $echo "$help" 1>&2
 
1755
      exit $EXIT_FAILURE
4944
1756
      ;;
4945
1757
    *.$libext) linkmode=oldlib ;;
4946
1758
    *.lo | *.$objext) linkmode=obj ;;
4948
1760
    *) linkmode=prog ;; # Anything else should be a program.
4949
1761
    esac
4950
1762
 
 
1763
    case $host in
 
1764
    *cygwin* | *mingw* | *pw32*)
 
1765
      # don't eliminate duplications in $postdeps and $predeps
 
1766
      duplicate_compiler_generated_deps=yes
 
1767
      ;;
 
1768
    *)
 
1769
      duplicate_compiler_generated_deps=$duplicate_deps
 
1770
      ;;
 
1771
    esac
4951
1772
    specialdeplibs=
4952
1773
 
4953
1774
    libs=
4954
1775
    # Find all interdependent deplibs by searching for libraries
4955
1776
    # that are linked more than once (e.g. -la -lb -la)
4956
1777
    for deplib in $deplibs; do
4957
 
      if $opt_duplicate_deps ; then
 
1778
      if test "X$duplicate_deps" = "Xyes" ; then
4958
1779
        case "$libs " in
4959
1780
        *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
4960
1781
        esac
4969
1790
      # $postdeps and mark them as special (i.e., whose duplicates are
4970
1791
      # not to be eliminated).
4971
1792
      pre_post_deps=
4972
 
      if $opt_duplicate_compiler_generated_deps; then
 
1793
      if test "X$duplicate_compiler_generated_deps" = "Xyes" ; then
4973
1794
        for pre_post_dep in $predeps $postdeps; do
4974
1795
          case "$pre_post_deps " in
4975
1796
          *" $pre_post_dep "*) specialdeplibs="$specialdeplibs $pre_post_deps" ;;
4986
1807
    need_relink=no # whether we're linking any uninstalled libtool libraries
4987
1808
    notinst_deplibs= # not-installed libtool libraries
4988
1809
    notinst_path= # paths that contain not-installed libtool libraries
4989
 
 
4990
1810
    case $linkmode in
4991
1811
    lib)
4992
 
        passes="conv dlpreopen link"
 
1812
        passes="conv link"
4993
1813
        for file in $dlfiles $dlprefiles; do
4994
1814
          case $file in
4995
1815
          *.la) ;;
4996
1816
          *)
4997
 
            func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file"
 
1817
            $echo "$modename: libraries can \`-dlopen' only libtool libraries: $file" 1>&2
 
1818
            exit $EXIT_FAILURE
4998
1819
            ;;
4999
1820
          esac
5000
1821
        done
5010
1831
    *)  passes="conv"
5011
1832
        ;;
5012
1833
    esac
5013
 
 
5014
1834
    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
1835
      if test "$linkmode,$pass" = "lib,link" ||
5028
1836
         test "$linkmode,$pass" = "prog,scan"; then
5029
1837
        libs="$deplibs"
5036
1844
        link) libs="$deplibs %DEPLIBS% $dependency_libs" ;;
5037
1845
        esac
5038
1846
      fi
5039
 
      if test "$linkmode,$pass" = "lib,dlpreopen"; then
5040
 
        # Collect and forward deplibs of preopened libtool libs
5041
 
        for lib in $dlprefiles; do
5042
 
          # Ignore non-libtool-libs
5043
 
          dependency_libs=
5044
 
          case $lib in
5045
 
          *.la) func_source "$lib" ;;
5046
 
          esac
5047
 
 
5048
 
          # Collect preopened libtool deplibs, except any this library
5049
 
          # has declared as weak libs
5050
 
          for deplib in $dependency_libs; do
5051
 
            deplib_base=`$ECHO "X$deplib" | $Xsed -e "$basename"`
5052
 
            case " $weak_libs " in
5053
 
            *" $deplib_base "*) ;;
5054
 
            *) deplibs="$deplibs $deplib" ;;
5055
 
            esac
5056
 
          done
5057
 
        done
5058
 
        libs="$dlprefiles"
5059
 
      fi
5060
1847
      if test "$pass" = dlopen; then
5061
1848
        # Collect dlpreopened libraries
5062
1849
        save_deplibs="$deplibs"
5063
1850
        deplibs=
5064
1851
      fi
5065
 
 
5066
1852
      for deplib in $libs; do
5067
1853
        lib=
5068
1854
        found=no
5069
1855
        case $deplib in
5070
 
        -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads)
 
1856
        -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe)
5071
1857
          if test "$linkmode,$pass" = "prog,link"; then
5072
1858
            compile_deplibs="$deplib $compile_deplibs"
5073
1859
            finalize_deplibs="$deplib $finalize_deplibs"
5074
1860
          else
5075
 
            compiler_flags="$compiler_flags $deplib"
5076
 
            if test "$linkmode" = lib ; then
5077
 
                case "$new_inherited_linker_flags " in
5078
 
                    *" $deplib "*) ;;
5079
 
                    * ) new_inherited_linker_flags="$new_inherited_linker_flags $deplib" ;;
5080
 
                esac
5081
 
            fi
 
1861
            deplibs="$deplib $deplibs"
5082
1862
          fi
5083
1863
          continue
5084
1864
          ;;
5085
1865
        -l*)
5086
1866
          if test "$linkmode" != lib && test "$linkmode" != prog; then
5087
 
            func_warning "\`-l' is ignored for archives/objects"
5088
 
            continue
5089
 
          fi
5090
 
          func_stripname '-l' '' "$deplib"
5091
 
          name=$func_stripname_result
5092
 
          if test "$linkmode" = lib; then
5093
 
            searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path"
5094
 
          else
5095
 
            searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path"
5096
 
          fi
5097
 
          for searchdir in $searchdirs; do
 
1867
            $echo "$modename: warning: \`-l' is ignored for archives/objects" 1>&2
 
1868
            continue
 
1869
          fi
 
1870
          if test "$pass" = conv; then
 
1871
            deplibs="$deplib $deplibs"
 
1872
            continue
 
1873
          fi
 
1874
          name=`$echo "X$deplib" | $Xsed -e 's/^-l//'`
 
1875
          for searchdir in $newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path; do
5098
1876
            for search_ext in .la $std_shrext .so .a; do
5099
1877
              # Search the libtool library
5100
1878
              lib="$searchdir/lib${name}${search_ext}"
5124
1902
            if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
5125
1903
              case " $predeps $postdeps " in
5126
1904
              *" $deplib "*)
5127
 
                if func_lalib_p "$lib"; then
 
1905
                if (${SED} -e '2q' $lib |
 
1906
                    grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
5128
1907
                  library_names=
5129
1908
                  old_library=
5130
 
                  func_source "$lib"
 
1909
                  case $lib in
 
1910
                  */* | *\\*) . $lib ;;
 
1911
                  *) . ./$lib ;;
 
1912
                  esac
5131
1913
                  for l in $old_library $library_names; do
5132
1914
                    ll="$l"
5133
1915
                  done
5134
1916
                  if test "X$ll" = "X$old_library" ; then # only static version available
5135
1917
                    found=no
5136
 
                    func_dirname "$lib" "" "."
5137
 
                    ladir="$func_dirname_result"
 
1918
                    ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`
 
1919
                    test "X$ladir" = "X$lib" && ladir="."
5138
1920
                    lib=$ladir/$old_library
5139
1921
                    if test "$linkmode,$pass" = "prog,link"; then
5140
1922
                      compile_deplibs="$deplib $compile_deplibs"
5146
1928
                    continue
5147
1929
                  fi
5148
1930
                fi
5149
 
                ;;
 
1931
                ;;
5150
1932
              *) ;;
5151
1933
              esac
5152
1934
            fi
5153
1935
          fi
5154
1936
          ;; # -l
5155
 
        *.ltframework)
5156
 
          if test "$linkmode,$pass" = "prog,link"; then
5157
 
            compile_deplibs="$deplib $compile_deplibs"
5158
 
            finalize_deplibs="$deplib $finalize_deplibs"
5159
 
          else
5160
 
            deplibs="$deplib $deplibs"
5161
 
            if test "$linkmode" = lib ; then
5162
 
                case "$new_inherited_linker_flags " in
5163
 
                    *" $deplib "*) ;;
5164
 
                    * ) new_inherited_linker_flags="$new_inherited_linker_flags $deplib" ;;
5165
 
                esac
5166
 
            fi
5167
 
          fi
5168
 
          continue
5169
 
          ;;
5170
1937
        -L*)
5171
1938
          case $linkmode in
5172
1939
          lib)
5173
1940
            deplibs="$deplib $deplibs"
5174
1941
            test "$pass" = conv && continue
5175
1942
            newdependency_libs="$deplib $newdependency_libs"
5176
 
            func_stripname '-L' '' "$deplib"
5177
 
            newlib_search_path="$newlib_search_path $func_stripname_result"
 
1943
            newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
5178
1944
            ;;
5179
1945
          prog)
5180
1946
            if test "$pass" = conv; then
5187
1953
              compile_deplibs="$deplib $compile_deplibs"
5188
1954
              finalize_deplibs="$deplib $finalize_deplibs"
5189
1955
            fi
5190
 
            func_stripname '-L' '' "$deplib"
5191
 
            newlib_search_path="$newlib_search_path $func_stripname_result"
 
1956
            newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
5192
1957
            ;;
5193
1958
          *)
5194
 
            func_warning "\`-L' is ignored for archives/objects"
 
1959
            $echo "$modename: warning: \`-L' is ignored for archives/objects" 1>&2
5195
1960
            ;;
5196
1961
          esac # linkmode
5197
1962
          continue
5198
1963
          ;; # -L
5199
1964
        -R*)
5200
1965
          if test "$pass" = link; then
5201
 
            func_stripname '-R' '' "$deplib"
5202
 
            dir=$func_stripname_result
 
1966
            dir=`$echo "X$deplib" | $Xsed -e 's/^-R//'`
5203
1967
            # Make sure the xrpath contains only unique directories.
5204
1968
            case "$xrpath " in
5205
1969
            *" $dir "*) ;;
5217
1981
          fi
5218
1982
          case $linkmode in
5219
1983
          lib)
5220
 
            # Linking convenience modules into shared libraries is allowed,
5221
 
            # but linking other static libraries is non-portable.
5222
 
            case " $dlpreconveniencelibs " in
5223
 
            *" $deplib "*) ;;
5224
 
            *)
5225
 
              valid_a_lib=no
5226
 
              case $deplibs_check_method in
5227
 
                match_pattern*)
5228
 
                  set dummy $deplibs_check_method; shift
5229
 
                  match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
5230
 
                  if eval "\$ECHO \"X$deplib\"" 2>/dev/null | $Xsed -e 10q \
5231
 
                    | $EGREP "$match_pattern_regex" > /dev/null; then
5232
 
                    valid_a_lib=yes
5233
 
                  fi
5234
 
                ;;
5235
 
                pass_all)
5236
 
                  valid_a_lib=yes
5237
 
                ;;
5238
 
              esac
5239
 
              if test "$valid_a_lib" != yes; then
5240
 
                $ECHO
5241
 
                $ECHO "*** Warning: Trying to link with static lib archive $deplib."
5242
 
                $ECHO "*** I have the capability to make that library automatically link in when"
5243
 
                $ECHO "*** you link to this library.  But I can only do this if you have a"
5244
 
                $ECHO "*** shared version of the library, which you do not appear to have"
5245
 
                $ECHO "*** because the file extensions .$libext of this argument makes me believe"
5246
 
                $ECHO "*** that it is just a static archive that I should not use here."
5247
 
              else
5248
 
                $ECHO
5249
 
                $ECHO "*** Warning: Linking the shared library $output against the"
5250
 
                $ECHO "*** static library $deplib is not portable!"
5251
 
                deplibs="$deplib $deplibs"
5252
 
              fi
5253
 
              ;;
5254
 
            esac
 
1984
            if test "$deplibs_check_method" != pass_all; then
 
1985
              $echo
 
1986
              $echo "*** Warning: Trying to link with static lib archive $deplib."
 
1987
              $echo "*** I have the capability to make that library automatically link in when"
 
1988
              $echo "*** you link to this library.  But I can only do this if you have a"
 
1989
              $echo "*** shared version of the library, which you do not appear to have"
 
1990
              $echo "*** because the file extensions .$libext of this argument makes me believe"
 
1991
              $echo "*** that it is just a static archive that I should not used here."
 
1992
            else
 
1993
              $echo
 
1994
              $echo "*** Warning: Linking the shared library $output against the"
 
1995
              $echo "*** static library $deplib is not portable!"
 
1996
              deplibs="$deplib $deplibs"
 
1997
            fi
5255
1998
            continue
5256
1999
            ;;
5257
2000
          prog)
5286
2029
          continue
5287
2030
          ;;
5288
2031
        esac # case $deplib
5289
 
 
5290
2032
        if test "$found" = yes || test -f "$lib"; then :
5291
2033
        else
5292
 
          func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'"
 
2034
          $echo "$modename: cannot find the library \`$lib'" 1>&2
 
2035
          exit $EXIT_FAILURE
5293
2036
        fi
5294
2037
 
5295
2038
        # Check to see that this really is a libtool archive.
5296
 
        func_lalib_unsafe_p "$lib" \
5297
 
          || func_fatal_error "\`$lib' is not a valid libtool archive"
 
2039
        if (${SED} -e '2q' $lib | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
 
2040
        else
 
2041
          $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
 
2042
          exit $EXIT_FAILURE
 
2043
        fi
5298
2044
 
5299
 
        func_dirname "$lib" "" "."
5300
 
        ladir="$func_dirname_result"
 
2045
        ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`
 
2046
        test "X$ladir" = "X$lib" && ladir="."
5301
2047
 
5302
2048
        dlname=
5303
2049
        dlopen=
5305
2051
        libdir=
5306
2052
        library_names=
5307
2053
        old_library=
5308
 
        inherited_linker_flags=
5309
2054
        # If the library was installed with an old release of libtool,
5310
2055
        # it will not redefine variables installed, or shouldnotlink
5311
2056
        installed=yes
5312
2057
        shouldnotlink=no
5313
 
        avoidtemprpath=
5314
 
 
5315
2058
 
5316
2059
        # Read the .la file
5317
 
        func_source "$lib"
 
2060
        case $lib in
 
2061
        */* | *\\*) . $lib ;;
 
2062
        *) . ./$lib ;;
 
2063
        esac
5318
2064
 
5319
 
        # Convert "-framework foo" to "foo.ltframework"
5320
 
        if test -n "$inherited_linker_flags"; then
5321
 
          tmp_inherited_linker_flags=`$ECHO "X$inherited_linker_flags" | $Xsed -e 's/-framework \([^ $]*\)/\1.ltframework/g'`
5322
 
          for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do
5323
 
            case " $new_inherited_linker_flags " in
5324
 
              *" $tmp_inherited_linker_flag "*) ;;
5325
 
              *) new_inherited_linker_flags="$new_inherited_linker_flags $tmp_inherited_linker_flag";;
5326
 
            esac
5327
 
          done
5328
 
        fi
5329
 
        dependency_libs=`$ECHO "X $dependency_libs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'`
5330
2065
        if test "$linkmode,$pass" = "lib,link" ||
5331
2066
           test "$linkmode,$pass" = "prog,scan" ||
5332
2067
           { test "$linkmode" != prog && test "$linkmode" != lib; }; then
5339
2074
          deplibs="$lib $deplibs"
5340
2075
          if test -z "$libdir"; then
5341
2076
            if test -z "$old_library"; then
5342
 
              func_fatal_error "cannot find name of link library for \`$lib'"
 
2077
              $echo "$modename: cannot find name of link library for \`$lib'" 1>&2
 
2078
              exit $EXIT_FAILURE
5343
2079
            fi
5344
2080
            # It is a libtool convenience library, so add in its objects.
5345
2081
            convenience="$convenience $ladir/$objdir/$old_library"
5346
2082
            old_convenience="$old_convenience $ladir/$objdir/$old_library"
 
2083
            tmp_libs=
 
2084
            for deplib in $dependency_libs; do
 
2085
              deplibs="$deplib $deplibs"
 
2086
              if test "X$duplicate_deps" = "Xyes" ; then
 
2087
                case "$tmp_libs " in
 
2088
                *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
 
2089
                esac
 
2090
              fi
 
2091
              tmp_libs="$tmp_libs $deplib"
 
2092
            done
5347
2093
          elif test "$linkmode" != prog && test "$linkmode" != lib; then
5348
 
            func_fatal_error "\`$lib' is not a convenience library"
 
2094
            $echo "$modename: \`$lib' is not a convenience library" 1>&2
 
2095
            exit $EXIT_FAILURE
5349
2096
          fi
5350
 
          tmp_libs=
5351
 
          for deplib in $dependency_libs; do
5352
 
            deplibs="$deplib $deplibs"
5353
 
            if $opt_duplicate_deps ; then
5354
 
              case "$tmp_libs " in
5355
 
              *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
5356
 
              esac
5357
 
            fi
5358
 
            tmp_libs="$tmp_libs $deplib"
5359
 
          done
5360
2097
          continue
5361
2098
        fi # $pass = conv
5362
2099
 
5367
2104
          linklib="$l"
5368
2105
        done
5369
2106
        if test -z "$linklib"; then
5370
 
          func_fatal_error "cannot find name of link library for \`$lib'"
 
2107
          $echo "$modename: cannot find name of link library for \`$lib'" 1>&2
 
2108
          exit $EXIT_FAILURE
5371
2109
        fi
5372
2110
 
5373
2111
        # This library was specified with -dlopen.
5374
2112
        if test "$pass" = dlopen; then
5375
2113
          if test -z "$libdir"; then
5376
 
            func_fatal_error "cannot -dlopen a convenience library: \`$lib'"
 
2114
            $echo "$modename: cannot -dlopen a convenience library: \`$lib'" 1>&2
 
2115
            exit $EXIT_FAILURE
5377
2116
          fi
5378
2117
          if test -z "$dlname" ||
5379
2118
             test "$dlopen_support" != yes ||
5395
2134
        *)
5396
2135
          abs_ladir=`cd "$ladir" && pwd`
5397
2136
          if test -z "$abs_ladir"; then
5398
 
            func_warning "cannot determine absolute directory name of \`$ladir'"
5399
 
            func_warning "passing it literally to the linker, although it might fail"
 
2137
            $echo "$modename: warning: cannot determine absolute directory name of \`$ladir'" 1>&2
 
2138
            $echo "$modename: passing it literally to the linker, although it might fail" 1>&2
5400
2139
            abs_ladir="$ladir"
5401
2140
          fi
5402
2141
          ;;
5403
2142
        esac
5404
 
        func_basename "$lib"
5405
 
        laname="$func_basename_result"
 
2143
        laname=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
5406
2144
 
5407
2145
        # Find the relevant object directory and library name.
5408
2146
        if test "X$installed" = Xyes; then
5409
2147
          if test ! -f "$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then
5410
 
            func_warning "library \`$lib' was moved."
 
2148
            $echo "$modename: warning: library \`$lib' was moved." 1>&2
5411
2149
            dir="$ladir"
5412
2150
            absdir="$abs_ladir"
5413
2151
            libdir="$abs_ladir"
5415
2153
            dir="$libdir"
5416
2154
            absdir="$libdir"
5417
2155
          fi
5418
 
          test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes
5419
2156
        else
5420
 
          if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then
5421
 
            dir="$ladir"
5422
 
            absdir="$abs_ladir"
5423
 
            # Remove this search path later
5424
 
            notinst_path="$notinst_path $abs_ladir"
5425
 
          else
5426
 
            dir="$ladir/$objdir"
5427
 
            absdir="$abs_ladir/$objdir"
5428
 
            # Remove this search path later
5429
 
            notinst_path="$notinst_path $abs_ladir"
5430
 
          fi
 
2157
          dir="$ladir/$objdir"
 
2158
          absdir="$abs_ladir/$objdir"
 
2159
          # Remove this search path later
 
2160
          notinst_path="$notinst_path $abs_ladir"
5431
2161
        fi # $installed = yes
5432
 
        func_stripname 'lib' '.la' "$laname"
5433
 
        name=$func_stripname_result
 
2162
        name=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
5434
2163
 
5435
2164
        # This library was specified with -dlpreopen.
5436
2165
        if test "$pass" = dlpreopen; then
5437
 
          if test -z "$libdir" && test "$linkmode" = prog; then
5438
 
            func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'"
 
2166
          if test -z "$libdir"; then
 
2167
            $echo "$modename: cannot -dlpreopen a convenience library: \`$lib'" 1>&2
 
2168
            exit $EXIT_FAILURE
5439
2169
          fi
5440
2170
          # Prefer using a static library (so that no silly _DYNAMIC symbols
5441
2171
          # are required to link).
5442
2172
          if test -n "$old_library"; then
5443
2173
            newdlprefiles="$newdlprefiles $dir/$old_library"
5444
 
            # Keep a list of preopened convenience libraries to check
5445
 
            # that they are being used correctly in the link pass.
5446
 
            test -z "$libdir" && \
5447
 
                dlpreconveniencelibs="$dlpreconveniencelibs $dir/$old_library"
5448
2174
          # Otherwise, use the dlname, so that lt_dlopen finds it.
5449
2175
          elif test -n "$dlname"; then
5450
2176
            newdlprefiles="$newdlprefiles $dir/$dlname"
5480
2206
          tmp_libs=
5481
2207
          for deplib in $dependency_libs; do
5482
2208
            case $deplib in
5483
 
            -L*) func_stripname '-L' '' "$deplib"
5484
 
                 newlib_search_path="$newlib_search_path $func_stripname_result"
5485
 
                 ;;
 
2209
            -L*) newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`;; ### testsuite: skip nested quoting test
5486
2210
            esac
5487
2211
            # Need to link against all dependency_libs?
5488
2212
            if test "$linkalldeplibs" = yes; then
5492
2216
              # or/and link against static libraries
5493
2217
              newdependency_libs="$deplib $newdependency_libs"
5494
2218
            fi
5495
 
            if $opt_duplicate_deps ; then
 
2219
            if test "X$duplicate_deps" = "Xyes" ; then
5496
2220
              case "$tmp_libs " in
5497
2221
              *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
5498
2222
              esac
5504
2228
 
5505
2229
        if test "$linkmode,$pass" = "prog,link"; then
5506
2230
          if test -n "$library_names" &&
5507
 
             { { test "$prefer_static_libs" = no ||
5508
 
                 test "$prefer_static_libs,$installed" = "built,yes"; } ||
5509
 
               test -z "$old_library"; }; then
 
2231
             { test "$prefer_static_libs" = no || test -z "$old_library"; }; then
5510
2232
            # We need to hardcode the library path
5511
 
            if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then
 
2233
            if test -n "$shlibpath_var"; then
5512
2234
              # Make sure the rpath contains only unique directories.
5513
 
              case "$temp_rpath:" in
5514
 
              *"$absdir:"*) ;;
5515
 
              *) temp_rpath="$temp_rpath$absdir:" ;;
 
2235
              case "$temp_rpath " in
 
2236
              *" $dir "*) ;;
 
2237
              *" $absdir "*) ;;
 
2238
              *) temp_rpath="$temp_rpath $dir" ;;
5516
2239
              esac
5517
2240
            fi
5518
2241
 
5549
2272
        fi
5550
2273
 
5551
2274
        link_static=no # Whether the deplib will be linked statically
5552
 
        use_static_libs=$prefer_static_libs
5553
 
        if test "$use_static_libs" = built && test "$installed" = yes; then
5554
 
          use_static_libs=no
5555
 
        fi
5556
2275
        if test -n "$library_names" &&
5557
 
           { test "$use_static_libs" = no || test -z "$old_library"; }; then
5558
 
          case $host in
5559
 
          *cygwin* | *mingw* | *cegcc*)
5560
 
              # No point in relinking DLLs because paths are not encoded
5561
 
              notinst_deplibs="$notinst_deplibs $lib"
5562
 
              need_relink=no
5563
 
            ;;
5564
 
          *)
5565
 
            if test "$installed" = no; then
5566
 
              notinst_deplibs="$notinst_deplibs $lib"
5567
 
              need_relink=yes
5568
 
            fi
5569
 
            ;;
5570
 
          esac
 
2276
           { test "$prefer_static_libs" = no || test -z "$old_library"; }; then
 
2277
          if test "$installed" = no; then
 
2278
            notinst_deplibs="$notinst_deplibs $lib"
 
2279
            need_relink=yes
 
2280
          fi
5571
2281
          # This is a shared library
5572
2282
 
5573
 
          # Warn about portability, can't link against -module's on some
5574
 
          # systems (darwin).  Don't bleat about dlopened modules though!
5575
 
          dlopenmodule=""
5576
 
          for dlpremoduletest in $dlprefiles; do
5577
 
            if test "X$dlpremoduletest" = "X$lib"; then
5578
 
              dlopenmodule="$dlpremoduletest"
5579
 
              break
5580
 
            fi
5581
 
          done
5582
 
          if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then
5583
 
            $ECHO
 
2283
          # Warn about portability, can't link against -module's on
 
2284
          # some systems (darwin)
 
2285
          if test "$shouldnotlink" = yes && test "$pass" = link ; then
 
2286
            $echo
5584
2287
            if test "$linkmode" = prog; then
5585
 
              $ECHO "*** Warning: Linking the executable $output against the loadable module"
 
2288
              $echo "*** Warning: Linking the executable $output against the loadable module"
5586
2289
            else
5587
 
              $ECHO "*** Warning: Linking the shared library $output against the loadable module"
 
2290
              $echo "*** Warning: Linking the shared library $output against the loadable module"
5588
2291
            fi
5589
 
            $ECHO "*** $linklib is not portable!"
 
2292
            $echo "*** $linklib is not portable!"
5590
2293
          fi
5591
2294
          if test "$linkmode" = lib &&
5592
2295
             test "$hardcode_into_libs" = yes; then
5616
2319
          if test -n "$old_archive_from_expsyms_cmds"; then
5617
2320
            # figure out the soname
5618
2321
            set dummy $library_names
5619
 
            shift
5620
 
            realname="$1"
5621
 
            shift
5622
 
            libname=`eval "\\$ECHO \"$libname_spec\""`
 
2322
            realname="$2"
 
2323
            shift; shift
 
2324
            libname=`eval \\$echo \"$libname_spec\"`
5623
2325
            # use dlname if we got it. it's perfectly good, no?
5624
2326
            if test -n "$dlname"; then
5625
2327
              soname="$dlname"
5626
2328
            elif test -n "$soname_spec"; then
5627
2329
              # bleh windows
5628
2330
              case $host in
5629
 
              *cygwin* | mingw* | *cegcc*)
5630
 
                func_arith $current - $age
5631
 
                major=$func_arith_result
 
2331
              *cygwin* | mingw*)
 
2332
                major=`expr $current - $age`
5632
2333
                versuffix="-$major"
5633
2334
                ;;
5634
2335
              esac
5639
2340
 
5640
2341
            # Make a new name for the extract_expsyms_cmds to use
5641
2342
            soroot="$soname"
5642
 
            func_basename "$soroot"
5643
 
            soname="$func_basename_result"
5644
 
            func_stripname 'lib' '.dll' "$soname"
5645
 
            newlib=libimp-$func_stripname_result.a
 
2343
            soname=`$echo $soroot | ${SED} -e 's/^.*\///'`
 
2344
            newlib="libimp-`$echo $soname | ${SED} 's/^lib//;s/\.dll$//'`.a"
5646
2345
 
5647
2346
            # If the library has no export list, then create one now
5648
2347
            if test -f "$output_objdir/$soname-def"; then :
5649
2348
            else
5650
 
              func_verbose "extracting exported symbol list from \`$soname'"
5651
 
              func_execute_cmds "$extract_expsyms_cmds" 'exit $?'
 
2349
              $show "extracting exported symbol list from \`$soname'"
 
2350
              save_ifs="$IFS"; IFS='~'
 
2351
              cmds=$extract_expsyms_cmds
 
2352
              for cmd in $cmds; do
 
2353
                IFS="$save_ifs"
 
2354
                eval cmd=\"$cmd\"
 
2355
                $show "$cmd"
 
2356
                $run eval "$cmd" || exit $?
 
2357
              done
 
2358
              IFS="$save_ifs"
5652
2359
            fi
5653
2360
 
5654
2361
            # Create $newlib
5655
2362
            if test -f "$output_objdir/$newlib"; then :; else
5656
 
              func_verbose "generating import library for \`$soname'"
5657
 
              func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?'
 
2363
              $show "generating import library for \`$soname'"
 
2364
              save_ifs="$IFS"; IFS='~'
 
2365
              cmds=$old_archive_from_expsyms_cmds
 
2366
              for cmd in $cmds; do
 
2367
                IFS="$save_ifs"
 
2368
                eval cmd=\"$cmd\"
 
2369
                $show "$cmd"
 
2370
                $run eval "$cmd" || exit $?
 
2371
              done
 
2372
              IFS="$save_ifs"
5658
2373
            fi
5659
2374
            # make sure the library variables are pointing to the new library
5660
2375
            dir=$output_objdir
5671
2386
              if test "$hardcode_direct" = no; then
5672
2387
                add="$dir/$linklib"
5673
2388
                case $host in
5674
 
                  *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;;
5675
 
                  *-*-sysv4*uw2*) add_dir="-L$dir" ;;
5676
 
                  *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \
5677
 
                    *-*-unixware7*) add_dir="-L$dir" ;;
 
2389
                  *-*-sco3.2v5* ) add_dir="-L$dir" ;;
5678
2390
                  *-*-darwin* )
5679
 
                    # if the lib is a (non-dlopened) module then we can not
5680
 
                    # link against it, someone is ignoring the earlier warnings
5681
 
                    if /usr/bin/file -L $add 2> /dev/null |
5682
 
                         $GREP ": [^:]* bundle" >/dev/null ; then
5683
 
                      if test "X$dlopenmodule" != "X$lib"; then
5684
 
                        $ECHO "*** Warning: lib $linklib is a module, not a shared library"
5685
 
                        if test -z "$old_library" ; then
5686
 
                          $ECHO
5687
 
                          $ECHO "*** And there doesn't seem to be a static archive available"
5688
 
                          $ECHO "*** The link will probably fail, sorry"
5689
 
                        else
5690
 
                          add="$dir/$old_library"
5691
 
                        fi
5692
 
                      elif test -n "$old_library"; then
5693
 
                        add="$dir/$old_library"
 
2391
                    # if the lib is a module then we can not link against
 
2392
                    # it, someone is ignoring the new warnings I added
 
2393
                    if /usr/bin/file -L $add 2> /dev/null | $EGREP "bundle" >/dev/null ; then
 
2394
                      $echo "** Warning, lib $linklib is a module, not a shared library"
 
2395
                      if test -z "$old_library" ; then
 
2396
                        $echo
 
2397
                        $echo "** And there doesn't seem to be a static archive available"
 
2398
                        $echo "** The link will probably fail, sorry"
 
2399
                      else
 
2400
                        add="$dir/$old_library"
5694
2401
                      fi
5695
2402
                    fi
5696
2403
                esac
5708
2415
              fi
5709
2416
              ;;
5710
2417
            relink)
5711
 
              if test "$hardcode_direct" = yes &&
5712
 
                 test "$hardcode_direct_absolute" = no; then
 
2418
              if test "$hardcode_direct" = yes; then
5713
2419
                add="$dir/$linklib"
5714
2420
              elif test "$hardcode_minus_L" = yes; then
5715
2421
                add_dir="-L$dir"
5716
2422
                # Try looking first in the location we're being installed to.
5717
2423
                if test -n "$inst_prefix_dir"; then
5718
 
                  case $libdir in
 
2424
                  case "$libdir" in
5719
2425
                    [\\/]*)
5720
2426
                      add_dir="$add_dir -L$inst_prefix_dir$libdir"
5721
2427
                      ;;
5733
2439
            esac
5734
2440
 
5735
2441
            if test "$lib_linked" != yes; then
5736
 
              func_fatal_configuration "unsupported hardcode properties"
 
2442
              $echo "$modename: configuration error: unsupported hardcode properties"
 
2443
              exit $EXIT_FAILURE
5737
2444
            fi
5738
2445
 
5739
2446
            if test -n "$add_shlibpath"; then
5748
2455
            else
5749
2456
              test -n "$add_dir" && deplibs="$add_dir $deplibs"
5750
2457
              test -n "$add" && deplibs="$add $deplibs"
5751
 
              if test "$hardcode_direct" != yes &&
5752
 
                 test "$hardcode_minus_L" != yes &&
 
2458
              if test "$hardcode_direct" != yes && \
 
2459
                 test "$hardcode_minus_L" != yes && \
5753
2460
                 test "$hardcode_shlibpath_var" = yes; then
5754
2461
                case :$finalize_shlibpath: in
5755
2462
                *":$libdir:"*) ;;
5764
2471
            add_dir=
5765
2472
            add=
5766
2473
            # Finalize command for both is simple: just hardcode it.
5767
 
            if test "$hardcode_direct" = yes &&
5768
 
               test "$hardcode_direct_absolute" = no; then
 
2474
            if test "$hardcode_direct" = yes; then
5769
2475
              add="$libdir/$linklib"
5770
2476
            elif test "$hardcode_minus_L" = yes; then
5771
2477
              add_dir="-L$libdir"
5779
2485
            elif test "$hardcode_automatic" = yes; then
5780
2486
              if test -n "$inst_prefix_dir" &&
5781
2487
                 test -f "$inst_prefix_dir$libdir/$linklib" ; then
5782
 
                add="$inst_prefix_dir$libdir/$linklib"
 
2488
                add="$inst_prefix_dir$libdir/$linklib"
5783
2489
              else
5784
 
                add="$libdir/$linklib"
 
2490
                add="$libdir/$linklib"
5785
2491
              fi
5786
2492
            else
5787
2493
              # We cannot seem to hardcode it, guess we'll fake it.
5788
2494
              add_dir="-L$libdir"
5789
2495
              # Try looking first in the location we're being installed to.
5790
2496
              if test -n "$inst_prefix_dir"; then
5791
 
                case $libdir in
 
2497
                case "$libdir" in
5792
2498
                  [\\/]*)
5793
2499
                    add_dir="$add_dir -L$inst_prefix_dir$libdir"
5794
2500
                    ;;
5825
2531
 
5826
2532
            # Just print a warning and add the library to dependency_libs so
5827
2533
            # that the program can be linked against the static library.
5828
 
            $ECHO
5829
 
            $ECHO "*** Warning: This system can not link to static lib archive $lib."
5830
 
            $ECHO "*** I have the capability to make that library automatically link in when"
5831
 
            $ECHO "*** you link to this library.  But I can only do this if you have a"
5832
 
            $ECHO "*** shared version of the library, which you do not appear to have."
 
2534
            $echo
 
2535
            $echo "*** Warning: This system can not link to static lib archive $lib."
 
2536
            $echo "*** I have the capability to make that library automatically link in when"
 
2537
            $echo "*** you link to this library.  But I can only do this if you have a"
 
2538
            $echo "*** shared version of the library, which you do not appear to have."
5833
2539
            if test "$module" = yes; then
5834
 
              $ECHO "*** But as you try to build a module library, libtool will still create "
5835
 
              $ECHO "*** a static module, that should work as long as the dlopening application"
5836
 
              $ECHO "*** is linked with the -dlopen flag to resolve symbols at runtime."
 
2540
              $echo "*** But as you try to build a module library, libtool will still create "
 
2541
              $echo "*** a static module, that should work as long as the dlopening application"
 
2542
              $echo "*** is linked with the -dlopen flag to resolve symbols at runtime."
5837
2543
              if test -z "$global_symbol_pipe"; then
5838
 
                $ECHO
5839
 
                $ECHO "*** However, this would only work if libtool was able to extract symbol"
5840
 
                $ECHO "*** lists from a program, using \`nm' or equivalent, but libtool could"
5841
 
                $ECHO "*** not find such a program.  So, this module is probably useless."
5842
 
                $ECHO "*** \`nm' from GNU binutils and a full rebuild may help."
 
2544
                $echo
 
2545
                $echo "*** However, this would only work if libtool was able to extract symbol"
 
2546
                $echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
 
2547
                $echo "*** not find such a program.  So, this module is probably useless."
 
2548
                $echo "*** \`nm' from GNU binutils and a full rebuild may help."
5843
2549
              fi
5844
2550
              if test "$build_old_libs" = no; then
5845
2551
                build_libtool_libs=module
5849
2555
              fi
5850
2556
            fi
5851
2557
          else
 
2558
            convenience="$convenience $dir/$old_library"
 
2559
            old_convenience="$old_convenience $dir/$old_library"
5852
2560
            deplibs="$dir/$old_library $deplibs"
5853
2561
            link_static=yes
5854
2562
          fi
5863
2571
            temp_deplibs=
5864
2572
            for libdir in $dependency_libs; do
5865
2573
              case $libdir in
5866
 
              -R*) func_stripname '-R' '' "$libdir"
5867
 
                   temp_xrpath=$func_stripname_result
 
2574
              -R*) temp_xrpath=`$echo "X$libdir" | $Xsed -e 's/^-R//'`
5868
2575
                   case " $xrpath " in
5869
2576
                   *" $temp_xrpath "*) ;;
5870
2577
                   *) xrpath="$xrpath $temp_xrpath";;
5882
2589
          tmp_libs=
5883
2590
          for deplib in $dependency_libs; do
5884
2591
            newdependency_libs="$deplib $newdependency_libs"
5885
 
            if $opt_duplicate_deps ; then
 
2592
            if test "X$duplicate_deps" = "Xyes" ; then
5886
2593
              case "$tmp_libs " in
5887
2594
              *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
5888
2595
              esac
5896
2603
              case $deplib in
5897
2604
              -L*) path="$deplib" ;;
5898
2605
              *.la)
5899
 
                func_dirname "$deplib" "" "."
5900
 
                dir="$func_dirname_result"
 
2606
                dir=`$echo "X$deplib" | $Xsed -e 's%/[^/]*$%%'`
 
2607
                test "X$dir" = "X$deplib" && dir="."
5901
2608
                # We need an absolute path.
5902
2609
                case $dir in
5903
2610
                [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;;
5904
2611
                *)
5905
2612
                  absdir=`cd "$dir" && pwd`
5906
2613
                  if test -z "$absdir"; then
5907
 
                    func_warning "cannot determine absolute directory name of \`$dir'"
 
2614
                    $echo "$modename: warning: cannot determine absolute directory name of \`$dir'" 1>&2
5908
2615
                    absdir="$dir"
5909
2616
                  fi
5910
2617
                  ;;
5911
2618
                esac
5912
 
                if $GREP "^installed=no" $deplib > /dev/null; then
 
2619
                if grep "^installed=no" $deplib > /dev/null; then
 
2620
                  path="$absdir/$objdir"
 
2621
                else
 
2622
                  eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
 
2623
                  if test -z "$libdir"; then
 
2624
                    $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2
 
2625
                    exit $EXIT_FAILURE
 
2626
                  fi
 
2627
                  if test "$absdir" != "$libdir"; then
 
2628
                    $echo "$modename: warning: \`$deplib' seems to be moved" 1>&2
 
2629
                  fi
 
2630
                  path="$absdir"
 
2631
                fi
 
2632
                depdepl=
5913
2633
                case $host in
5914
2634
                *-*-darwin*)
5915
 
                  depdepl=
 
2635
                  # we do not want to link against static libs,
 
2636
                  # but need to link against shared
5916
2637
                  eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib`
5917
2638
                  if test -n "$deplibrary_names" ; then
5918
2639
                    for tmp in $deplibrary_names ; do
5919
2640
                      depdepl=$tmp
5920
2641
                    done
5921
 
                    if test -f "$absdir/$objdir/$depdepl" ; then
5922
 
                      depdepl="$absdir/$objdir/$depdepl"
5923
 
                      darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'`
5924
 
                      if test -z "$darwin_install_name"; then
5925
 
                          darwin_install_name=`${OTOOL64} -L $depdepl  | awk '{if (NR == 2) {print $1;exit}}'`
5926
 
                      fi
5927
 
                      compiler_flags="$compiler_flags ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}"
5928
 
                      linker_flags="$linker_flags -dylib_file ${darwin_install_name}:${depdepl}"
5929
 
                      path=
 
2642
                    if test -f "$path/$depdepl" ; then
 
2643
                      depdepl="$path/$depdepl"
5930
2644
                    fi
 
2645
                    # do not add paths which are already there
 
2646
                    case " $newlib_search_path " in
 
2647
                    *" $path "*) ;;
 
2648
                    *) newlib_search_path="$newlib_search_path $path";;
 
2649
                    esac
5931
2650
                  fi
 
2651
                  path=""
5932
2652
                  ;;
5933
2653
                *)
5934
 
                  path="-L$absdir/$objdir"
5935
 
                  ;;
5936
 
                esac
5937
 
                else
5938
 
                  eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
5939
 
                  test -z "$libdir" && \
5940
 
                    func_fatal_error "\`$deplib' is not a valid libtool archive"
5941
 
                  test "$absdir" != "$libdir" && \
5942
 
                    func_warning "\`$deplib' seems to be moved"
5943
 
 
5944
 
                  path="-L$absdir"
5945
 
                fi
5946
 
                ;;
 
2654
                  path="-L$path"
 
2655
                  ;;
 
2656
                esac
 
2657
                ;;
 
2658
              -l*)
 
2659
                case $host in
 
2660
                *-*-darwin*)
 
2661
                  # Again, we only want to link against shared libraries
 
2662
                  eval tmp_libs=`$echo "X$deplib" | $Xsed -e "s,^\-l,,"`
 
2663
                  for tmp in $newlib_search_path ; do
 
2664
                    if test -f "$tmp/lib$tmp_libs.dylib" ; then
 
2665
                      eval depdepl="$tmp/lib$tmp_libs.dylib"
 
2666
                      break
 
2667
                    fi
 
2668
                  done
 
2669
                  path=""
 
2670
                  ;;
 
2671
                *) continue ;;
 
2672
                esac
 
2673
                ;;
 
2674
              *) continue ;;
 
2675
              esac
 
2676
              case " $deplibs " in
 
2677
              *" $depdepl "*) ;;
 
2678
              *) deplibs="$depdepl $deplibs" ;;
5947
2679
              esac
5948
2680
              case " $deplibs " in
5949
2681
              *" $path "*) ;;
5950
 
              *) deplibs="$path $deplibs" ;;
 
2682
              *) deplibs="$deplibs $path" ;;
5951
2683
              esac
5952
2684
            done
5953
2685
          fi # link_all_deplibs != no
5954
2686
        fi # linkmode = lib
5955
2687
      done # for deplib in $libs
5956
 
      if test "$pass" = link; then
5957
 
        if test "$linkmode" = "prog"; then
5958
 
          compile_deplibs="$new_inherited_linker_flags $compile_deplibs"
5959
 
          finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs"
5960
 
        else
5961
 
          compiler_flags="$compiler_flags "`$ECHO "X $new_inherited_linker_flags" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'`
5962
 
        fi
5963
 
      fi
5964
2688
      dependency_libs="$newdependency_libs"
5965
2689
      if test "$pass" = dlpreopen; then
5966
2690
        # Link the dlpreopened libraries before other libraries
6059
2783
    done # for pass
6060
2784
    if test "$linkmode" = prog; then
6061
2785
      dlfiles="$newdlfiles"
6062
 
    fi
6063
 
    if test "$linkmode" = prog || test "$linkmode" = lib; then
6064
2786
      dlprefiles="$newdlprefiles"
6065
2787
    fi
6066
2788
 
6067
2789
    case $linkmode in
6068
2790
    oldlib)
 
2791
      if test -n "$deplibs"; then
 
2792
        $echo "$modename: warning: \`-l' and \`-L' are ignored for archives" 1>&2
 
2793
      fi
 
2794
 
6069
2795
      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
6070
 
        func_warning "\`-dlopen' is ignored for archives"
6071
 
      fi
6072
 
 
6073
 
      case " $deplibs" in
6074
 
      *\ -l* | *\ -L*)
6075
 
        func_warning "\`-l' and \`-L' are ignored for archives" ;;
6076
 
      esac
6077
 
 
6078
 
      test -n "$rpath" && \
6079
 
        func_warning "\`-rpath' is ignored for archives"
6080
 
 
6081
 
      test -n "$xrpath" && \
6082
 
        func_warning "\`-R' is ignored for archives"
6083
 
 
6084
 
      test -n "$vinfo" && \
6085
 
        func_warning "\`-version-info/-version-number' is ignored for archives"
6086
 
 
6087
 
      test -n "$release" && \
6088
 
        func_warning "\`-release' is ignored for archives"
6089
 
 
6090
 
      test -n "$export_symbols$export_symbols_regex" && \
6091
 
        func_warning "\`-export-symbols' is ignored for archives"
 
2796
        $echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2
 
2797
      fi
 
2798
 
 
2799
      if test -n "$rpath"; then
 
2800
        $echo "$modename: warning: \`-rpath' is ignored for archives" 1>&2
 
2801
      fi
 
2802
 
 
2803
      if test -n "$xrpath"; then
 
2804
        $echo "$modename: warning: \`-R' is ignored for archives" 1>&2
 
2805
      fi
 
2806
 
 
2807
      if test -n "$vinfo"; then
 
2808
        $echo "$modename: warning: \`-version-info/-version-number' is ignored for archives" 1>&2
 
2809
      fi
 
2810
 
 
2811
      if test -n "$release"; then
 
2812
        $echo "$modename: warning: \`-release' is ignored for archives" 1>&2
 
2813
      fi
 
2814
 
 
2815
      if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
 
2816
        $echo "$modename: warning: \`-export-symbols' is ignored for archives" 1>&2
 
2817
      fi
6092
2818
 
6093
2819
      # Now set the variables for building old libraries.
6094
2820
      build_libtool_libs=no
6100
2826
      # Make sure we only generate libraries of the form `libNAME.la'.
6101
2827
      case $outputname in
6102
2828
      lib*)
6103
 
        func_stripname 'lib' '.la' "$outputname"
6104
 
        name=$func_stripname_result
 
2829
        name=`$echo "X$outputname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
6105
2830
        eval shared_ext=\"$shrext_cmds\"
6106
2831
        eval libname=\"$libname_spec\"
6107
2832
        ;;
6108
2833
      *)
6109
 
        test "$module" = no && \
6110
 
          func_fatal_help "libtool library \`$output' must begin with \`lib'"
6111
 
 
 
2834
        if test "$module" = no; then
 
2835
          $echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2
 
2836
          $echo "$help" 1>&2
 
2837
          exit $EXIT_FAILURE
 
2838
        fi
6112
2839
        if test "$need_lib_prefix" != no; then
6113
2840
          # Add the "lib" prefix for modules if required
6114
 
          func_stripname '' '.la' "$outputname"
6115
 
          name=$func_stripname_result
 
2841
          name=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
6116
2842
          eval shared_ext=\"$shrext_cmds\"
6117
2843
          eval libname=\"$libname_spec\"
6118
2844
        else
6119
 
          func_stripname '' '.la' "$outputname"
6120
 
          libname=$func_stripname_result
 
2845
          libname=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
6121
2846
        fi
6122
2847
        ;;
6123
2848
      esac
6124
2849
 
6125
2850
      if test -n "$objs"; then
6126
2851
        if test "$deplibs_check_method" != pass_all; then
6127
 
          func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs"
 
2852
          $echo "$modename: cannot build libtool library \`$output' from non-libtool objects on this host:$objs" 2>&1
 
2853
          exit $EXIT_FAILURE
6128
2854
        else
6129
 
          $ECHO
6130
 
          $ECHO "*** Warning: Linking the shared library $output against the non-libtool"
6131
 
          $ECHO "*** objects $objs is not portable!"
 
2855
          $echo
 
2856
          $echo "*** Warning: Linking the shared library $output against the non-libtool"
 
2857
          $echo "*** objects $objs is not portable!"
6132
2858
          libobjs="$libobjs $objs"
6133
2859
        fi
6134
2860
      fi
6135
2861
 
6136
 
      test "$dlself" != no && \
6137
 
        func_warning "\`-dlopen self' is ignored for libtool libraries"
 
2862
      if test "$dlself" != no; then
 
2863
        $echo "$modename: warning: \`-dlopen self' is ignored for libtool libraries" 1>&2
 
2864
      fi
6138
2865
 
6139
2866
      set dummy $rpath
6140
 
      shift
6141
 
      test "$#" -gt 1 && \
6142
 
        func_warning "ignoring multiple \`-rpath's for a libtool library"
6143
 
 
6144
 
      install_libdir="$1"
 
2867
      if test "$#" -gt 2; then
 
2868
        $echo "$modename: warning: ignoring multiple \`-rpath's for a libtool library" 1>&2
 
2869
      fi
 
2870
      install_libdir="$2"
6145
2871
 
6146
2872
      oldlibs=
6147
2873
      if test -z "$rpath"; then
6155
2881
          build_old_libs=yes
6156
2882
        fi
6157
2883
 
6158
 
        test -n "$vinfo" && \
6159
 
          func_warning "\`-version-info/-version-number' is ignored for convenience libraries"
 
2884
        if test -n "$vinfo"; then
 
2885
          $echo "$modename: warning: \`-version-info/-version-number' is ignored for convenience libraries" 1>&2
 
2886
        fi
6160
2887
 
6161
 
        test -n "$release" && \
6162
 
          func_warning "\`-release' is ignored for convenience libraries"
 
2888
        if test -n "$release"; then
 
2889
          $echo "$modename: warning: \`-release' is ignored for convenience libraries" 1>&2
 
2890
        fi
6163
2891
      else
6164
2892
 
6165
2893
        # Parse the version information argument.
6166
2894
        save_ifs="$IFS"; IFS=':'
6167
2895
        set dummy $vinfo 0 0 0
6168
 
        shift
6169
2896
        IFS="$save_ifs"
6170
2897
 
6171
 
        test -n "$7" && \
6172
 
          func_fatal_help "too many parameters to \`-version-info'"
 
2898
        if test -n "$8"; then
 
2899
          $echo "$modename: too many parameters to \`-version-info'" 1>&2
 
2900
          $echo "$help" 1>&2
 
2901
          exit $EXIT_FAILURE
 
2902
        fi
6173
2903
 
6174
2904
        # convert absolute version numbers to libtool ages
6175
2905
        # this retains compatibility with .la files and attempts
6177
2907
 
6178
2908
        case $vinfo_number in
6179
2909
        yes)
6180
 
          number_major="$1"
6181
 
          number_minor="$2"
6182
 
          number_revision="$3"
 
2910
          number_major="$2"
 
2911
          number_minor="$3"
 
2912
          number_revision="$4"
6183
2913
          #
6184
2914
          # There are really only two kinds -- those that
6185
2915
          # use the current revision as the major version
6188
2918
          # which has an extra 1 added just for fun
6189
2919
          #
6190
2920
          case $version_type in
6191
 
          darwin|linux|osf|windows|none)
6192
 
            func_arith $number_major + $number_minor
6193
 
            current=$func_arith_result
 
2921
          darwin|linux|osf|windows)
 
2922
            current=`expr $number_major + $number_minor`
6194
2923
            age="$number_minor"
6195
2924
            revision="$number_revision"
6196
2925
            ;;
6200
2929
            age="0"
6201
2930
            ;;
6202
2931
          irix|nonstopux)
6203
 
            func_arith $number_major + $number_minor
6204
 
            current=$func_arith_result
 
2932
            current=`expr $number_major + $number_minor - 1`
6205
2933
            age="$number_minor"
6206
2934
            revision="$number_minor"
6207
 
            lt_irix_increment=no
6208
2935
            ;;
6209
2936
          esac
6210
2937
          ;;
6211
2938
        no)
6212
 
          current="$1"
6213
 
          revision="$2"
6214
 
          age="$3"
 
2939
          current="$2"
 
2940
          revision="$3"
 
2941
          age="$4"
6215
2942
          ;;
6216
2943
        esac
6217
2944
 
6218
2945
        # Check that each of the things are valid numbers.
6219
2946
        case $current in
6220
 
        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]) ;;
 
2947
        [0-9]*) ;;
6221
2948
        *)
6222
 
          func_error "CURRENT \`$current' must be a nonnegative integer"
6223
 
          func_fatal_error "\`$vinfo' is not valid version information"
 
2949
          $echo "$modename: CURRENT \`$current' is not a nonnegative integer" 1>&2
 
2950
          $echo "$modename: \`$vinfo' is not valid version information" 1>&2
 
2951
          exit $EXIT_FAILURE
6224
2952
          ;;
6225
2953
        esac
6226
2954
 
6227
2955
        case $revision in
6228
 
        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]) ;;
 
2956
        [0-9]*) ;;
6229
2957
        *)
6230
 
          func_error "REVISION \`$revision' must be a nonnegative integer"
6231
 
          func_fatal_error "\`$vinfo' is not valid version information"
 
2958
          $echo "$modename: REVISION \`$revision' is not a nonnegative integer" 1>&2
 
2959
          $echo "$modename: \`$vinfo' is not valid version information" 1>&2
 
2960
          exit $EXIT_FAILURE
6232
2961
          ;;
6233
2962
        esac
6234
2963
 
6235
2964
        case $age in
6236
 
        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]) ;;
 
2965
        [0-9]*) ;;
6237
2966
        *)
6238
 
          func_error "AGE \`$age' must be a nonnegative integer"
6239
 
          func_fatal_error "\`$vinfo' is not valid version information"
 
2967
          $echo "$modename: AGE \`$age' is not a nonnegative integer" 1>&2
 
2968
          $echo "$modename: \`$vinfo' is not valid version information" 1>&2
 
2969
          exit $EXIT_FAILURE
6240
2970
          ;;
6241
2971
        esac
6242
2972
 
6243
2973
        if test "$age" -gt "$current"; then
6244
 
          func_error "AGE \`$age' is greater than the current interface number \`$current'"
6245
 
          func_fatal_error "\`$vinfo' is not valid version information"
 
2974
          $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2
 
2975
          $echo "$modename: \`$vinfo' is not valid version information" 1>&2
 
2976
          exit $EXIT_FAILURE
6246
2977
        fi
6247
2978
 
6248
2979
        # Calculate the version variables.
6255
2986
        darwin)
6256
2987
          # Like Linux, but with the current version available in
6257
2988
          # verstring for coding it into the library header
6258
 
          func_arith $current - $age
6259
 
          major=.$func_arith_result
 
2989
          major=.`expr $current - $age`
6260
2990
          versuffix="$major.$age.$revision"
6261
2991
          # Darwin ld doesn't like 0 for these options...
6262
 
          func_arith $current + 1
6263
 
          minor_current=$func_arith_result
6264
 
          xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision"
 
2992
          minor_current=`expr $current + 1`
6265
2993
          verstring="-compatibility_version $minor_current -current_version $minor_current.$revision"
6266
2994
          ;;
6267
2995
 
6272
3000
 
6273
3001
        freebsd-elf)
6274
3002
          major=".$current"
6275
 
          versuffix=".$current"
 
3003
          versuffix=".$current";
6276
3004
          ;;
6277
3005
 
6278
3006
        irix | nonstopux)
6279
 
          if test "X$lt_irix_increment" = "Xno"; then
6280
 
            func_arith $current - $age
6281
 
          else
6282
 
            func_arith $current - $age + 1
6283
 
          fi
6284
 
          major=$func_arith_result
 
3007
          major=`expr $current - $age + 1`
6285
3008
 
6286
3009
          case $version_type in
6287
3010
            nonstopux) verstring_prefix=nonstopux ;;
6292
3015
          # Add in all the interfaces that we are compatible with.
6293
3016
          loop=$revision
6294
3017
          while test "$loop" -ne 0; do
6295
 
            func_arith $revision - $loop
6296
 
            iface=$func_arith_result
6297
 
            func_arith $loop - 1
6298
 
            loop=$func_arith_result
 
3018
            iface=`expr $revision - $loop`
 
3019
            loop=`expr $loop - 1`
6299
3020
            verstring="$verstring_prefix$major.$iface:$verstring"
6300
3021
          done
6301
3022
 
6305
3026
          ;;
6306
3027
 
6307
3028
        linux)
6308
 
          func_arith $current - $age
6309
 
          major=.$func_arith_result
 
3029
          major=.`expr $current - $age`
6310
3030
          versuffix="$major.$age.$revision"
6311
3031
          ;;
6312
3032
 
6313
3033
        osf)
6314
 
          func_arith $current - $age
6315
 
          major=.$func_arith_result
 
3034
          major=.`expr $current - $age`
6316
3035
          versuffix=".$current.$age.$revision"
6317
3036
          verstring="$current.$age.$revision"
6318
3037
 
6319
3038
          # Add in all the interfaces that we are compatible with.
6320
3039
          loop=$age
6321
3040
          while test "$loop" -ne 0; do
6322
 
            func_arith $current - $loop
6323
 
            iface=$func_arith_result
6324
 
            func_arith $loop - 1
6325
 
            loop=$func_arith_result
 
3041
            iface=`expr $current - $loop`
 
3042
            loop=`expr $loop - 1`
6326
3043
            verstring="$verstring:${iface}.0"
6327
3044
          done
6328
3045
 
6330
3047
          verstring="$verstring:${current}.0"
6331
3048
          ;;
6332
3049
 
6333
 
        qnx)
6334
 
          major=".$current"
6335
 
          versuffix=".$current"
6336
 
          ;;
6337
 
 
6338
3050
        sunos)
6339
3051
          major=".$current"
6340
3052
          versuffix=".$current.$revision"
6343
3055
        windows)
6344
3056
          # Use '-' rather than '.', since we only want one
6345
3057
          # extension on DOS 8.3 filesystems.
6346
 
          func_arith $current - $age
6347
 
          major=$func_arith_result
 
3058
          major=`expr $current - $age`
6348
3059
          versuffix="-$major"
6349
3060
          ;;
6350
3061
 
6351
3062
        *)
6352
 
          func_fatal_configuration "unknown library version type \`$version_type'"
 
3063
          $echo "$modename: unknown library version type \`$version_type'" 1>&2
 
3064
          $echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2
 
3065
          exit $EXIT_FAILURE
6353
3066
          ;;
6354
3067
        esac
6355
3068
 
6383
3096
        # Check to see if the archive will have undefined symbols.
6384
3097
        if test "$allow_undefined" = yes; then
6385
3098
          if test "$allow_undefined_flag" = unsupported; then
6386
 
            func_warning "undefined symbols not allowed in $host shared libraries"
 
3099
            $echo "$modename: warning: undefined symbols not allowed in $host shared libraries" 1>&2
6387
3100
            build_libtool_libs=no
6388
3101
            build_old_libs=yes
6389
3102
          fi
6391
3104
          # Don't allow undefined symbols.
6392
3105
          allow_undefined_flag="$no_undefined_flag"
6393
3106
        fi
6394
 
 
6395
3107
      fi
6396
3108
 
6397
 
      func_generate_dlsyms "$libname" "$libname" "yes"
6398
 
      libobjs="$libobjs $symfileobj"
6399
 
      test "X$libobjs" = "X " && libobjs=
6400
 
 
6401
3109
      if test "$mode" != relink; then
6402
3110
        # Remove our outputs, but don't remove object files since they
6403
3111
        # may have been created when compiling PIC objects.
6404
3112
        removelist=
6405
 
        tempremovelist=`$ECHO "$output_objdir/*"`
 
3113
        tempremovelist=`$echo "$output_objdir/*"`
6406
3114
        for p in $tempremovelist; do
6407
3115
          case $p in
6408
 
            *.$objext | *.gcno)
 
3116
            *.$objext)
6409
3117
               ;;
6410
3118
            $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*)
6411
3119
               if test "X$precious_files_regex" != "X"; then
6412
 
                 if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1
6413
 
                 then
 
3120
                 if echo $p | $EGREP -e "$precious_files_regex" >/dev/null 2>&1
 
3121
                 then
6414
3122
                   continue
6415
3123
                 fi
6416
3124
               fi
6419
3127
            *) ;;
6420
3128
          esac
6421
3129
        done
6422
 
        test -n "$removelist" && \
6423
 
          func_show_eval "${RM}r \$removelist"
 
3130
        if test -n "$removelist"; then
 
3131
          $show "${rm}r $removelist"
 
3132
          $run ${rm}r $removelist
 
3133
        fi
6424
3134
      fi
6425
3135
 
6426
3136
      # Now set the variables for building old libraries.
6428
3138
        oldlibs="$oldlibs $output_objdir/$libname.$libext"
6429
3139
 
6430
3140
        # Transform .lo files to .o files.
6431
 
        oldobjs="$objs "`$ECHO "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP`
 
3141
        oldobjs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP`
6432
3142
      fi
6433
3143
 
6434
3144
      # Eliminate all temporary directories.
6435
 
      #for path in $notinst_path; do
6436
 
      # lib_search_path=`$ECHO "X$lib_search_path " | $Xsed -e "s% $path % %g"`
6437
 
      # deplibs=`$ECHO "X$deplibs " | $Xsed -e "s% -L$path % %g"`
6438
 
      # dependency_libs=`$ECHO "X$dependency_libs " | $Xsed -e "s% -L$path % %g"`
6439
 
      #done
 
3145
      for path in $notinst_path; do
 
3146
        lib_search_path=`$echo "$lib_search_path " | ${SED} -e 's% $path % %g'`
 
3147
        deplibs=`$echo "$deplibs " | ${SED} -e 's% -L$path % %g'`
 
3148
        dependency_libs=`$echo "$dependency_libs " | ${SED} -e 's% -L$path % %g'`
 
3149
      done
6440
3150
 
6441
3151
      if test -n "$xrpath"; then
6442
3152
        # If the user specified any rpath flags, then add them.
6476
3186
      if test "$build_libtool_libs" = yes; then
6477
3187
        if test -n "$rpath"; then
6478
3188
          case $host in
6479
 
          *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc*)
 
3189
          *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos*)
6480
3190
            # these systems don't actually have a c library (as such)!
6481
3191
            ;;
6482
3192
          *-*-rhapsody* | *-*-darwin1.[012])
6483
3193
            # Rhapsody C library is in the System framework
6484
 
            deplibs="$deplibs System.ltframework"
 
3194
            deplibs="$deplibs -framework System"
6485
3195
            ;;
6486
3196
          *-*-netbsd*)
6487
3197
            # Don't link with libc until the a.out ld.so is fixed.
6488
3198
            ;;
6489
 
          *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
 
3199
          *-*-openbsd* | *-*-freebsd*)
6490
3200
            # Do not include libc due to us having libc/libc_r.
6491
 
            ;;
6492
 
          *-*-sco3.2v5* | *-*-sco5v6*)
6493
 
            # Causes problems with __ctype
6494
 
            ;;
6495
 
          *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)
6496
 
            # Compiler inserts libc in the correct place for threads to work
6497
 
            ;;
6498
 
          *)
 
3201
            test "X$arg" = "X-lc" && continue
 
3202
            ;;
 
3203
          *)
6499
3204
            # Add libc to deplibs on all other systems if necessary.
6500
3205
            if test "$build_libtool_need_lc" = "yes"; then
6501
3206
              deplibs="$deplibs -lc"
6532
3237
          # limits. Maybe even breaks it.  We compile a program, linking it
6533
3238
          # against the deplibs as a proxy for the library.  Then we can check
6534
3239
          # whether they linked in statically or dynamically with ldd.
6535
 
          $opt_dry_run || $RM conftest.c
 
3240
          $rm conftest.c
6536
3241
          cat > conftest.c <<EOF
6537
3242
          int main() { return 0; }
6538
3243
EOF
6539
 
          $opt_dry_run || $RM conftest
6540
 
          if $LTCC $LTCFLAGS -o conftest conftest.c $deplibs; then
 
3244
          $rm conftest
 
3245
          $LTCC -o conftest conftest.c $deplibs
 
3246
          if test "$?" -eq 0 ; then
6541
3247
            ldd_output=`ldd conftest`
6542
3248
            for i in $deplibs; do
6543
 
              case $i in
6544
 
              -l*)
6545
 
                func_stripname -l '' "$i"
6546
 
                name=$func_stripname_result
 
3249
              name="`expr $i : '-l\(.*\)'`"
 
3250
              # If $name is empty we are operating on a -L argument.
 
3251
              if test "$name" != "" && test "$name" -ne "0"; then
6547
3252
                if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
6548
3253
                  case " $predeps $postdeps " in
6549
3254
                  *" $i "*)
6551
3256
                    i=""
6552
3257
                    ;;
6553
3258
                  esac
6554
 
                fi
 
3259
                fi
6555
3260
                if test -n "$i" ; then
6556
 
                  libname=`eval "\\$ECHO \"$libname_spec\""`
6557
 
                  deplib_matches=`eval "\\$ECHO \"$library_names_spec\""`
6558
 
                  set dummy $deplib_matches; shift
6559
 
                  deplib_match=$1
 
3261
                  libname=`eval \\$echo \"$libname_spec\"`
 
3262
                  deplib_matches=`eval \\$echo \"$library_names_spec\"`
 
3263
                  set dummy $deplib_matches
 
3264
                  deplib_match=$2
6560
3265
                  if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
6561
3266
                    newdeplibs="$newdeplibs $i"
6562
3267
                  else
6563
3268
                    droppeddeps=yes
6564
 
                    $ECHO
6565
 
                    $ECHO "*** Warning: dynamic linker does not accept needed library $i."
6566
 
                    $ECHO "*** I have the capability to make that library automatically link in when"
6567
 
                    $ECHO "*** you link to this library.  But I can only do this if you have a"
6568
 
                    $ECHO "*** shared version of the library, which I believe you do not have"
6569
 
                    $ECHO "*** because a test_compile did reveal that the linker did not use it for"
6570
 
                    $ECHO "*** its dynamic dependency list that programs get resolved with at runtime."
 
3269
                    $echo
 
3270
                    $echo "*** Warning: dynamic linker does not accept needed library $i."
 
3271
                    $echo "*** I have the capability to make that library automatically link in when"
 
3272
                    $echo "*** you link to this library.  But I can only do this if you have a"
 
3273
                    $echo "*** shared version of the library, which I believe you do not have"
 
3274
                    $echo "*** because a test_compile did reveal that the linker did not use it for"
 
3275
                    $echo "*** its dynamic dependency list that programs get resolved with at runtime."
6571
3276
                  fi
6572
3277
                fi
6573
 
                ;;
6574
 
              *)
 
3278
              else
6575
3279
                newdeplibs="$newdeplibs $i"
6576
 
                ;;
6577
 
              esac
 
3280
              fi
6578
3281
            done
6579
3282
          else
6580
3283
            # Error occurred in the first compile.  Let's try to salvage
6581
3284
            # the situation: Compile a separate program for each library.
6582
3285
            for i in $deplibs; do
6583
 
              case $i in
6584
 
              -l*)
6585
 
                func_stripname -l '' "$i"
6586
 
                name=$func_stripname_result
6587
 
                $opt_dry_run || $RM conftest
6588
 
                if $LTCC $LTCFLAGS -o conftest conftest.c $i; then
 
3286
              name="`expr $i : '-l\(.*\)'`"
 
3287
              # If $name is empty we are operating on a -L argument.
 
3288
              if test "$name" != "" && test "$name" != "0"; then
 
3289
                $rm conftest
 
3290
                $LTCC -o conftest conftest.c $i
 
3291
                # Did it work?
 
3292
                if test "$?" -eq 0 ; then
6589
3293
                  ldd_output=`ldd conftest`
6590
3294
                  if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
6591
3295
                    case " $predeps $postdeps " in
6596
3300
                    esac
6597
3301
                  fi
6598
3302
                  if test -n "$i" ; then
6599
 
                    libname=`eval "\\$ECHO \"$libname_spec\""`
6600
 
                    deplib_matches=`eval "\\$ECHO \"$library_names_spec\""`
6601
 
                    set dummy $deplib_matches; shift
6602
 
                    deplib_match=$1
 
3303
                    libname=`eval \\$echo \"$libname_spec\"`
 
3304
                    deplib_matches=`eval \\$echo \"$library_names_spec\"`
 
3305
                    set dummy $deplib_matches
 
3306
                    deplib_match=$2
6603
3307
                    if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
6604
3308
                      newdeplibs="$newdeplibs $i"
6605
3309
                    else
6606
3310
                      droppeddeps=yes
6607
 
                      $ECHO
6608
 
                      $ECHO "*** Warning: dynamic linker does not accept needed library $i."
6609
 
                      $ECHO "*** I have the capability to make that library automatically link in when"
6610
 
                      $ECHO "*** you link to this library.  But I can only do this if you have a"
6611
 
                      $ECHO "*** shared version of the library, which you do not appear to have"
6612
 
                      $ECHO "*** because a test_compile did reveal that the linker did not use this one"
6613
 
                      $ECHO "*** as a dynamic dependency that programs can get resolved with at runtime."
 
3311
                      $echo
 
3312
                      $echo "*** Warning: dynamic linker does not accept needed library $i."
 
3313
                      $echo "*** I have the capability to make that library automatically link in when"
 
3314
                      $echo "*** you link to this library.  But I can only do this if you have a"
 
3315
                      $echo "*** shared version of the library, which you do not appear to have"
 
3316
                      $echo "*** because a test_compile did reveal that the linker did not use this one"
 
3317
                      $echo "*** as a dynamic dependency that programs can get resolved with at runtime."
6614
3318
                    fi
6615
3319
                  fi
6616
3320
                else
6617
3321
                  droppeddeps=yes
6618
 
                  $ECHO
6619
 
                  $ECHO "*** Warning!  Library $i is needed by this library but I was not able to"
6620
 
                  $ECHO "*** make it link in!  You will probably need to install it or some"
6621
 
                  $ECHO "*** library that it depends on before this library will be fully"
6622
 
                  $ECHO "*** functional.  Installing it before continuing would be even better."
 
3322
                  $echo
 
3323
                  $echo "*** Warning!  Library $i is needed by this library but I was not able to"
 
3324
                  $echo "***  make it link in!  You will probably need to install it or some"
 
3325
                  $echo "*** library that it depends on before this library will be fully"
 
3326
                  $echo "*** functional.  Installing it before continuing would be even better."
6623
3327
                fi
6624
 
                ;;
6625
 
              *)
 
3328
              else
6626
3329
                newdeplibs="$newdeplibs $i"
6627
 
                ;;
6628
 
              esac
 
3330
              fi
6629
3331
            done
6630
3332
          fi
6631
3333
          ;;
6632
3334
        file_magic*)
6633
 
          set dummy $deplibs_check_method; shift
6634
 
          file_magic_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
 
3335
          set dummy $deplibs_check_method
 
3336
          file_magic_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
6635
3337
          for a_deplib in $deplibs; do
6636
 
            case $a_deplib in
6637
 
            -l*)
6638
 
              func_stripname -l '' "$a_deplib"
6639
 
              name=$func_stripname_result
 
3338
            name="`expr $a_deplib : '-l\(.*\)'`"
 
3339
            # If $name is empty we are operating on a -L argument.
 
3340
            if test "$name" != "" && test  "$name" != "0"; then
6640
3341
              if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
6641
3342
                case " $predeps $postdeps " in
6642
3343
                *" $a_deplib "*)
6646
3347
                esac
6647
3348
              fi
6648
3349
              if test -n "$a_deplib" ; then
6649
 
                libname=`eval "\\$ECHO \"$libname_spec\""`
 
3350
                libname=`eval \\$echo \"$libname_spec\"`
6650
3351
                for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
6651
3352
                  potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
6652
3353
                  for potent_lib in $potential_libs; do
6653
3354
                      # Follow soft links.
6654
 
                      if ls -lLd "$potent_lib" 2>/dev/null |
6655
 
                         $GREP " -> " >/dev/null; then
 
3355
                      if ls -lLd "$potent_lib" 2>/dev/null \
 
3356
                         | grep " -> " >/dev/null; then
6656
3357
                        continue
6657
3358
                      fi
6658
3359
                      # The statement above tries to avoid entering an
6665
3366
                        potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'`
6666
3367
                        case $potliblink in
6667
3368
                        [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";;
6668
 
                        *) potlib=`$ECHO "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";;
 
3369
                        *) potlib=`$echo "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";;
6669
3370
                        esac
6670
3371
                      done
6671
 
                      if eval $file_magic_cmd \"\$potlib\" 2>/dev/null |
6672
 
                         $SED -e 10q |
6673
 
                         $EGREP "$file_magic_regex" > /dev/null; then
 
3372
                      if eval $file_magic_cmd \"\$potlib\" 2>/dev/null \
 
3373
                         | ${SED} 10q \
 
3374
                         | $EGREP "$file_magic_regex" > /dev/null; then
6674
3375
                        newdeplibs="$newdeplibs $a_deplib"
6675
3376
                        a_deplib=""
6676
3377
                        break 2
6680
3381
              fi
6681
3382
              if test -n "$a_deplib" ; then
6682
3383
                droppeddeps=yes
6683
 
                $ECHO
6684
 
                $ECHO "*** Warning: linker path does not have real file for library $a_deplib."
6685
 
                $ECHO "*** I have the capability to make that library automatically link in when"
6686
 
                $ECHO "*** you link to this library.  But I can only do this if you have a"
6687
 
                $ECHO "*** shared version of the library, which you do not appear to have"
6688
 
                $ECHO "*** because I did check the linker path looking for a file starting"
 
3384
                $echo
 
3385
                $echo "*** Warning: linker path does not have real file for library $a_deplib."
 
3386
                $echo "*** I have the capability to make that library automatically link in when"
 
3387
                $echo "*** you link to this library.  But I can only do this if you have a"
 
3388
                $echo "*** shared version of the library, which you do not appear to have"
 
3389
                $echo "*** because I did check the linker path looking for a file starting"
6689
3390
                if test -z "$potlib" ; then
6690
 
                  $ECHO "*** with $libname but no candidates were found. (...for file magic test)"
 
3391
                  $echo "*** with $libname but no candidates were found. (...for file magic test)"
6691
3392
                else
6692
 
                  $ECHO "*** with $libname and none of the candidates passed a file format test"
6693
 
                  $ECHO "*** using a file magic. Last file checked: $potlib"
 
3393
                  $echo "*** with $libname and none of the candidates passed a file format test"
 
3394
                  $echo "*** using a file magic. Last file checked: $potlib"
6694
3395
                fi
6695
3396
              fi
6696
 
              ;;
6697
 
            *)
 
3397
            else
6698
3398
              # Add a -L argument.
6699
3399
              newdeplibs="$newdeplibs $a_deplib"
6700
 
              ;;
6701
 
            esac
 
3400
            fi
6702
3401
          done # Gone through all deplibs.
6703
3402
          ;;
6704
3403
        match_pattern*)
6705
 
          set dummy $deplibs_check_method; shift
6706
 
          match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
 
3404
          set dummy $deplibs_check_method
 
3405
          match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
6707
3406
          for a_deplib in $deplibs; do
6708
 
            case $a_deplib in
6709
 
            -l*)
6710
 
              func_stripname -l '' "$a_deplib"
6711
 
              name=$func_stripname_result
 
3407
            name="`expr $a_deplib : '-l\(.*\)'`"
 
3408
            # If $name is empty we are operating on a -L argument.
 
3409
            if test -n "$name" && test "$name" != "0"; then
6712
3410
              if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
6713
3411
                case " $predeps $postdeps " in
6714
3412
                *" $a_deplib "*)
6718
3416
                esac
6719
3417
              fi
6720
3418
              if test -n "$a_deplib" ; then
6721
 
                libname=`eval "\\$ECHO \"$libname_spec\""`
 
3419
                libname=`eval \\$echo \"$libname_spec\"`
6722
3420
                for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
6723
3421
                  potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
6724
3422
                  for potent_lib in $potential_libs; do
6725
3423
                    potlib="$potent_lib" # see symlink-check above in file_magic test
6726
 
                    if eval "\$ECHO \"X$potent_lib\"" 2>/dev/null | $Xsed -e 10q | \
6727
 
                       $EGREP "$match_pattern_regex" > /dev/null; then
 
3424
                    if eval $echo \"$potent_lib\" 2>/dev/null \
 
3425
                        | ${SED} 10q \
 
3426
                        | $EGREP "$match_pattern_regex" > /dev/null; then
6728
3427
                      newdeplibs="$newdeplibs $a_deplib"
6729
3428
                      a_deplib=""
6730
3429
                      break 2
6734
3433
              fi
6735
3434
              if test -n "$a_deplib" ; then
6736
3435
                droppeddeps=yes
6737
 
                $ECHO
6738
 
                $ECHO "*** Warning: linker path does not have real file for library $a_deplib."
6739
 
                $ECHO "*** I have the capability to make that library automatically link in when"
6740
 
                $ECHO "*** you link to this library.  But I can only do this if you have a"
6741
 
                $ECHO "*** shared version of the library, which you do not appear to have"
6742
 
                $ECHO "*** because I did check the linker path looking for a file starting"
 
3436
                $echo
 
3437
                $echo "*** Warning: linker path does not have real file for library $a_deplib."
 
3438
                $echo "*** I have the capability to make that library automatically link in when"
 
3439
                $echo "*** you link to this library.  But I can only do this if you have a"
 
3440
                $echo "*** shared version of the library, which you do not appear to have"
 
3441
                $echo "*** because I did check the linker path looking for a file starting"
6743
3442
                if test -z "$potlib" ; then
6744
 
                  $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)"
 
3443
                  $echo "*** with $libname but no candidates were found. (...for regex pattern test)"
6745
3444
                else
6746
 
                  $ECHO "*** with $libname and none of the candidates passed a file format test"
6747
 
                  $ECHO "*** using a regex pattern. Last file checked: $potlib"
 
3445
                  $echo "*** with $libname and none of the candidates passed a file format test"
 
3446
                  $echo "*** using a regex pattern. Last file checked: $potlib"
6748
3447
                fi
6749
3448
              fi
6750
 
              ;;
6751
 
            *)
 
3449
            else
6752
3450
              # Add a -L argument.
6753
3451
              newdeplibs="$newdeplibs $a_deplib"
6754
 
              ;;
6755
 
            esac
 
3452
            fi
6756
3453
          done # Gone through all deplibs.
6757
3454
          ;;
6758
3455
        none | unknown | *)
6759
3456
          newdeplibs=""
6760
 
          tmp_deplibs=`$ECHO "X $deplibs" | $Xsed \
6761
 
              -e 's/ -lc$//' -e 's/ -[LR][^ ]*//g'`
 
3457
          tmp_deplibs=`$echo "X $deplibs" | $Xsed -e 's/ -lc$//' \
 
3458
            -e 's/ -[LR][^ ]*//g'`
6762
3459
          if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
6763
3460
            for i in $predeps $postdeps ; do
6764
3461
              # can't use Xsed below, because $i might contain '/'
6765
 
              tmp_deplibs=`$ECHO "X $tmp_deplibs" | $Xsed -e "s,$i,,"`
 
3462
              tmp_deplibs=`$echo "X $tmp_deplibs" | ${SED} -e "1s,^X,," -e "s,$i,,"`
6766
3463
            done
6767
3464
          fi
6768
 
          if $ECHO "X $tmp_deplibs" | $Xsed -e 's/[      ]//g' |
6769
 
             $GREP . >/dev/null; then
6770
 
            $ECHO
 
3465
          if $echo "X $tmp_deplibs" | $Xsed -e 's/[     ]//g' \
 
3466
            | grep . >/dev/null; then
 
3467
            $echo
6771
3468
            if test "X$deplibs_check_method" = "Xnone"; then
6772
 
              $ECHO "*** Warning: inter-library dependencies are not supported in this platform."
 
3469
              $echo "*** Warning: inter-library dependencies are not supported in this platform."
6773
3470
            else
6774
 
              $ECHO "*** Warning: inter-library dependencies are not known to be supported."
 
3471
              $echo "*** Warning: inter-library dependencies are not known to be supported."
6775
3472
            fi
6776
 
            $ECHO "*** All declared inter-library dependencies are being dropped."
 
3473
            $echo "*** All declared inter-library dependencies are being dropped."
6777
3474
            droppeddeps=yes
6778
3475
          fi
6779
3476
          ;;
6786
3483
 
6787
3484
        case $host in
6788
3485
        *-*-rhapsody* | *-*-darwin1.[012])
6789
 
          # On Rhapsody replace the C library with the System framework
6790
 
          newdeplibs=`$ECHO "X $newdeplibs" | $Xsed -e 's/ -lc / System.ltframework /'`
 
3486
          # On Rhapsody replace the C library is the System framework
 
3487
          newdeplibs=`$echo "X $newdeplibs" | $Xsed -e 's/ -lc / -framework System /'`
6791
3488
          ;;
6792
3489
        esac
6793
3490
 
6794
3491
        if test "$droppeddeps" = yes; then
6795
3492
          if test "$module" = yes; then
6796
 
            $ECHO
6797
 
            $ECHO "*** Warning: libtool could not satisfy all declared inter-library"
6798
 
            $ECHO "*** dependencies of module $libname.  Therefore, libtool will create"
6799
 
            $ECHO "*** a static module, that should work as long as the dlopening"
6800
 
            $ECHO "*** application is linked with the -dlopen flag."
 
3493
            $echo
 
3494
            $echo "*** Warning: libtool could not satisfy all declared inter-library"
 
3495
            $echo "*** dependencies of module $libname.  Therefore, libtool will create"
 
3496
            $echo "*** a static module, that should work as long as the dlopening"
 
3497
            $echo "*** application is linked with the -dlopen flag."
6801
3498
            if test -z "$global_symbol_pipe"; then
6802
 
              $ECHO
6803
 
              $ECHO "*** However, this would only work if libtool was able to extract symbol"
6804
 
              $ECHO "*** lists from a program, using \`nm' or equivalent, but libtool could"
6805
 
              $ECHO "*** not find such a program.  So, this module is probably useless."
6806
 
              $ECHO "*** \`nm' from GNU binutils and a full rebuild may help."
 
3499
              $echo
 
3500
              $echo "*** However, this would only work if libtool was able to extract symbol"
 
3501
              $echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
 
3502
              $echo "*** not find such a program.  So, this module is probably useless."
 
3503
              $echo "*** \`nm' from GNU binutils and a full rebuild may help."
6807
3504
            fi
6808
3505
            if test "$build_old_libs" = no; then
6809
3506
              oldlibs="$output_objdir/$libname.$libext"
6813
3510
              build_libtool_libs=no
6814
3511
            fi
6815
3512
          else
6816
 
            $ECHO "*** The inter-library dependencies that have been dropped here will be"
6817
 
            $ECHO "*** automatically added whenever a program is linked with this library"
6818
 
            $ECHO "*** or is declared to -dlopen it."
 
3513
            $echo "*** The inter-library dependencies that have been dropped here will be"
 
3514
            $echo "*** automatically added whenever a program is linked with this library"
 
3515
            $echo "*** or is declared to -dlopen it."
6819
3516
 
6820
3517
            if test "$allow_undefined" = no; then
6821
 
              $ECHO
6822
 
              $ECHO "*** Since this library must not contain undefined symbols,"
6823
 
              $ECHO "*** because either the platform does not support them or"
6824
 
              $ECHO "*** it was explicitly requested with -no-undefined,"
6825
 
              $ECHO "*** libtool will only create a static version of it."
 
3518
              $echo
 
3519
              $echo "*** Since this library must not contain undefined symbols,"
 
3520
              $echo "*** because either the platform does not support them or"
 
3521
              $echo "*** it was explicitly requested with -no-undefined,"
 
3522
              $echo "*** libtool will only create a static version of it."
6826
3523
              if test "$build_old_libs" = no; then
6827
3524
                oldlibs="$output_objdir/$libname.$libext"
6828
3525
                build_libtool_libs=module
6836
3533
        # Done checking deplibs!
6837
3534
        deplibs=$newdeplibs
6838
3535
      fi
6839
 
      # Time to change all our "foo.ltframework" stuff back to "-framework foo"
6840
 
      case $host in
6841
 
        *-*-darwin*)
6842
 
          newdeplibs=`$ECHO "X $newdeplibs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'`
6843
 
          new_inherited_linker_flags=`$ECHO "X $new_inherited_linker_flags" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'`
6844
 
          deplibs=`$ECHO "X $deplibs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'`
6845
 
          ;;
6846
 
      esac
6847
 
 
6848
 
      # move library search paths that coincide with paths to not yet
6849
 
      # installed libraries to the beginning of the library search list
6850
 
      new_libs=
6851
 
      for path in $notinst_path; do
6852
 
        case " $new_libs " in
6853
 
        *" -L$path/$objdir "*) ;;
6854
 
        *)
6855
 
          case " $deplibs " in
6856
 
          *" -L$path/$objdir "*)
6857
 
            new_libs="$new_libs -L$path/$objdir" ;;
6858
 
          esac
6859
 
          ;;
6860
 
        esac
6861
 
      done
6862
 
      for deplib in $deplibs; do
6863
 
        case $deplib in
6864
 
        -L*)
6865
 
          case " $new_libs " in
6866
 
          *" $deplib "*) ;;
6867
 
          *) new_libs="$new_libs $deplib" ;;
6868
 
          esac
6869
 
          ;;
6870
 
        *) new_libs="$new_libs $deplib" ;;
6871
 
        esac
6872
 
      done
6873
 
      deplibs="$new_libs"
6874
3536
 
6875
3537
      # All the library-specific variables (install_libdir is set above).
6876
3538
      library_names=
6942
3604
        eval shared_ext=\"$shrext_cmds\"
6943
3605
        eval library_names=\"$library_names_spec\"
6944
3606
        set dummy $library_names
6945
 
        shift
6946
 
        realname="$1"
6947
 
        shift
 
3607
        realname="$2"
 
3608
        shift; shift
6948
3609
 
6949
3610
        if test -n "$soname_spec"; then
6950
3611
          eval soname=\"$soname_spec\"
6956
3617
        fi
6957
3618
 
6958
3619
        lib="$output_objdir/$realname"
6959
 
        linknames=
6960
3620
        for link
6961
3621
        do
6962
3622
          linknames="$linknames $link"
6963
3623
        done
6964
3624
 
6965
3625
        # Use standard objects if they are pic
6966
 
        test -z "$pic_flag" && libobjs=`$ECHO "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
6967
 
        test "X$libobjs" = "X " && libobjs=
6968
 
 
6969
 
        delfiles=
6970
 
        if test -n "$export_symbols" && test -n "$include_expsyms"; then
6971
 
          $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp"
6972
 
          export_symbols="$output_objdir/$libname.uexp"
6973
 
          delfiles="$delfiles $export_symbols"
6974
 
        fi
6975
 
 
6976
 
        orig_export_symbols=
6977
 
        case $host_os in
6978
 
        cygwin* | mingw* | cegcc*)
6979
 
          if test -n "$export_symbols" && test -z "$export_symbols_regex"; then
6980
 
            # exporting using user supplied symfile
6981
 
            if test "x`$SED 1q $export_symbols`" != xEXPORTS; then
6982
 
              # and it's NOT already a .def file. Must figure out
6983
 
              # which of the given symbols are data symbols and tag
6984
 
              # them as such. So, trigger use of export_symbols_cmds.
6985
 
              # export_symbols gets reassigned inside the "prepare
6986
 
              # the list of exported symbols" if statement, so the
6987
 
              # include_expsyms logic still works.
6988
 
              orig_export_symbols="$export_symbols"
6989
 
              export_symbols=
6990
 
              always_export_symbols=yes
6991
 
            fi
6992
 
          fi
6993
 
          ;;
6994
 
        esac
 
3626
        test -z "$pic_flag" && libobjs=`$echo "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
6995
3627
 
6996
3628
        # Prepare the list of exported symbols
6997
3629
        if test -z "$export_symbols"; then
6998
3630
          if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then
6999
 
            func_verbose "generating symbol list for \`$libname.la'"
 
3631
            $show "generating symbol list for \`$libname.la'"
7000
3632
            export_symbols="$output_objdir/$libname.exp"
7001
 
            $opt_dry_run || $RM $export_symbols
 
3633
            $run $rm $export_symbols
7002
3634
            cmds=$export_symbols_cmds
7003
3635
            save_ifs="$IFS"; IFS='~'
7004
3636
            for cmd in $cmds; do
7005
3637
              IFS="$save_ifs"
7006
3638
              eval cmd=\"$cmd\"
7007
 
              func_len " $cmd"
7008
 
              len=$func_len_result
7009
 
              if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then
7010
 
                func_show_eval "$cmd" 'exit $?'
7011
 
                skipped_export=false
 
3639
              if len=`expr "X$cmd" : ".*"` &&
 
3640
               test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then
 
3641
                $show "$cmd"
 
3642
                $run eval "$cmd" || exit $?
 
3643
                skipped_export=false
7012
3644
              else
7013
 
                # The command line is too long to execute in one step.
7014
 
                func_verbose "using reloadable object file for export list..."
7015
 
                skipped_export=:
7016
 
                # Break out early, otherwise skipped_export may be
7017
 
                # set to false by a later but shorter cmd.
7018
 
                break
 
3645
                # The command line is too long to execute in one step.
 
3646
                $show "using reloadable object file for export list..."
 
3647
                skipped_export=:
7019
3648
              fi
7020
3649
            done
7021
3650
            IFS="$save_ifs"
7022
 
            if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then
7023
 
              func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
7024
 
              func_show_eval '$MV "${export_symbols}T" "$export_symbols"'
 
3651
            if test -n "$export_symbols_regex"; then
 
3652
              $show "$EGREP -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\""
 
3653
              $run eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
 
3654
              $show "$mv \"${export_symbols}T\" \"$export_symbols\""
 
3655
              $run eval '$mv "${export_symbols}T" "$export_symbols"'
7025
3656
            fi
7026
3657
          fi
7027
3658
        fi
7028
3659
 
7029
3660
        if test -n "$export_symbols" && test -n "$include_expsyms"; then
7030
 
          tmp_export_symbols="$export_symbols"
7031
 
          test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols"
7032
 
          $opt_dry_run || eval '$ECHO "X$include_expsyms" | $Xsed | $SP2NL >> "$tmp_export_symbols"'
7033
 
        fi
7034
 
 
7035
 
        if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then
7036
 
          # The given exports_symbols file has to be filtered, so filter it.
7037
 
          func_verbose "filter symbol list for \`$libname.la' to tag DATA exports"
7038
 
          # FIXME: $output_objdir/$libname.filter potentially contains lots of
7039
 
          # 's' commands which not all seds can handle. GNU sed should be fine
7040
 
          # though. Also, the filter scales superlinearly with the number of
7041
 
          # global variables. join(1) would be nice here, but unfortunately
7042
 
          # isn't a blessed tool.
7043
 
          $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter
7044
 
          delfiles="$delfiles $export_symbols $output_objdir/$libname.filter"
7045
 
          export_symbols=$output_objdir/$libname.def
7046
 
          $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols
 
3661
          $run eval '$echo "X$include_expsyms" | $SP2NL >> "$export_symbols"'
7047
3662
        fi
7048
3663
 
7049
3664
        tmp_deplibs=
7050
3665
        for test_deplib in $deplibs; do
7051
 
          case " $convenience " in
7052
 
          *" $test_deplib "*) ;;
7053
 
          *)
7054
 
            tmp_deplibs="$tmp_deplibs $test_deplib"
7055
 
            ;;
7056
 
          esac
 
3666
                case " $convenience " in
 
3667
                *" $test_deplib "*) ;;
 
3668
                *)
 
3669
                        tmp_deplibs="$tmp_deplibs $test_deplib"
 
3670
                        ;;
 
3671
                esac
7057
3672
        done
7058
3673
        deplibs="$tmp_deplibs"
7059
3674
 
7060
3675
        if test -n "$convenience"; then
7061
 
          if test -n "$whole_archive_flag_spec" &&
7062
 
            test "$compiler_needs_object" = yes &&
7063
 
            test -z "$libobjs"; then
7064
 
            # extract the archives, so we have objects to list.
7065
 
            # TODO: could optimize this to just extract one archive.
7066
 
            whole_archive_flag_spec=
7067
 
          fi
7068
3676
          if test -n "$whole_archive_flag_spec"; then
7069
3677
            save_libobjs=$libobjs
7070
3678
            eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
7071
 
            test "X$libobjs" = "X " && libobjs=
7072
3679
          else
7073
3680
            gentop="$output_objdir/${outputname}x"
 
3681
            $show "${rm}r $gentop"
 
3682
            $run ${rm}r "$gentop"
 
3683
            $show "$mkdir $gentop"
 
3684
            $run $mkdir "$gentop"
 
3685
            status=$?
 
3686
            if test "$status" -ne 0 && test ! -d "$gentop"; then
 
3687
              exit $status
 
3688
            fi
7074
3689
            generated="$generated $gentop"
7075
3690
 
7076
 
            func_extract_archives $gentop $convenience
7077
 
            libobjs="$libobjs $func_extract_archives_result"
7078
 
            test "X$libobjs" = "X " && libobjs=
 
3691
            for xlib in $convenience; do
 
3692
              # Extract the objects.
 
3693
              case $xlib in
 
3694
              [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;;
 
3695
              *) xabs=`pwd`"/$xlib" ;;
 
3696
              esac
 
3697
              xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
 
3698
              xdir="$gentop/$xlib"
 
3699
 
 
3700
              $show "${rm}r $xdir"
 
3701
              $run ${rm}r "$xdir"
 
3702
              $show "$mkdir $xdir"
 
3703
              $run $mkdir "$xdir"
 
3704
              status=$?
 
3705
              if test "$status" -ne 0 && test ! -d "$xdir"; then
 
3706
                exit $status
 
3707
              fi
 
3708
              # We will extract separately just the conflicting names and we will no
 
3709
              # longer touch any unique names. It is faster to leave these extract
 
3710
              # automatically by $AR in one run.
 
3711
              $show "(cd $xdir && $AR x $xabs)"
 
3712
              $run eval "(cd \$xdir && $AR x \$xabs)" || exit $?
 
3713
              if ($AR t "$xabs" | sort | sort -uc >/dev/null 2>&1); then
 
3714
                :
 
3715
              else
 
3716
                $echo "$modename: warning: object name conflicts; renaming object files" 1>&2
 
3717
                $echo "$modename: warning: to ensure that they will not overwrite" 1>&2
 
3718
                $AR t "$xabs" | sort | uniq -cd | while read -r count name
 
3719
                do
 
3720
                  i=1
 
3721
                  while test "$i" -le "$count"
 
3722
                  do
 
3723
                   # Put our $i before any first dot (extension)
 
3724
                   # Never overwrite any file
 
3725
                   name_to="$name"
 
3726
                   while test "X$name_to" = "X$name" || test -f "$xdir/$name_to"
 
3727
                   do
 
3728
                     name_to=`$echo "X$name_to" | $Xsed -e "s/\([^.]*\)/\1-$i/"`
 
3729
                   done
 
3730
                   $show "(cd $xdir && $AR xN $i $xabs '$name' && $mv '$name' '$name_to')"
 
3731
                   $run eval "(cd \$xdir && $AR xN $i \$xabs '$name' && $mv '$name' '$name_to')" || exit $?
 
3732
                   i=`expr $i + 1`
 
3733
                  done
 
3734
                done
 
3735
              fi
 
3736
 
 
3737
              libobjs="$libobjs "`find $xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP`
 
3738
            done
7079
3739
          fi
7080
3740
        fi
7081
3741
 
7086
3746
 
7087
3747
        # Make a backup of the uninstalled library when relinking
7088
3748
        if test "$mode" = relink; then
7089
 
          $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $?
 
3749
          $run eval '(cd $output_objdir && $rm ${realname}U && $mv $realname ${realname}U)' || exit $?
7090
3750
        fi
7091
3751
 
7092
3752
        # Do each of the archive commands.
7099
3759
            cmds=$module_cmds
7100
3760
          fi
7101
3761
        else
7102
 
          if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
7103
 
            eval test_cmds=\"$archive_expsym_cmds\"
7104
 
            cmds=$archive_expsym_cmds
7105
 
          else
7106
 
            eval test_cmds=\"$archive_cmds\"
7107
 
            cmds=$archive_cmds
 
3762
        if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
 
3763
          eval test_cmds=\"$archive_expsym_cmds\"
 
3764
          cmds=$archive_expsym_cmds
 
3765
        else
 
3766
          eval test_cmds=\"$archive_cmds\"
 
3767
          cmds=$archive_cmds
7108
3768
          fi
7109
3769
        fi
7110
3770
 
7111
 
        if test "X$skipped_export" != "X:" &&
7112
 
           func_len " $test_cmds" &&
7113
 
           len=$func_len_result &&
7114
 
           test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then
 
3771
        if test "X$skipped_export" != "X:" && len=`expr "X$test_cmds" : ".*"` &&
 
3772
           test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then
7115
3773
          :
7116
3774
        else
7117
 
          # The command line is too long to link in one step, link piecewise
7118
 
          # or, if using GNU ld and skipped_export is not :, use a linker
7119
 
          # script.
 
3775
          # The command line is too long to link in one step, link piecewise.
 
3776
          $echo "creating reloadable object files..."
7120
3777
 
7121
3778
          # Save the value of $output and $libobjs because we want to
7122
3779
          # use them later.  If we have whole_archive_flag_spec, we
7130
3787
            save_libobjs=$libobjs
7131
3788
          fi
7132
3789
          save_output=$output
7133
 
          output_la=`$ECHO "X$output" | $Xsed -e "$basename"`
7134
3790
 
7135
3791
          # Clear the reloadable object creation command queue and
7136
3792
          # initialize k to one.
7137
3793
          test_cmds=
7138
3794
          concat_cmds=
7139
3795
          objlist=
 
3796
          delfiles=
7140
3797
          last_robj=
7141
3798
          k=1
7142
 
 
7143
 
          if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then
7144
 
            output=${output_objdir}/${output_la}.lnkscript
7145
 
            func_verbose "creating GNU ld script: $output"
7146
 
            $ECHO 'INPUT (' > $output
7147
 
            for obj in $save_libobjs
7148
 
            do
7149
 
              $ECHO "$obj" >> $output
7150
 
            done
7151
 
            $ECHO ')' >> $output
7152
 
            delfiles="$delfiles $output"
7153
 
          elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then
7154
 
            output=${output_objdir}/${output_la}.lnk
7155
 
            func_verbose "creating linker input file list: $output"
7156
 
            : > $output
7157
 
            set x $save_libobjs
7158
 
            shift
7159
 
            firstobj=
7160
 
            if test "$compiler_needs_object" = yes; then
7161
 
              firstobj="$1 "
7162
 
              shift
7163
 
            fi
7164
 
            for obj
7165
 
            do
7166
 
              $ECHO "$obj" >> $output
7167
 
            done
7168
 
            delfiles="$delfiles $output"
7169
 
            output=$firstobj\"$file_list_spec$output\"
7170
 
          else
7171
 
            if test -n "$save_libobjs"; then
7172
 
              func_verbose "creating reloadable object files..."
7173
 
              output=$output_objdir/$output_la-${k}.$objext
7174
 
              eval test_cmds=\"$reload_cmds\"
7175
 
              func_len " $test_cmds"
7176
 
              len0=$func_len_result
7177
 
              len=$len0
7178
 
 
7179
 
              # Loop over the list of objects to be linked.
7180
 
              for obj in $save_libobjs
7181
 
              do
7182
 
                func_len " $obj"
7183
 
                func_arith $len + $func_len_result
7184
 
                len=$func_arith_result
7185
 
                if test "X$objlist" = X ||
7186
 
                   test "$len" -lt "$max_cmd_len"; then
7187
 
                  func_append objlist " $obj"
7188
 
                else
7189
 
                  # The command $test_cmds is almost too long, add a
7190
 
                  # command to the queue.
7191
 
                  if test "$k" -eq 1 ; then
7192
 
                    # The first file doesn't have a previous command to add.
7193
 
                    eval concat_cmds=\"$reload_cmds $objlist $last_robj\"
7194
 
                  else
7195
 
                    # All subsequent reloadable object files will link in
7196
 
                    # the last one created.
7197
 
                    eval concat_cmds=\"\$concat_cmds~$reload_cmds $objlist $last_robj~\$RM $last_robj\"
7198
 
                  fi
7199
 
                  last_robj=$output_objdir/$output_la-${k}.$objext
7200
 
                  func_arith $k + 1
7201
 
                  k=$func_arith_result
7202
 
                  output=$output_objdir/$output_la-${k}.$objext
7203
 
                  objlist=$obj
7204
 
                  func_len " $last_robj"
7205
 
                  func_arith $len0 + $func_len_result
7206
 
                  len=$func_arith_result
7207
 
                fi
7208
 
              done
7209
 
              # Handle the remaining objects by creating one last
7210
 
              # reloadable object file.  All subsequent reloadable object
7211
 
              # files will link in the last one created.
7212
 
              test -z "$concat_cmds" || concat_cmds=$concat_cmds~
7213
 
              eval concat_cmds=\"\${concat_cmds}$reload_cmds $objlist $last_robj\"
7214
 
              if test -n "$last_robj"; then
7215
 
                eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\"
7216
 
              fi
7217
 
              delfiles="$delfiles $output"
7218
 
 
 
3799
          output=$output_objdir/$save_output-${k}.$objext
 
3800
          # Loop over the list of objects to be linked.
 
3801
          for obj in $save_libobjs
 
3802
          do
 
3803
            eval test_cmds=\"$reload_cmds $objlist $last_robj\"
 
3804
            if test "X$objlist" = X ||
 
3805
               { len=`expr "X$test_cmds" : ".*"` &&
 
3806
                 test "$len" -le "$max_cmd_len"; }; then
 
3807
              objlist="$objlist $obj"
7219
3808
            else
7220
 
              output=
7221
 
            fi
7222
 
 
7223
 
            if ${skipped_export-false}; then
7224
 
              func_verbose "generating symbol list for \`$libname.la'"
7225
 
              export_symbols="$output_objdir/$libname.exp"
7226
 
              $opt_dry_run || $RM $export_symbols
7227
 
              libobjs=$output
7228
 
              # Append the command to create the export file.
7229
 
              test -z "$concat_cmds" || concat_cmds=$concat_cmds~
7230
 
              eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\"
7231
 
              if test -n "$last_robj"; then
7232
 
                eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\"
 
3809
              # The command $test_cmds is almost too long, add a
 
3810
              # command to the queue.
 
3811
              if test "$k" -eq 1 ; then
 
3812
                # The first file doesn't have a previous command to add.
 
3813
                eval concat_cmds=\"$reload_cmds $objlist $last_robj\"
 
3814
              else
 
3815
                # All subsequent reloadable object files will link in
 
3816
                # the last one created.
 
3817
                eval concat_cmds=\"\$concat_cmds~$reload_cmds $objlist $last_robj\"
7233
3818
              fi
 
3819
              last_robj=$output_objdir/$save_output-${k}.$objext
 
3820
              k=`expr $k + 1`
 
3821
              output=$output_objdir/$save_output-${k}.$objext
 
3822
              objlist=$obj
 
3823
              len=1
7234
3824
            fi
7235
 
 
7236
 
            test -n "$save_libobjs" &&
7237
 
              func_verbose "creating a temporary reloadable object file: $output"
7238
 
 
7239
 
            # Loop through the commands generated above and execute them.
7240
 
            save_ifs="$IFS"; IFS='~'
7241
 
            for cmd in $concat_cmds; do
7242
 
              IFS="$save_ifs"
7243
 
              $opt_silent || {
7244
 
                  func_quote_for_expand "$cmd"
7245
 
                  eval "func_echo $func_quote_for_expand_result"
7246
 
              }
7247
 
              $opt_dry_run || eval "$cmd" || {
7248
 
                lt_exit=$?
7249
 
 
7250
 
                # Restore the uninstalled library and exit
7251
 
                if test "$mode" = relink; then
7252
 
                  ( cd "$output_objdir" && \
7253
 
                    $RM "${realname}T" && \
7254
 
                    $MV "${realname}U" "$realname" )
7255
 
                fi
7256
 
 
7257
 
                exit $lt_exit
7258
 
              }
7259
 
            done
 
3825
          done
 
3826
          # Handle the remaining objects by creating one last
 
3827
          # reloadable object file.  All subsequent reloadable object
 
3828
          # files will link in the last one created.
 
3829
          test -z "$concat_cmds" || concat_cmds=$concat_cmds~
 
3830
          eval concat_cmds=\"\${concat_cmds}$reload_cmds $objlist $last_robj\"
 
3831
 
 
3832
          if ${skipped_export-false}; then
 
3833
            $show "generating symbol list for \`$libname.la'"
 
3834
            export_symbols="$output_objdir/$libname.exp"
 
3835
            $run $rm $export_symbols
 
3836
            libobjs=$output
 
3837
            # Append the command to create the export file.
 
3838
            eval concat_cmds=\"\$concat_cmds~$export_symbols_cmds\"
 
3839
          fi
 
3840
 
 
3841
          # Set up a command to remove the reloadale object files
 
3842
          # after they are used.
 
3843
          i=0
 
3844
          while test "$i" -lt "$k"
 
3845
          do
 
3846
            i=`expr $i + 1`
 
3847
            delfiles="$delfiles $output_objdir/$save_output-${i}.$objext"
 
3848
          done
 
3849
 
 
3850
          $echo "creating a temporary reloadable object file: $output"
 
3851
 
 
3852
          # Loop through the commands generated above and execute them.
 
3853
          save_ifs="$IFS"; IFS='~'
 
3854
          for cmd in $concat_cmds; do
7260
3855
            IFS="$save_ifs"
7261
 
 
7262
 
            if test -n "$export_symbols_regex" && ${skipped_export-false}; then
7263
 
              func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
7264
 
              func_show_eval '$MV "${export_symbols}T" "$export_symbols"'
7265
 
            fi
7266
 
          fi
7267
 
 
7268
 
          if ${skipped_export-false}; then
7269
 
            if test -n "$export_symbols" && test -n "$include_expsyms"; then
7270
 
              tmp_export_symbols="$export_symbols"
7271
 
              test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols"
7272
 
              $opt_dry_run || eval '$ECHO "X$include_expsyms" | $Xsed | $SP2NL >> "$tmp_export_symbols"'
7273
 
            fi
7274
 
 
7275
 
            if test -n "$orig_export_symbols"; then
7276
 
              # The given exports_symbols file has to be filtered, so filter it.
7277
 
              func_verbose "filter symbol list for \`$libname.la' to tag DATA exports"
7278
 
              # FIXME: $output_objdir/$libname.filter potentially contains lots of
7279
 
              # 's' commands which not all seds can handle. GNU sed should be fine
7280
 
              # though. Also, the filter scales superlinearly with the number of
7281
 
              # global variables. join(1) would be nice here, but unfortunately
7282
 
              # isn't a blessed tool.
7283
 
              $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter
7284
 
              delfiles="$delfiles $export_symbols $output_objdir/$libname.filter"
7285
 
              export_symbols=$output_objdir/$libname.def
7286
 
              $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols
7287
 
            fi
7288
 
          fi
 
3856
            $show "$cmd"
 
3857
            $run eval "$cmd" || exit $?
 
3858
          done
 
3859
          IFS="$save_ifs"
7289
3860
 
7290
3861
          libobjs=$output
7291
3862
          # Restore the value of output.
7293
3864
 
7294
3865
          if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then
7295
3866
            eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
7296
 
            test "X$libobjs" = "X " && libobjs=
7297
3867
          fi
7298
3868
          # Expand the library linking commands again to reset the
7299
3869
          # value of $libobjs for piecewise linking.
7306
3876
              cmds=$module_cmds
7307
3877
            fi
7308
3878
          else
7309
 
            if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
7310
 
              cmds=$archive_expsym_cmds
7311
 
            else
7312
 
              cmds=$archive_cmds
 
3879
          if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
 
3880
            cmds=$archive_expsym_cmds
 
3881
          else
 
3882
            cmds=$archive_cmds
7313
3883
            fi
7314
3884
          fi
7315
 
        fi
7316
 
 
7317
 
        if test -n "$delfiles"; then
7318
 
          # Append the command to remove temporary files to $cmds.
7319
 
          eval cmds=\"\$cmds~\$RM $delfiles\"
7320
 
        fi
7321
 
 
7322
 
        # Add any objects from preloaded convenience libraries
7323
 
        if test -n "$dlprefiles"; then
7324
 
          gentop="$output_objdir/${outputname}x"
7325
 
          generated="$generated $gentop"
7326
 
 
7327
 
          func_extract_archives $gentop $dlprefiles
7328
 
          libobjs="$libobjs $func_extract_archives_result"
7329
 
          test "X$libobjs" = "X " && libobjs=
7330
 
        fi
7331
 
 
 
3885
 
 
3886
          # Append the command to remove the reloadable object files
 
3887
          # to the just-reset $cmds.
 
3888
          eval cmds=\"\$cmds~\$rm $delfiles\"
 
3889
        fi
7332
3890
        save_ifs="$IFS"; IFS='~'
7333
3891
        for cmd in $cmds; do
7334
3892
          IFS="$save_ifs"
7335
3893
          eval cmd=\"$cmd\"
7336
 
          $opt_silent || {
7337
 
            func_quote_for_expand "$cmd"
7338
 
            eval "func_echo $func_quote_for_expand_result"
7339
 
          }
7340
 
          $opt_dry_run || eval "$cmd" || {
7341
 
            lt_exit=$?
7342
 
 
7343
 
            # Restore the uninstalled library and exit
7344
 
            if test "$mode" = relink; then
7345
 
              ( cd "$output_objdir" && \
7346
 
                $RM "${realname}T" && \
7347
 
                $MV "${realname}U" "$realname" )
7348
 
            fi
7349
 
 
7350
 
            exit $lt_exit
7351
 
          }
 
3894
          $show "$cmd"
 
3895
          $run eval "$cmd" || exit $?
7352
3896
        done
7353
3897
        IFS="$save_ifs"
7354
3898
 
7355
3899
        # Restore the uninstalled library and exit
7356
3900
        if test "$mode" = relink; then
7357
 
          $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $?
7358
 
 
7359
 
          if test -n "$convenience"; then
7360
 
            if test -z "$whole_archive_flag_spec"; then
7361
 
              func_show_eval '${RM}r "$gentop"'
7362
 
            fi
7363
 
          fi
7364
 
 
 
3901
          $run eval '(cd $output_objdir && $rm ${realname}T && $mv $realname ${realname}T && $mv "$realname"U $realname)' || exit $?
7365
3902
          exit $EXIT_SUCCESS
7366
3903
        fi
7367
3904
 
7368
3905
        # Create links to the real library.
7369
3906
        for linkname in $linknames; do
7370
3907
          if test "$realname" != "$linkname"; then
7371
 
            func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?'
 
3908
            $show "(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)"
 
3909
            $run eval '(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)' || exit $?
7372
3910
          fi
7373
3911
        done
7374
3912
 
7381
3919
      ;;
7382
3920
 
7383
3921
    obj)
 
3922
      if test -n "$deplibs"; then
 
3923
        $echo "$modename: warning: \`-l' and \`-L' are ignored for objects" 1>&2
 
3924
      fi
 
3925
 
7384
3926
      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
7385
 
        func_warning "\`-dlopen' is ignored for objects"
7386
 
      fi
7387
 
 
7388
 
      case " $deplibs" in
7389
 
      *\ -l* | *\ -L*)
7390
 
        func_warning "\`-l' and \`-L' are ignored for objects" ;;
7391
 
      esac
7392
 
 
7393
 
      test -n "$rpath" && \
7394
 
        func_warning "\`-rpath' is ignored for objects"
7395
 
 
7396
 
      test -n "$xrpath" && \
7397
 
        func_warning "\`-R' is ignored for objects"
7398
 
 
7399
 
      test -n "$vinfo" && \
7400
 
        func_warning "\`-version-info' is ignored for objects"
7401
 
 
7402
 
      test -n "$release" && \
7403
 
        func_warning "\`-release' is ignored for objects"
 
3927
        $echo "$modename: warning: \`-dlopen' is ignored for objects" 1>&2
 
3928
      fi
 
3929
 
 
3930
      if test -n "$rpath"; then
 
3931
        $echo "$modename: warning: \`-rpath' is ignored for objects" 1>&2
 
3932
      fi
 
3933
 
 
3934
      if test -n "$xrpath"; then
 
3935
        $echo "$modename: warning: \`-R' is ignored for objects" 1>&2
 
3936
      fi
 
3937
 
 
3938
      if test -n "$vinfo"; then
 
3939
        $echo "$modename: warning: \`-version-info' is ignored for objects" 1>&2
 
3940
      fi
 
3941
 
 
3942
      if test -n "$release"; then
 
3943
        $echo "$modename: warning: \`-release' is ignored for objects" 1>&2
 
3944
      fi
7404
3945
 
7405
3946
      case $output in
7406
3947
      *.lo)
7407
 
        test -n "$objs$old_deplibs" && \
7408
 
          func_fatal_error "cannot build library object \`$output' from non-libtool objects"
7409
 
 
7410
 
        libobj=$output
7411
 
        func_lo2o "$libobj"
7412
 
        obj=$func_lo2o_result
 
3948
        if test -n "$objs$old_deplibs"; then
 
3949
          $echo "$modename: cannot build library object \`$output' from non-libtool objects" 1>&2
 
3950
          exit $EXIT_FAILURE
 
3951
        fi
 
3952
        libobj="$output"
 
3953
        obj=`$echo "X$output" | $Xsed -e "$lo2o"`
7413
3954
        ;;
7414
3955
      *)
7415
3956
        libobj=
7418
3959
      esac
7419
3960
 
7420
3961
      # Delete the old objects.
7421
 
      $opt_dry_run || $RM $obj $libobj
 
3962
      $run $rm $obj $libobj
7422
3963
 
7423
3964
      # Objects from convenience libraries.  This assumes
7424
3965
      # single-version convenience libraries.  Whenever we create
7427
3968
      reload_conv_objs=
7428
3969
      gentop=
7429
3970
      # reload_cmds runs $LD directly, so let us get rid of
7430
 
      # -Wl from whole_archive_flag_spec and hope we can get by with
7431
 
      # turning comma into space..
 
3971
      # -Wl from whole_archive_flag_spec
7432
3972
      wl=
7433
3973
 
7434
3974
      if test -n "$convenience"; then
7435
3975
        if test -n "$whole_archive_flag_spec"; then
7436
 
          eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\"
7437
 
          reload_conv_objs=$reload_objs\ `$ECHO "X$tmp_whole_archive_flags" | $Xsed -e 's|,| |g'`
 
3976
          eval reload_conv_objs=\"\$reload_objs $whole_archive_flag_spec\"
7438
3977
        else
7439
3978
          gentop="$output_objdir/${obj}x"
 
3979
          $show "${rm}r $gentop"
 
3980
          $run ${rm}r "$gentop"
 
3981
          $show "$mkdir $gentop"
 
3982
          $run $mkdir "$gentop"
 
3983
          status=$?
 
3984
          if test "$status" -ne 0 && test ! -d "$gentop"; then
 
3985
            exit $status
 
3986
          fi
7440
3987
          generated="$generated $gentop"
7441
3988
 
7442
 
          func_extract_archives $gentop $convenience
7443
 
          reload_conv_objs="$reload_objs $func_extract_archives_result"
 
3989
          for xlib in $convenience; do
 
3990
            # Extract the objects.
 
3991
            case $xlib in
 
3992
            [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;;
 
3993
            *) xabs=`pwd`"/$xlib" ;;
 
3994
            esac
 
3995
            xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
 
3996
            xdir="$gentop/$xlib"
 
3997
 
 
3998
            $show "${rm}r $xdir"
 
3999
            $run ${rm}r "$xdir"
 
4000
            $show "$mkdir $xdir"
 
4001
            $run $mkdir "$xdir"
 
4002
            status=$?
 
4003
            if test "$status" -ne 0 && test ! -d "$xdir"; then
 
4004
              exit $status
 
4005
            fi
 
4006
            # We will extract separately just the conflicting names and we will no
 
4007
            # longer touch any unique names. It is faster to leave these extract
 
4008
            # automatically by $AR in one run.
 
4009
            $show "(cd $xdir && $AR x $xabs)"
 
4010
            $run eval "(cd \$xdir && $AR x \$xabs)" || exit $?
 
4011
            if ($AR t "$xabs" | sort | sort -uc >/dev/null 2>&1); then
 
4012
              :
 
4013
            else
 
4014
              $echo "$modename: warning: object name conflicts; renaming object files" 1>&2
 
4015
              $echo "$modename: warning: to ensure that they will not overwrite" 1>&2
 
4016
              $AR t "$xabs" | sort | uniq -cd | while read -r count name
 
4017
              do
 
4018
                i=1
 
4019
                while test "$i" -le "$count"
 
4020
                do
 
4021
                 # Put our $i before any first dot (extension)
 
4022
                 # Never overwrite any file
 
4023
                 name_to="$name"
 
4024
                 while test "X$name_to" = "X$name" || test -f "$xdir/$name_to"
 
4025
                 do
 
4026
                   name_to=`$echo "X$name_to" | $Xsed -e "s/\([^.]*\)/\1-$i/"`
 
4027
                 done
 
4028
                 $show "(cd $xdir && $AR xN $i $xabs '$name' && $mv '$name' '$name_to')"
 
4029
                 $run eval "(cd \$xdir && $AR xN $i \$xabs '$name' && $mv '$name' '$name_to')" || exit $?
 
4030
                 i=`expr $i + 1`
 
4031
                done
 
4032
              done
 
4033
            fi
 
4034
 
 
4035
            reload_conv_objs="$reload_objs "`find $xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP`
 
4036
          done
7444
4037
        fi
7445
4038
      fi
7446
4039
 
7447
4040
      # Create the old-style object.
7448
 
      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
 
4041
      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
7449
4042
 
7450
4043
      output="$obj"
7451
 
      func_execute_cmds "$reload_cmds" 'exit $?'
 
4044
      cmds=$reload_cmds
 
4045
      save_ifs="$IFS"; IFS='~'
 
4046
      for cmd in $cmds; do
 
4047
        IFS="$save_ifs"
 
4048
        eval cmd=\"$cmd\"
 
4049
        $show "$cmd"
 
4050
        $run eval "$cmd" || exit $?
 
4051
      done
 
4052
      IFS="$save_ifs"
7452
4053
 
7453
4054
      # Exit if we aren't doing a library object file.
7454
4055
      if test -z "$libobj"; then
7455
4056
        if test -n "$gentop"; then
7456
 
          func_show_eval '${RM}r "$gentop"'
 
4057
          $show "${rm}r $gentop"
 
4058
          $run ${rm}r $gentop
7457
4059
        fi
7458
4060
 
7459
4061
        exit $EXIT_SUCCESS
7461
4063
 
7462
4064
      if test "$build_libtool_libs" != yes; then
7463
4065
        if test -n "$gentop"; then
7464
 
          func_show_eval '${RM}r "$gentop"'
 
4066
          $show "${rm}r $gentop"
 
4067
          $run ${rm}r $gentop
7465
4068
        fi
7466
4069
 
7467
4070
        # Create an invalid libtool object if no PIC, so that we don't
7468
4071
        # accidentally link it into a program.
7469
4072
        # $show "echo timestamp > $libobj"
7470
 
        # $opt_dry_run || eval "echo timestamp > $libobj" || exit $?
 
4073
        # $run eval "echo timestamp > $libobj" || exit $?
7471
4074
        exit $EXIT_SUCCESS
7472
4075
      fi
7473
4076
 
7475
4078
        # Only do commands if we really have different PIC objects.
7476
4079
        reload_objs="$libobjs $reload_conv_objs"
7477
4080
        output="$libobj"
7478
 
        func_execute_cmds "$reload_cmds" 'exit $?'
 
4081
        cmds=$reload_cmds
 
4082
        save_ifs="$IFS"; IFS='~'
 
4083
        for cmd in $cmds; do
 
4084
          IFS="$save_ifs"
 
4085
          eval cmd=\"$cmd\"
 
4086
          $show "$cmd"
 
4087
          $run eval "$cmd" || exit $?
 
4088
        done
 
4089
        IFS="$save_ifs"
7479
4090
      fi
7480
4091
 
7481
4092
      if test -n "$gentop"; then
7482
 
        func_show_eval '${RM}r "$gentop"'
 
4093
        $show "${rm}r $gentop"
 
4094
        $run ${rm}r $gentop
7483
4095
      fi
7484
4096
 
7485
4097
      exit $EXIT_SUCCESS
7487
4099
 
7488
4100
    prog)
7489
4101
      case $host in
7490
 
        *cygwin*) func_stripname '' '.exe' "$output"
7491
 
                  output=$func_stripname_result.exe;;
 
4102
        *cygwin*) output=`$echo $output | ${SED} -e 's,.exe$,,;s,$,.exe,'` ;;
7492
4103
      esac
7493
 
      test -n "$vinfo" && \
7494
 
        func_warning "\`-version-info' is ignored for programs"
7495
 
 
7496
 
      test -n "$release" && \
7497
 
        func_warning "\`-release' is ignored for programs"
7498
 
 
7499
 
      test "$preload" = yes \
7500
 
        && test "$dlopen_support" = unknown \
7501
 
        && test "$dlopen_self" = unknown \
7502
 
        && test "$dlopen_self_static" = unknown && \
7503
 
          func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support."
 
4104
      if test -n "$vinfo"; then
 
4105
        $echo "$modename: warning: \`-version-info' is ignored for programs" 1>&2
 
4106
      fi
 
4107
 
 
4108
      if test -n "$release"; then
 
4109
        $echo "$modename: warning: \`-release' is ignored for programs" 1>&2
 
4110
      fi
 
4111
 
 
4112
      if test "$preload" = yes; then
 
4113
        if test "$dlopen_support" = unknown && test "$dlopen_self" = unknown &&
 
4114
           test "$dlopen_self_static" = unknown; then
 
4115
          $echo "$modename: warning: \`AC_LIBTOOL_DLOPEN' not used. Assuming no dlopen support."
 
4116
        fi
 
4117
      fi
7504
4118
 
7505
4119
      case $host in
7506
4120
      *-*-rhapsody* | *-*-darwin1.[012])
7507
4121
        # On Rhapsody replace the C library is the System framework
7508
 
        compile_deplibs=`$ECHO "X $compile_deplibs" | $Xsed -e 's/ -lc / System.ltframework /'`
7509
 
        finalize_deplibs=`$ECHO "X $finalize_deplibs" | $Xsed -e 's/ -lc / System.ltframework /'`
 
4122
        compile_deplibs=`$echo "X $compile_deplibs" | $Xsed -e 's/ -lc / -framework System /'`
 
4123
        finalize_deplibs=`$echo "X $finalize_deplibs" | $Xsed -e 's/ -lc / -framework System /'`
7510
4124
        ;;
7511
4125
      esac
7512
4126
 
7513
4127
      case $host in
7514
 
      *-*-darwin*)
7515
 
        # Don't allow lazy linking, it breaks C++ global constructors
7516
 
        # But is supposedly fixed on 10.4 or later (yay!).
7517
 
        if test "$tagname" = CXX ; then
7518
 
          case ${MACOSX_DEPLOYMENT_TARGET-10.0} in
7519
 
            10.[0123])
7520
 
              compile_command="$compile_command ${wl}-bind_at_load"
7521
 
              finalize_command="$finalize_command ${wl}-bind_at_load"
7522
 
            ;;
7523
 
          esac
7524
 
        fi
7525
 
        # Time to change all our "foo.ltframework" stuff back to "-framework foo"
7526
 
        compile_deplibs=`$ECHO "X $compile_deplibs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'`
7527
 
        finalize_deplibs=`$ECHO "X $finalize_deplibs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'`
7528
 
        ;;
 
4128
      *darwin*)
 
4129
        # Don't allow lazy linking, it breaks C++ global constructors
 
4130
        if test "$tagname" = CXX ; then
 
4131
        compile_command="$compile_command ${wl}-bind_at_load"
 
4132
        finalize_command="$finalize_command ${wl}-bind_at_load"
 
4133
        fi
 
4134
        ;;
7529
4135
      esac
7530
4136
 
7531
 
 
7532
 
      # move library search paths that coincide with paths to not yet
7533
 
      # installed libraries to the beginning of the library search list
7534
 
      new_libs=
7535
 
      for path in $notinst_path; do
7536
 
        case " $new_libs " in
7537
 
        *" -L$path/$objdir "*) ;;
7538
 
        *)
7539
 
          case " $compile_deplibs " in
7540
 
          *" -L$path/$objdir "*)
7541
 
            new_libs="$new_libs -L$path/$objdir" ;;
7542
 
          esac
7543
 
          ;;
7544
 
        esac
7545
 
      done
7546
 
      for deplib in $compile_deplibs; do
7547
 
        case $deplib in
7548
 
        -L*)
7549
 
          case " $new_libs " in
7550
 
          *" $deplib "*) ;;
7551
 
          *) new_libs="$new_libs $deplib" ;;
7552
 
          esac
7553
 
          ;;
7554
 
        *) new_libs="$new_libs $deplib" ;;
7555
 
        esac
7556
 
      done
7557
 
      compile_deplibs="$new_libs"
7558
 
 
7559
 
 
7560
4137
      compile_command="$compile_command $compile_deplibs"
7561
4138
      finalize_command="$finalize_command $finalize_deplibs"
7562
4139
 
7600
4177
          esac
7601
4178
        fi
7602
4179
        case $host in
7603
 
        *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
7604
 
          testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'`
 
4180
        *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
7605
4181
          case :$dllsearchpath: in
7606
4182
          *":$libdir:"*) ;;
7607
 
          ::) dllsearchpath=$libdir;;
7608
4183
          *) dllsearchpath="$dllsearchpath:$libdir";;
7609
4184
          esac
7610
 
          case :$dllsearchpath: in
7611
 
          *":$testbindir:"*) ;;
7612
 
          ::) dllsearchpath=$testbindir;;
7613
 
          *) dllsearchpath="$dllsearchpath:$testbindir";;
7614
 
          esac
7615
4185
          ;;
7616
4186
        esac
7617
4187
      done
7661
4231
 
7662
4232
      if test -n "$libobjs" && test "$build_old_libs" = yes; then
7663
4233
        # Transform all the library objects into standard objects.
7664
 
        compile_command=`$ECHO "X$compile_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
7665
 
        finalize_command=`$ECHO "X$finalize_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
7666
 
      fi
7667
 
 
7668
 
      func_generate_dlsyms "$outputname" "@PROGRAM@" "no"
7669
 
 
7670
 
      # template prelinking step
7671
 
      if test -n "$prelink_cmds"; then
7672
 
        func_execute_cmds "$prelink_cmds" 'exit $?'
7673
 
      fi
7674
 
 
7675
 
      wrappers_required=yes
7676
 
      case $host in
7677
 
      *cygwin* | *mingw* )
7678
 
        if test "$build_libtool_libs" != yes; then
7679
 
          wrappers_required=no
7680
 
        fi
7681
 
        ;;
7682
 
      *cegcc)
7683
 
        # Disable wrappers for cegcc, we are cross compiling anyway.
7684
 
        wrappers_required=no
7685
 
        ;;
7686
 
      *)
7687
 
        if test "$need_relink" = no || test "$build_libtool_libs" != yes; then
7688
 
          wrappers_required=no
7689
 
        fi
7690
 
        ;;
7691
 
      esac
7692
 
      if test "$wrappers_required" = no; then
 
4234
        compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
 
4235
        finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
 
4236
      fi
 
4237
 
 
4238
      dlsyms=
 
4239
      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
 
4240
        if test -n "$NM" && test -n "$global_symbol_pipe"; then
 
4241
          dlsyms="${outputname}S.c"
 
4242
        else
 
4243
          $echo "$modename: not configured to extract global symbols from dlpreopened files" 1>&2
 
4244
        fi
 
4245
      fi
 
4246
 
 
4247
      if test -n "$dlsyms"; then
 
4248
        case $dlsyms in
 
4249
        "") ;;
 
4250
        *.c)
 
4251
          # Discover the nlist of each of the dlfiles.
 
4252
          nlist="$output_objdir/${outputname}.nm"
 
4253
 
 
4254
          $show "$rm $nlist ${nlist}S ${nlist}T"
 
4255
          $run $rm "$nlist" "${nlist}S" "${nlist}T"
 
4256
 
 
4257
          # Parse the name list into a source file.
 
4258
          $show "creating $output_objdir/$dlsyms"
 
4259
 
 
4260
          test -z "$run" && $echo > "$output_objdir/$dlsyms" "\
 
4261
/* $dlsyms - symbol resolution table for \`$outputname' dlsym emulation. */
 
4262
/* Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP */
 
4263
 
 
4264
#ifdef __cplusplus
 
4265
extern \"C\" {
 
4266
#endif
 
4267
 
 
4268
/* Prevent the only kind of declaration conflicts we can make. */
 
4269
#define lt_preloaded_symbols some_other_symbol
 
4270
 
 
4271
/* External symbol declarations for the compiler. */\
 
4272
"
 
4273
 
 
4274
          if test "$dlself" = yes; then
 
4275
            $show "generating symbol list for \`$output'"
 
4276
 
 
4277
            test -z "$run" && $echo ': @PROGRAM@ ' > "$nlist"
 
4278
 
 
4279
            # Add our own program objects to the symbol list.
 
4280
            progfiles=`$echo "X$objs$old_deplibs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
 
4281
            for arg in $progfiles; do
 
4282
              $show "extracting global C symbols from \`$arg'"
 
4283
              $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'"
 
4284
            done
 
4285
 
 
4286
            if test -n "$exclude_expsyms"; then
 
4287
              $run eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T'
 
4288
              $run eval '$mv "$nlist"T "$nlist"'
 
4289
            fi
 
4290
 
 
4291
            if test -n "$export_symbols_regex"; then
 
4292
              $run eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T'
 
4293
              $run eval '$mv "$nlist"T "$nlist"'
 
4294
            fi
 
4295
 
 
4296
            # Prepare the list of exported symbols
 
4297
            if test -z "$export_symbols"; then
 
4298
              export_symbols="$output_objdir/$output.exp"
 
4299
              $run $rm $export_symbols
 
4300
              $run eval "${SED} -n -e '/^: @PROGRAM@$/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"'
 
4301
            else
 
4302
              $run eval "${SED} -e 's/\([][.*^$]\)/\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$output.exp"'
 
4303
              $run eval 'grep -f "$output_objdir/$output.exp" < "$nlist" > "$nlist"T'
 
4304
              $run eval 'mv "$nlist"T "$nlist"'
 
4305
            fi
 
4306
          fi
 
4307
 
 
4308
          for arg in $dlprefiles; do
 
4309
            $show "extracting global C symbols from \`$arg'"
 
4310
            name=`$echo "$arg" | ${SED} -e 's%^.*/%%'`
 
4311
            $run eval '$echo ": $name " >> "$nlist"'
 
4312
            $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'"
 
4313
          done
 
4314
 
 
4315
          if test -z "$run"; then
 
4316
            # Make sure we have at least an empty file.
 
4317
            test -f "$nlist" || : > "$nlist"
 
4318
 
 
4319
            if test -n "$exclude_expsyms"; then
 
4320
              $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T
 
4321
              $mv "$nlist"T "$nlist"
 
4322
            fi
 
4323
 
 
4324
            # Try sorting and uniquifying the output.
 
4325
            if grep -v "^: " < "$nlist" |
 
4326
                if sort -k 3 </dev/null >/dev/null 2>&1; then
 
4327
                  sort -k 3
 
4328
                else
 
4329
                  sort +2
 
4330
                fi |
 
4331
                uniq > "$nlist"S; then
 
4332
              :
 
4333
            else
 
4334
              grep -v "^: " < "$nlist" > "$nlist"S
 
4335
            fi
 
4336
 
 
4337
            if test -f "$nlist"S; then
 
4338
              eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$dlsyms"'
 
4339
            else
 
4340
              $echo '/* NONE */' >> "$output_objdir/$dlsyms"
 
4341
            fi
 
4342
 
 
4343
            $echo >> "$output_objdir/$dlsyms" "\
 
4344
 
 
4345
#undef lt_preloaded_symbols
 
4346
 
 
4347
#if defined (__STDC__) && __STDC__
 
4348
# define lt_ptr void *
 
4349
#else
 
4350
# define lt_ptr char *
 
4351
# define const
 
4352
#endif
 
4353
 
 
4354
/* The mapping between symbol names and symbols. */
 
4355
const struct {
 
4356
  const char *name;
 
4357
  lt_ptr address;
 
4358
}
 
4359
lt_preloaded_symbols[] =
 
4360
{\
 
4361
"
 
4362
 
 
4363
            eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$dlsyms"
 
4364
 
 
4365
            $echo >> "$output_objdir/$dlsyms" "\
 
4366
  {0, (lt_ptr) 0}
 
4367
};
 
4368
 
 
4369
/* This works around a problem in FreeBSD linker */
 
4370
#ifdef FREEBSD_WORKAROUND
 
4371
static const void *lt_preloaded_setup() {
 
4372
  return lt_preloaded_symbols;
 
4373
}
 
4374
#endif
 
4375
 
 
4376
#ifdef __cplusplus
 
4377
}
 
4378
#endif\
 
4379
"
 
4380
          fi
 
4381
 
 
4382
          pic_flag_for_symtable=
 
4383
          case $host in
 
4384
          # compiling the symbol table file with pic_flag works around
 
4385
          # a FreeBSD bug that causes programs to crash when -lm is
 
4386
          # linked before any other PIC object.  But we must not use
 
4387
          # pic_flag when linking with -static.  The problem exists in
 
4388
          # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1.
 
4389
          *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)
 
4390
            case "$compile_command " in
 
4391
            *" -static "*) ;;
 
4392
            *) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND";;
 
4393
            esac;;
 
4394
          *-*-hpux*)
 
4395
            case "$compile_command " in
 
4396
            *" -static "*) ;;
 
4397
            *) pic_flag_for_symtable=" $pic_flag";;
 
4398
            esac
 
4399
          esac
 
4400
 
 
4401
          # Now compile the dynamic symbol file.
 
4402
          $show "(cd $output_objdir && $LTCC -c$no_builtin_flag$pic_flag_for_symtable \"$dlsyms\")"
 
4403
          $run eval '(cd $output_objdir && $LTCC -c$no_builtin_flag$pic_flag_for_symtable "$dlsyms")' || exit $?
 
4404
 
 
4405
          # Clean up the generated files.
 
4406
          $show "$rm $output_objdir/$dlsyms $nlist ${nlist}S ${nlist}T"
 
4407
          $run $rm "$output_objdir/$dlsyms" "$nlist" "${nlist}S" "${nlist}T"
 
4408
 
 
4409
          # Transform the symbol file into the correct name.
 
4410
          compile_command=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
 
4411
          finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
 
4412
          ;;
 
4413
        *)
 
4414
          $echo "$modename: unknown suffix for \`$dlsyms'" 1>&2
 
4415
          exit $EXIT_FAILURE
 
4416
          ;;
 
4417
        esac
 
4418
      else
 
4419
        # We keep going just in case the user didn't refer to
 
4420
        # lt_preloaded_symbols.  The linker will fail if global_symbol_pipe
 
4421
        # really was required.
 
4422
 
 
4423
        # Nullify the symbol file.
 
4424
        compile_command=`$echo "X$compile_command" | $Xsed -e "s% @SYMFILE@%%"`
 
4425
        finalize_command=`$echo "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"`
 
4426
      fi
 
4427
 
 
4428
      if test "$need_relink" = no || test "$build_libtool_libs" != yes; then
7693
4429
        # Replace the output file specification.
7694
 
        compile_command=`$ECHO "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
 
4430
        compile_command=`$echo "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
7695
4431
        link_command="$compile_command$compile_rpath"
7696
4432
 
7697
4433
        # We have no uninstalled library dependencies, so finalize right now.
7698
 
        exit_status=0
7699
 
        func_show_eval "$link_command" 'exit_status=$?'
 
4434
        $show "$link_command"
 
4435
        $run eval "$link_command"
 
4436
        status=$?
7700
4437
 
7701
4438
        # Delete the generated files.
7702
 
        if test -f "$output_objdir/${outputname}S.${objext}"; then
7703
 
          func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"'
 
4439
        if test -n "$dlsyms"; then
 
4440
          $show "$rm $output_objdir/${outputname}S.${objext}"
 
4441
          $run $rm "$output_objdir/${outputname}S.${objext}"
7704
4442
        fi
7705
4443
 
7706
 
        exit $exit_status
 
4444
        exit $status
 
4445
      fi
 
4446
 
 
4447
      if test -n "$shlibpath_var"; then
 
4448
        # We should set the shlibpath_var
 
4449
        rpath=
 
4450
        for dir in $temp_rpath; do
 
4451
          case $dir in
 
4452
          [\\/]* | [A-Za-z]:[\\/]*)
 
4453
            # Absolute path.
 
4454
            rpath="$rpath$dir:"
 
4455
            ;;
 
4456
          *)
 
4457
            # Relative path: add a thisdir entry.
 
4458
            rpath="$rpath\$thisdir/$dir:"
 
4459
            ;;
 
4460
          esac
 
4461
        done
 
4462
        temp_rpath="$rpath"
7707
4463
      fi
7708
4464
 
7709
4465
      if test -n "$compile_shlibpath$finalize_shlibpath"; then
7738
4494
        # We don't need to create a wrapper script.
7739
4495
        link_command="$compile_var$compile_command$compile_rpath"
7740
4496
        # Replace the output file specification.
7741
 
        link_command=`$ECHO "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
 
4497
        link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
7742
4498
        # Delete the old output file.
7743
 
        $opt_dry_run || $RM $output
 
4499
        $run $rm $output
7744
4500
        # Link the executable and exit
7745
 
        func_show_eval "$link_command" 'exit $?'
 
4501
        $show "$link_command"
 
4502
        $run eval "$link_command" || exit $?
7746
4503
        exit $EXIT_SUCCESS
7747
4504
      fi
7748
4505
 
7751
4508
        link_command="$compile_var$compile_command$compile_rpath"
7752
4509
        relink_command="$finalize_var$finalize_command$finalize_rpath"
7753
4510
 
7754
 
        func_warning "this platform does not like uninstalled shared libraries"
7755
 
        func_warning "\`$output' will be relinked during installation"
 
4511
        $echo "$modename: warning: this platform does not like uninstalled shared libraries" 1>&2
 
4512
        $echo "$modename: \`$output' will be relinked during installation" 1>&2
7756
4513
      else
7757
4514
        if test "$fast_install" != no; then
7758
4515
          link_command="$finalize_var$compile_command$finalize_rpath"
7759
4516
          if test "$fast_install" = yes; then
7760
 
            relink_command=`$ECHO "X$compile_var$compile_command$compile_rpath" | $Xsed -e 's%@OUTPUT@%\$progdir/\$file%g'`
 
4517
            relink_command=`$echo "X$compile_var$compile_command$compile_rpath" | $Xsed -e 's%@OUTPUT@%\$progdir/\$file%g'`
7761
4518
          else
7762
4519
            # fast_install is set to needless
7763
4520
            relink_command=
7769
4526
      fi
7770
4527
 
7771
4528
      # Replace the output file specification.
7772
 
      link_command=`$ECHO "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'`
 
4529
      link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'`
7773
4530
 
7774
4531
      # Delete the old output files.
7775
 
      $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname
 
4532
      $run $rm $output $output_objdir/$outputname $output_objdir/lt-$outputname
7776
4533
 
7777
 
      func_show_eval "$link_command" 'exit $?'
 
4534
      $show "$link_command"
 
4535
      $run eval "$link_command" || exit $?
7778
4536
 
7779
4537
      # Now create the wrapper script.
7780
 
      func_verbose "creating $output"
 
4538
      $show "creating $output"
7781
4539
 
7782
4540
      # Quote the relink command for shipping.
7783
4541
      if test -n "$relink_command"; then
7784
4542
        # Preserve any variables that may affect compiler behavior
7785
4543
        for var in $variables_saved_for_relink; do
7786
4544
          if eval test -z \"\${$var+set}\"; then
7787
 
            relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command"
 
4545
            relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command"
7788
4546
          elif eval var_value=\$$var; test -z "$var_value"; then
7789
4547
            relink_command="$var=; export $var; $relink_command"
7790
4548
          else
7791
 
            func_quote_for_eval "$var_value"
7792
 
            relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command"
 
4549
            var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
 
4550
            relink_command="$var=\"$var_value\"; export $var; $relink_command"
7793
4551
          fi
7794
4552
        done
7795
4553
        relink_command="(cd `pwd`; $relink_command)"
7796
 
        relink_command=`$ECHO "X$relink_command" | $Xsed -e "$sed_quote_subst"`
 
4554
        relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
7797
4555
      fi
7798
4556
 
7799
 
      # Quote $ECHO for shipping.
7800
 
      if test "X$ECHO" = "X$SHELL $progpath --fallback-echo"; then
 
4557
      # Quote $echo for shipping.
 
4558
      if test "X$echo" = "X$SHELL $progpath --fallback-echo"; then
7801
4559
        case $progpath in
7802
4560
        [\\/]* | [A-Za-z]:[\\/]*) qecho="$SHELL $progpath --fallback-echo";;
7803
4561
        *) qecho="$SHELL `pwd`/$progpath --fallback-echo";;
7804
4562
        esac
7805
 
        qecho=`$ECHO "X$qecho" | $Xsed -e "$sed_quote_subst"`
 
4563
        qecho=`$echo "X$qecho" | $Xsed -e "$sed_quote_subst"`
7806
4564
      else
7807
 
        qecho=`$ECHO "X$ECHO" | $Xsed -e "$sed_quote_subst"`
 
4565
        qecho=`$echo "X$echo" | $Xsed -e "$sed_quote_subst"`
7808
4566
      fi
7809
4567
 
7810
 
      # Only actually do things if not in dry run mode.
7811
 
      $opt_dry_run || {
 
4568
      # Only actually do things if our run command is non-null.
 
4569
      if test -z "$run"; then
7812
4570
        # win32 will think the script is a binary if it has
7813
4571
        # a .exe suffix, so we strip it off here.
7814
4572
        case $output in
7815
 
          *.exe) func_stripname '' '.exe' "$output"
7816
 
                 output=$func_stripname_result ;;
 
4573
          *.exe) output=`$echo $output|${SED} 's,.exe$,,'` ;;
7817
4574
        esac
7818
4575
        # test for cygwin because mv fails w/o .exe extensions
7819
4576
        case $host in
7820
4577
          *cygwin*)
7821
4578
            exeext=.exe
7822
 
            func_stripname '' '.exe' "$outputname"
7823
 
            outputname=$func_stripname_result ;;
 
4579
            outputname=`$echo $outputname|${SED} 's,.exe$,,'` ;;
7824
4580
          *) exeext= ;;
7825
4581
        esac
7826
4582
        case $host in
7827
4583
          *cygwin* | *mingw* )
7828
 
            func_dirname_and_basename "$output" "" "."
7829
 
            output_name=$func_basename_result
7830
 
            output_path=$func_dirname_result
7831
 
            cwrappersource="$output_path/$objdir/lt-$output_name.c"
7832
 
            cwrapper="$output_path/$output_name.exe"
7833
 
            $RM $cwrappersource $cwrapper
7834
 
            trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15
7835
 
 
7836
 
            func_emit_cwrapperexe_src > $cwrappersource
7837
 
 
7838
 
            # The wrapper executable is built using the $host compiler,
7839
 
            # because it contains $host paths and files. If cross-
7840
 
            # compiling, it, like the target executable, must be
7841
 
            # executed on the $host or under an emulation environment.
7842
 
            $opt_dry_run || {
7843
 
              $LTCC $LTCFLAGS -o $cwrapper $cwrappersource
7844
 
              $STRIP $cwrapper
7845
 
            }
7846
 
 
7847
 
            # Now, create the wrapper script for func_source use:
7848
 
            func_ltwrapper_scriptname $cwrapper
7849
 
            $RM $func_ltwrapper_scriptname_result
7850
 
            trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15
7851
 
            $opt_dry_run || {
7852
 
              # note: this script will not be executed, so do not chmod.
7853
 
              if test "x$build" = "x$host" ; then
7854
 
                $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result
7855
 
              else
7856
 
                func_emit_wrapper no > $func_ltwrapper_scriptname_result
7857
 
              fi
7858
 
            }
7859
 
          ;;
7860
 
          * )
7861
 
            $RM $output
7862
 
            trap "$RM $output; exit $EXIT_FAILURE" 1 2 15
7863
 
 
7864
 
            func_emit_wrapper no > $output
7865
 
            chmod +x $output
7866
 
          ;;
7867
 
        esac
7868
 
      }
 
4584
            cwrappersource=`$echo ${objdir}/lt-${output}.c`
 
4585
            cwrapper=`$echo ${output}.exe`
 
4586
            $rm $cwrappersource $cwrapper
 
4587
            trap "$rm $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15
 
4588
 
 
4589
            cat > $cwrappersource <<EOF
 
4590
 
 
4591
/* $cwrappersource - temporary wrapper executable for $objdir/$outputname
 
4592
   Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
 
4593
 
 
4594
   The $output program cannot be directly executed until all the libtool
 
4595
   libraries that it depends on are installed.
 
4596
 
 
4597
   This wrapper executable should never be moved out of the build directory.
 
4598
   If it is, it will not operate correctly.
 
4599
 
 
4600
   Currently, it simply execs the wrapper *script* "/bin/sh $output",
 
4601
   but could eventually absorb all of the scripts functionality and
 
4602
   exec $objdir/$outputname directly.
 
4603
*/
 
4604
EOF
 
4605
            cat >> $cwrappersource<<"EOF"
 
4606
#include <stdio.h>
 
4607
#include <stdlib.h>
 
4608
#include <unistd.h>
 
4609
#include <malloc.h>
 
4610
#include <stdarg.h>
 
4611
#include <assert.h>
 
4612
 
 
4613
#if defined(PATH_MAX)
 
4614
# define LT_PATHMAX PATH_MAX
 
4615
#elif defined(MAXPATHLEN)
 
4616
# define LT_PATHMAX MAXPATHLEN
 
4617
#else
 
4618
# define LT_PATHMAX 1024
 
4619
#endif
 
4620
 
 
4621
#ifndef DIR_SEPARATOR
 
4622
#define DIR_SEPARATOR '/'
 
4623
#endif
 
4624
 
 
4625
#if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \
 
4626
  defined (__OS2__)
 
4627
#define HAVE_DOS_BASED_FILE_SYSTEM
 
4628
#ifndef DIR_SEPARATOR_2
 
4629
#define DIR_SEPARATOR_2 '\\'
 
4630
#endif
 
4631
#endif
 
4632
 
 
4633
#ifndef DIR_SEPARATOR_2
 
4634
# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)
 
4635
#else /* DIR_SEPARATOR_2 */
 
4636
# define IS_DIR_SEPARATOR(ch) \
 
4637
        (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))
 
4638
#endif /* DIR_SEPARATOR_2 */
 
4639
 
 
4640
#define XMALLOC(type, num)      ((type *) xmalloc ((num) * sizeof(type)))
 
4641
#define XFREE(stale) do { \
 
4642
  if (stale) { free ((void *) stale); stale = 0; } \
 
4643
} while (0)
 
4644
 
 
4645
const char *program_name = NULL;
 
4646
 
 
4647
void * xmalloc (size_t num);
 
4648
char * xstrdup (const char *string);
 
4649
char * basename (const char *name);
 
4650
char * fnqualify(const char *path);
 
4651
char * strendzap(char *str, const char *pat);
 
4652
void lt_fatal (const char *message, ...);
 
4653
 
 
4654
int
 
4655
main (int argc, char *argv[])
 
4656
{
 
4657
  char **newargz;
 
4658
  int i;
 
4659
 
 
4660
  program_name = (char *) xstrdup ((char *) basename (argv[0]));
 
4661
  newargz = XMALLOC(char *, argc+2);
 
4662
EOF
 
4663
 
 
4664
            cat >> $cwrappersource <<EOF
 
4665
  newargz[0] = "$SHELL";
 
4666
EOF
 
4667
 
 
4668
            cat >> $cwrappersource <<"EOF"
 
4669
  newargz[1] = fnqualify(argv[0]);
 
4670
  /* we know the script has the same name, without the .exe */
 
4671
  /* so make sure newargz[1] doesn't end in .exe */
 
4672
  strendzap(newargz[1],".exe");
 
4673
  for (i = 1; i < argc; i++)
 
4674
    newargz[i+1] = xstrdup(argv[i]);
 
4675
  newargz[argc+1] = NULL;
 
4676
EOF
 
4677
 
 
4678
            cat >> $cwrappersource <<EOF
 
4679
  execv("$SHELL",newargz);
 
4680
EOF
 
4681
 
 
4682
            cat >> $cwrappersource <<"EOF"
 
4683
}
 
4684
 
 
4685
void *
 
4686
xmalloc (size_t num)
 
4687
{
 
4688
  void * p = (void *) malloc (num);
 
4689
  if (!p)
 
4690
    lt_fatal ("Memory exhausted");
 
4691
 
 
4692
  return p;
 
4693
}
 
4694
 
 
4695
char *
 
4696
xstrdup (const char *string)
 
4697
{
 
4698
  return string ? strcpy ((char *) xmalloc (strlen (string) + 1), string) : NULL
 
4699
;
 
4700
}
 
4701
 
 
4702
char *
 
4703
basename (const char *name)
 
4704
{
 
4705
  const char *base;
 
4706
 
 
4707
#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
 
4708
  /* Skip over the disk name in MSDOS pathnames. */
 
4709
  if (isalpha (name[0]) && name[1] == ':')
 
4710
    name += 2;
 
4711
#endif
 
4712
 
 
4713
  for (base = name; *name; name++)
 
4714
    if (IS_DIR_SEPARATOR (*name))
 
4715
      base = name + 1;
 
4716
  return (char *) base;
 
4717
}
 
4718
 
 
4719
char *
 
4720
fnqualify(const char *path)
 
4721
{
 
4722
  size_t size;
 
4723
  char *p;
 
4724
  char tmp[LT_PATHMAX + 1];
 
4725
 
 
4726
  assert(path != NULL);
 
4727
 
 
4728
  /* Is it qualified already? */
 
4729
#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
 
4730
  if (isalpha (path[0]) && path[1] == ':')
 
4731
    return xstrdup (path);
 
4732
#endif
 
4733
  if (IS_DIR_SEPARATOR (path[0]))
 
4734
    return xstrdup (path);
 
4735
 
 
4736
  /* prepend the current directory */
 
4737
  /* doesn't handle '~' */
 
4738
  if (getcwd (tmp, LT_PATHMAX) == NULL)
 
4739
    lt_fatal ("getcwd failed");
 
4740
  size = strlen(tmp) + 1 + strlen(path) + 1; /* +2 for '/' and '\0' */
 
4741
  p = XMALLOC(char, size);
 
4742
  sprintf(p, "%s%c%s", tmp, DIR_SEPARATOR, path);
 
4743
  return p;
 
4744
}
 
4745
 
 
4746
char *
 
4747
strendzap(char *str, const char *pat)
 
4748
{
 
4749
  size_t len, patlen;
 
4750
 
 
4751
  assert(str != NULL);
 
4752
  assert(pat != NULL);
 
4753
 
 
4754
  len = strlen(str);
 
4755
  patlen = strlen(pat);
 
4756
 
 
4757
  if (patlen <= len)
 
4758
  {
 
4759
    str += len - patlen;
 
4760
    if (strcmp(str, pat) == 0)
 
4761
      *str = '\0';
 
4762
  }
 
4763
  return str;
 
4764
}
 
4765
 
 
4766
static void
 
4767
lt_error_core (int exit_status, const char * mode,
 
4768
          const char * message, va_list ap)
 
4769
{
 
4770
  fprintf (stderr, "%s: %s: ", program_name, mode);
 
4771
  vfprintf (stderr, message, ap);
 
4772
  fprintf (stderr, ".\n");
 
4773
 
 
4774
  if (exit_status >= 0)
 
4775
    exit (exit_status);
 
4776
}
 
4777
 
 
4778
void
 
4779
lt_fatal (const char *message, ...)
 
4780
{
 
4781
  va_list ap;
 
4782
  va_start (ap, message);
 
4783
  lt_error_core (EXIT_FAILURE, "FATAL", message, ap);
 
4784
  va_end (ap);
 
4785
}
 
4786
EOF
 
4787
          # we should really use a build-platform specific compiler
 
4788
          # here, but OTOH, the wrappers (shell script and this C one)
 
4789
          # are only useful if you want to execute the "real" binary.
 
4790
          # Since the "real" binary is built for $host, then this
 
4791
          # wrapper might as well be built for $host, too.
 
4792
          $run $LTCC -s -o $cwrapper $cwrappersource
 
4793
          ;;
 
4794
        esac
 
4795
        $rm $output
 
4796
        trap "$rm $output; exit $EXIT_FAILURE" 1 2 15
 
4797
 
 
4798
        $echo > $output "\
 
4799
#! $SHELL
 
4800
 
 
4801
# $output - temporary wrapper script for $objdir/$outputname
 
4802
# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
 
4803
#
 
4804
# The $output program cannot be directly executed until all the libtool
 
4805
# libraries that it depends on are installed.
 
4806
#
 
4807
# This wrapper script should never be moved out of the build directory.
 
4808
# If it is, it will not operate correctly.
 
4809
 
 
4810
# Sed substitution that helps us do robust quoting.  It backslashifies
 
4811
# metacharacters that are still active within double-quoted strings.
 
4812
Xsed='${SED} -e 1s/^X//'
 
4813
sed_quote_subst='$sed_quote_subst'
 
4814
 
 
4815
# The HP-UX ksh and POSIX shell print the target directory to stdout
 
4816
# if CDPATH is set.
 
4817
if test \"\${CDPATH+set}\" = set; then CDPATH=:; export CDPATH; fi
 
4818
 
 
4819
relink_command=\"$relink_command\"
 
4820
 
 
4821
# This environment variable determines our operation mode.
 
4822
if test \"\$libtool_install_magic\" = \"$magic\"; then
 
4823
  # install mode needs the following variable:
 
4824
  notinst_deplibs='$notinst_deplibs'
 
4825
else
 
4826
  # When we are sourced in execute mode, \$file and \$echo are already set.
 
4827
  if test \"\$libtool_execute_magic\" != \"$magic\"; then
 
4828
    echo=\"$qecho\"
 
4829
    file=\"\$0\"
 
4830
    # Make sure echo works.
 
4831
    if test \"X\$1\" = X--no-reexec; then
 
4832
      # Discard the --no-reexec flag, and continue.
 
4833
      shift
 
4834
    elif test \"X\`(\$echo '\t') 2>/dev/null\`\" = 'X\t'; then
 
4835
      # Yippee, \$echo works!
 
4836
      :
 
4837
    else
 
4838
      # Restart under the correct shell, and then maybe \$echo will work.
 
4839
      exec $SHELL \"\$0\" --no-reexec \${1+\"\$@\"}
 
4840
    fi
 
4841
  fi\
 
4842
"
 
4843
        $echo >> $output "\
 
4844
 
 
4845
  # Find the directory that this script lives in.
 
4846
  thisdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\`
 
4847
  test \"x\$thisdir\" = \"x\$file\" && thisdir=.
 
4848
 
 
4849
  # Follow symbolic links until we get to the real thisdir.
 
4850
  file=\`ls -ld \"\$file\" | ${SED} -n 's/.*-> //p'\`
 
4851
  while test -n \"\$file\"; do
 
4852
    destdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\`
 
4853
 
 
4854
    # If there was a directory component, then change thisdir.
 
4855
    if test \"x\$destdir\" != \"x\$file\"; then
 
4856
      case \"\$destdir\" in
 
4857
      [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;;
 
4858
      *) thisdir=\"\$thisdir/\$destdir\" ;;
 
4859
      esac
 
4860
    fi
 
4861
 
 
4862
    file=\`\$echo \"X\$file\" | \$Xsed -e 's%^.*/%%'\`
 
4863
    file=\`ls -ld \"\$thisdir/\$file\" | ${SED} -n 's/.*-> //p'\`
 
4864
  done
 
4865
 
 
4866
  # Try to get the absolute directory name.
 
4867
  absdir=\`cd \"\$thisdir\" && pwd\`
 
4868
  test -n \"\$absdir\" && thisdir=\"\$absdir\"
 
4869
"
 
4870
 
 
4871
        if test "$fast_install" = yes; then
 
4872
          $echo >> $output "\
 
4873
  program=lt-'$outputname'$exeext
 
4874
  progdir=\"\$thisdir/$objdir\"
 
4875
 
 
4876
  if test ! -f \"\$progdir/\$program\" || \\
 
4877
     { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\
 
4878
       test \"X\$file\" != \"X\$progdir/\$program\"; }; then
 
4879
 
 
4880
    file=\"\$\$-\$program\"
 
4881
 
 
4882
    if test ! -d \"\$progdir\"; then
 
4883
      $mkdir \"\$progdir\"
 
4884
    else
 
4885
      $rm \"\$progdir/\$file\"
 
4886
    fi"
 
4887
 
 
4888
          $echo >> $output "\
 
4889
 
 
4890
    # relink executable if necessary
 
4891
    if test -n \"\$relink_command\"; then
 
4892
      if relink_command_output=\`eval \$relink_command 2>&1\`; then :
 
4893
      else
 
4894
        $echo \"\$relink_command_output\" >&2
 
4895
        $rm \"\$progdir/\$file\"
 
4896
        exit $EXIT_FAILURE
 
4897
      fi
 
4898
    fi
 
4899
 
 
4900
    $mv \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null ||
 
4901
    { $rm \"\$progdir/\$program\";
 
4902
      $mv \"\$progdir/\$file\" \"\$progdir/\$program\"; }
 
4903
    $rm \"\$progdir/\$file\"
 
4904
  fi"
 
4905
        else
 
4906
          $echo >> $output "\
 
4907
  program='$outputname'
 
4908
  progdir=\"\$thisdir/$objdir\"
 
4909
"
 
4910
        fi
 
4911
 
 
4912
        $echo >> $output "\
 
4913
 
 
4914
  if test -f \"\$progdir/\$program\"; then"
 
4915
 
 
4916
        # Export our shlibpath_var if we have one.
 
4917
        if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
 
4918
          $echo >> $output "\
 
4919
    # Add our own library path to $shlibpath_var
 
4920
    $shlibpath_var=\"$temp_rpath\$$shlibpath_var\"
 
4921
 
 
4922
    # Some systems cannot cope with colon-terminated $shlibpath_var
 
4923
    # The second colon is a workaround for a bug in BeOS R4 sed
 
4924
    $shlibpath_var=\`\$echo \"X\$$shlibpath_var\" | \$Xsed -e 's/::*\$//'\`
 
4925
 
 
4926
    export $shlibpath_var
 
4927
"
 
4928
        fi
 
4929
 
 
4930
        # fixup the dll searchpath if we need to.
 
4931
        if test -n "$dllsearchpath"; then
 
4932
          $echo >> $output "\
 
4933
    # Add the dll search path components to the executable PATH
 
4934
    PATH=$dllsearchpath:\$PATH
 
4935
"
 
4936
        fi
 
4937
 
 
4938
        $echo >> $output "\
 
4939
    if test \"\$libtool_execute_magic\" != \"$magic\"; then
 
4940
      # Run the actual program with our arguments.
 
4941
"
 
4942
        case $host in
 
4943
        # Backslashes separate directories on plain windows
 
4944
        *-*-mingw | *-*-os2*)
 
4945
          $echo >> $output "\
 
4946
      exec \$progdir\\\\\$program \${1+\"\$@\"}
 
4947
"
 
4948
          ;;
 
4949
 
 
4950
        *)
 
4951
          $echo >> $output "\
 
4952
      exec \$progdir/\$program \${1+\"\$@\"}
 
4953
"
 
4954
          ;;
 
4955
        esac
 
4956
        $echo >> $output "\
 
4957
      \$echo \"\$0: cannot exec \$program \${1+\"\$@\"}\"
 
4958
      exit $EXIT_FAILURE
 
4959
    fi
 
4960
  else
 
4961
    # The program doesn't exist.
 
4962
    \$echo \"\$0: error: \$progdir/\$program does not exist\" 1>&2
 
4963
    \$echo \"This script is just a wrapper for \$program.\" 1>&2
 
4964
    $echo \"See the $PACKAGE documentation for more information.\" 1>&2
 
4965
    exit $EXIT_FAILURE
 
4966
  fi
 
4967
fi\
 
4968
"
 
4969
        chmod +x $output
 
4970
      fi
7869
4971
      exit $EXIT_SUCCESS
7870
4972
      ;;
7871
4973
    esac
7874
4976
    for oldlib in $oldlibs; do
7875
4977
 
7876
4978
      if test "$build_libtool_libs" = convenience; then
7877
 
        oldobjs="$libobjs_save $symfileobj"
 
4979
        oldobjs="$libobjs_save"
7878
4980
        addlibs="$convenience"
7879
4981
        build_libtool_libs=no
7880
4982
      else
7883
4985
          build_libtool_libs=no
7884
4986
        else
7885
4987
          oldobjs="$old_deplibs $non_pic_objects"
7886
 
          if test "$preload" = yes && test -f "$symfileobj"; then
7887
 
            oldobjs="$oldobjs $symfileobj"
7888
 
          fi
7889
4988
        fi
7890
4989
        addlibs="$old_convenience"
7891
4990
      fi
7892
4991
 
7893
4992
      if test -n "$addlibs"; then
7894
4993
        gentop="$output_objdir/${outputname}x"
 
4994
        $show "${rm}r $gentop"
 
4995
        $run ${rm}r "$gentop"
 
4996
        $show "$mkdir $gentop"
 
4997
        $run $mkdir "$gentop"
 
4998
        status=$?
 
4999
        if test "$status" -ne 0 && test ! -d "$gentop"; then
 
5000
          exit $status
 
5001
        fi
7895
5002
        generated="$generated $gentop"
7896
5003
 
7897
 
        func_extract_archives $gentop $addlibs
7898
 
        oldobjs="$oldobjs $func_extract_archives_result"
 
5004
        # Add in members from convenience archives.
 
5005
        for xlib in $addlibs; do
 
5006
          # Extract the objects.
 
5007
          case $xlib in
 
5008
          [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;;
 
5009
          *) xabs=`pwd`"/$xlib" ;;
 
5010
          esac
 
5011
          xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
 
5012
          xdir="$gentop/$xlib"
 
5013
 
 
5014
          $show "${rm}r $xdir"
 
5015
          $run ${rm}r "$xdir"
 
5016
          $show "$mkdir $xdir"
 
5017
          $run $mkdir "$xdir"
 
5018
          status=$?
 
5019
          if test "$status" -ne 0 && test ! -d "$xdir"; then
 
5020
            exit $status
 
5021
          fi
 
5022
          # We will extract separately just the conflicting names and we will no
 
5023
          # longer touch any unique names. It is faster to leave these extract
 
5024
          # automatically by $AR in one run.
 
5025
          $show "(cd $xdir && $AR x $xabs)"
 
5026
          $run eval "(cd \$xdir && $AR x \$xabs)" || exit $?
 
5027
          if ($AR t "$xabs" | sort | sort -uc >/dev/null 2>&1); then
 
5028
            :
 
5029
          else
 
5030
            $echo "$modename: warning: object name conflicts; renaming object files" 1>&2
 
5031
            $echo "$modename: warning: to ensure that they will not overwrite" 1>&2
 
5032
            $AR t "$xabs" | sort | uniq -cd | while read -r count name
 
5033
            do
 
5034
              i=1
 
5035
              while test "$i" -le "$count"
 
5036
              do
 
5037
               # Put our $i before any first dot (extension)
 
5038
               # Never overwrite any file
 
5039
               name_to="$name"
 
5040
               while test "X$name_to" = "X$name" || test -f "$xdir/$name_to"
 
5041
               do
 
5042
                 name_to=`$echo "X$name_to" | $Xsed -e "s/\([^.]*\)/\1-$i/"`
 
5043
               done
 
5044
               $show "(cd $xdir && $AR xN $i $xabs '$name' && $mv '$name' '$name_to')"
 
5045
               $run eval "(cd \$xdir && $AR xN $i \$xabs '$name' && $mv '$name' '$name_to')" || exit $?
 
5046
               i=`expr $i + 1`
 
5047
              done
 
5048
            done
 
5049
          fi
 
5050
 
 
5051
          oldobjs="$oldobjs "`find $xdir -name \*.${objext} -print -o -name \*.lo -print | $NL2SP`
 
5052
        done
7899
5053
      fi
7900
5054
 
7901
5055
      # Do each command in the archive commands.
7902
5056
      if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then
7903
 
        cmds=$old_archive_from_new_cmds
 
5057
       cmds=$old_archive_from_new_cmds
7904
5058
      else
7905
 
 
7906
 
        # Add any objects from preloaded convenience libraries
7907
 
        if test -n "$dlprefiles"; then
7908
 
          gentop="$output_objdir/${outputname}x"
7909
 
          generated="$generated $gentop"
7910
 
 
7911
 
          func_extract_archives $gentop $dlprefiles
7912
 
          oldobjs="$oldobjs $func_extract_archives_result"
7913
 
        fi
7914
 
 
7915
 
        # POSIX demands no paths to be encoded in archives.  We have
7916
 
        # to avoid creating archives with duplicate basenames if we
7917
 
        # might have to extract them afterwards, e.g., when creating a
7918
 
        # static archive out of a convenience library, or when linking
7919
 
        # the entirety of a libtool archive into another (currently
7920
 
        # not supported by libtool).
7921
 
        if (for obj in $oldobjs
7922
 
            do
7923
 
              func_basename "$obj"
7924
 
              $ECHO "$func_basename_result"
7925
 
            done | sort | sort -uc >/dev/null 2>&1); then
7926
 
          :
7927
 
        else
7928
 
          $ECHO "copying selected object files to avoid basename conflicts..."
7929
 
          gentop="$output_objdir/${outputname}x"
7930
 
          generated="$generated $gentop"
7931
 
          func_mkdir_p "$gentop"
7932
 
          save_oldobjs=$oldobjs
7933
 
          oldobjs=
7934
 
          counter=1
7935
 
          for obj in $save_oldobjs
7936
 
          do
7937
 
            func_basename "$obj"
7938
 
            objbase="$func_basename_result"
7939
 
            case " $oldobjs " in
7940
 
            " ") oldobjs=$obj ;;
7941
 
            *[\ /]"$objbase "*)
7942
 
              while :; do
7943
 
                # Make sure we don't pick an alternate name that also
7944
 
                # overlaps.
7945
 
                newobj=lt$counter-$objbase
7946
 
                func_arith $counter + 1
7947
 
                counter=$func_arith_result
7948
 
                case " $oldobjs " in
7949
 
                *[\ /]"$newobj "*) ;;
7950
 
                *) if test ! -f "$gentop/$newobj"; then break; fi ;;
7951
 
                esac
7952
 
              done
7953
 
              func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj"
7954
 
              oldobjs="$oldobjs $gentop/$newobj"
7955
 
              ;;
7956
 
            *) oldobjs="$oldobjs $obj" ;;
7957
 
            esac
7958
 
          done
7959
 
        fi
7960
5059
        eval cmds=\"$old_archive_cmds\"
7961
5060
 
7962
 
        func_len " $cmds"
7963
 
        len=$func_len_result
7964
 
        if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then
 
5061
        if len=`expr "X$cmds" : ".*"` &&
 
5062
             test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then
7965
5063
          cmds=$old_archive_cmds
7966
5064
        else
7967
5065
          # the command line is too long to link in one step, link in parts
7968
 
          func_verbose "using piecewise archive linking..."
 
5066
          $echo "using piecewise archive linking..."
7969
5067
          save_RANLIB=$RANLIB
7970
5068
          RANLIB=:
7971
5069
          objlist=
7972
5070
          concat_cmds=
7973
5071
          save_oldobjs=$oldobjs
7974
 
          oldobjs=
 
5072
          # GNU ar 2.10+ was changed to match POSIX; thus no paths are
 
5073
          # encoded into archives.  This makes 'ar r' malfunction in
 
5074
          # this piecewise linking case whenever conflicting object
 
5075
          # names appear in distinct ar calls; check, warn and compensate.
 
5076
            if (for obj in $save_oldobjs
 
5077
            do
 
5078
              $echo "X$obj" | $Xsed -e 's%^.*/%%'
 
5079
            done | sort | sort -uc >/dev/null 2>&1); then
 
5080
            :
 
5081
          else
 
5082
            $echo "$modename: warning: object name conflicts; overriding AR_FLAGS to 'cq'" 1>&2
 
5083
            $echo "$modename: warning: to ensure that POSIX-compatible ar will work" 1>&2
 
5084
            AR_FLAGS=cq
 
5085
          fi
7975
5086
          # Is there a better way of finding the last object in the list?
7976
5087
          for obj in $save_oldobjs
7977
5088
          do
7978
5089
            last_oldobj=$obj
7979
5090
          done
7980
 
          eval test_cmds=\"$old_archive_cmds\"
7981
 
          func_len " $test_cmds"
7982
 
          len0=$func_len_result
7983
 
          len=$len0
7984
5091
          for obj in $save_oldobjs
7985
5092
          do
7986
 
            func_len " $obj"
7987
 
            func_arith $len + $func_len_result
7988
 
            len=$func_arith_result
7989
 
            func_append objlist " $obj"
7990
 
            if test "$len" -lt "$max_cmd_len"; then
 
5093
            oldobjs="$objlist $obj"
 
5094
            objlist="$objlist $obj"
 
5095
            eval test_cmds=\"$old_archive_cmds\"
 
5096
            if len=`expr "X$test_cmds" : ".*"` &&
 
5097
               test "$len" -le "$max_cmd_len"; then
7991
5098
              :
7992
5099
            else
7993
5100
              # the above command should be used before it gets too long
7994
5101
              oldobjs=$objlist
7995
5102
              if test "$obj" = "$last_oldobj" ; then
7996
 
                RANLIB=$save_RANLIB
 
5103
                RANLIB=$save_RANLIB
7997
5104
              fi
7998
5105
              test -z "$concat_cmds" || concat_cmds=$concat_cmds~
7999
5106
              eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\"
8000
5107
              objlist=
8001
 
              len=$len0
8002
5108
            fi
8003
5109
          done
8004
5110
          RANLIB=$save_RANLIB
8010
5116
          fi
8011
5117
        fi
8012
5118
      fi
8013
 
      func_execute_cmds "$cmds" 'exit $?'
 
5119
      save_ifs="$IFS"; IFS='~'
 
5120
      for cmd in $cmds; do
 
5121
        eval cmd=\"$cmd\"
 
5122
        IFS="$save_ifs"
 
5123
        $show "$cmd"
 
5124
        $run eval "$cmd" || exit $?
 
5125
      done
 
5126
      IFS="$save_ifs"
8014
5127
    done
8015
5128
 
8016
 
    test -n "$generated" && \
8017
 
      func_show_eval "${RM}r$generated"
 
5129
    if test -n "$generated"; then
 
5130
      $show "${rm}r$generated"
 
5131
      $run ${rm}r$generated
 
5132
    fi
8018
5133
 
8019
5134
    # Now create the libtool archive.
8020
5135
    case $output in
8021
5136
    *.la)
8022
5137
      old_library=
8023
5138
      test "$build_old_libs" = yes && old_library="$libname.$libext"
8024
 
      func_verbose "creating $output"
 
5139
      $show "creating $output"
8025
5140
 
8026
5141
      # Preserve any variables that may affect compiler behavior
8027
5142
      for var in $variables_saved_for_relink; do
8028
5143
        if eval test -z \"\${$var+set}\"; then
8029
 
          relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command"
 
5144
          relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command"
8030
5145
        elif eval var_value=\$$var; test -z "$var_value"; then
8031
5146
          relink_command="$var=; export $var; $relink_command"
8032
5147
        else
8033
 
          func_quote_for_eval "$var_value"
8034
 
          relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command"
 
5148
          var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
 
5149
          relink_command="$var=\"$var_value\"; export $var; $relink_command"
8035
5150
        fi
8036
5151
      done
8037
5152
      # Quote the link command for shipping.
8038
5153
      relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)"
8039
 
      relink_command=`$ECHO "X$relink_command" | $Xsed -e "$sed_quote_subst"`
 
5154
      relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
8040
5155
      if test "$hardcode_automatic" = yes ; then
8041
5156
        relink_command=
8042
5157
      fi
8043
5158
 
 
5159
 
8044
5160
      # Only create the output if not a dry run.
8045
 
      $opt_dry_run || {
 
5161
      if test -z "$run"; then
8046
5162
        for installed in no yes; do
8047
5163
          if test "$installed" = yes; then
8048
5164
            if test -z "$install_libdir"; then
8054
5170
            for deplib in $dependency_libs; do
8055
5171
              case $deplib in
8056
5172
              *.la)
8057
 
                func_basename "$deplib"
8058
 
                name="$func_basename_result"
 
5173
                name=`$echo "X$deplib" | $Xsed -e 's%^.*/%%'`
8059
5174
                eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
8060
 
                test -z "$libdir" && \
8061
 
                  func_fatal_error "\`$deplib' is not a valid libtool archive"
 
5175
                if test -z "$libdir"; then
 
5176
                  $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2
 
5177
                  exit $EXIT_FAILURE
 
5178
                fi
8062
5179
                newdependency_libs="$newdependency_libs $libdir/$name"
8063
5180
                ;;
8064
5181
              *) newdependency_libs="$newdependency_libs $deplib" ;;
8066
5183
            done
8067
5184
            dependency_libs="$newdependency_libs"
8068
5185
            newdlfiles=
8069
 
 
8070
5186
            for lib in $dlfiles; do
8071
 
              case $lib in
8072
 
              *.la)
8073
 
                func_basename "$lib"
8074
 
                name="$func_basename_result"
8075
 
                eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
8076
 
                test -z "$libdir" && \
8077
 
                  func_fatal_error "\`$lib' is not a valid libtool archive"
8078
 
                newdlfiles="$newdlfiles $libdir/$name"
8079
 
                ;;
8080
 
              *) newdlfiles="$newdlfiles $lib" ;;
8081
 
              esac
 
5187
              name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
 
5188
              eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
 
5189
              if test -z "$libdir"; then
 
5190
                $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
 
5191
                exit $EXIT_FAILURE
 
5192
              fi
 
5193
              newdlfiles="$newdlfiles $libdir/$name"
8082
5194
            done
8083
5195
            dlfiles="$newdlfiles"
8084
5196
            newdlprefiles=
8085
5197
            for lib in $dlprefiles; do
8086
 
              case $lib in
8087
 
              *.la)
8088
 
                # Only pass preopened files to the pseudo-archive (for
8089
 
                # eventual linking with the app. that links it) if we
8090
 
                # didn't already link the preopened objects directly into
8091
 
                # the library:
8092
 
                func_basename "$lib"
8093
 
                name="$func_basename_result"
8094
 
                eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
8095
 
                test -z "$libdir" && \
8096
 
                  func_fatal_error "\`$lib' is not a valid libtool archive"
8097
 
                newdlprefiles="$newdlprefiles $libdir/$name"
8098
 
                ;;
8099
 
              esac
 
5198
              name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
 
5199
              eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
 
5200
              if test -z "$libdir"; then
 
5201
                $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
 
5202
                exit $EXIT_FAILURE
 
5203
              fi
 
5204
              newdlprefiles="$newdlprefiles $libdir/$name"
8100
5205
            done
8101
5206
            dlprefiles="$newdlprefiles"
8102
5207
          else
8119
5224
            done
8120
5225
            dlprefiles="$newdlprefiles"
8121
5226
          fi
8122
 
          $RM $output
 
5227
          $rm $output
8123
5228
          # place dlname in correct position for cygwin
8124
5229
          tdlname=$dlname
8125
5230
          case $host,$output,$installed,$module,$dlname in
8126
 
            *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) tdlname=../bin/$dlname ;;
 
5231
            *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll) tdlname=../bin/$dlname ;;
8127
5232
          esac
8128
 
          $ECHO > $output "\
 
5233
          $echo > $output "\
8129
5234
# $outputname - a libtool library file
8130
 
# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
 
5235
# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
8131
5236
#
8132
5237
# Please DO NOT delete this file!
8133
5238
# It is necessary for linking the library.
8141
5246
# The name of the static archive.
8142
5247
old_library='$old_library'
8143
5248
 
8144
 
# Linker flags that can not go in dependency_libs.
8145
 
inherited_linker_flags='$new_inherited_linker_flags'
8146
 
 
8147
5249
# Libraries that this one depends upon.
8148
5250
dependency_libs='$dependency_libs'
8149
5251
 
8150
 
# Names of additional weak libraries provided by this library
8151
 
weak_library_names='$weak_libs'
8152
 
 
8153
5252
# Version information for $libname.
8154
5253
current=$current
8155
5254
age=$age
8168
5267
# Directory that this library needs to be installed in:
8169
5268
libdir='$install_libdir'"
8170
5269
          if test "$installed" = no && test "$need_relink" = yes; then
8171
 
            $ECHO >> $output "\
 
5270
            $echo >> $output "\
8172
5271
relink_command=\"$relink_command\""
8173
5272
          fi
8174
5273
        done
8175
 
      }
 
5274
      fi
8176
5275
 
8177
5276
      # Do a symbolic link so that the libtool archive can be found in
8178
5277
      # LD_LIBRARY_PATH before the program is installed.
8179
 
      func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?'
8180
 
      ;;
8181
 
    esac
8182
 
    exit $EXIT_SUCCESS
8183
 
}
8184
 
 
8185
 
{ test "$mode" = link || test "$mode" = relink; } &&
8186
 
    func_mode_link ${1+"$@"}
8187
 
 
8188
 
 
8189
 
# func_mode_uninstall arg...
8190
 
func_mode_uninstall ()
8191
 
{
8192
 
    $opt_debug
8193
 
    RM="$nonopt"
 
5278
      $show "(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)"
 
5279
      $run eval '(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)' || exit $?
 
5280
      ;;
 
5281
    esac
 
5282
    exit $EXIT_SUCCESS
 
5283
    ;;
 
5284
 
 
5285
  # libtool install mode
 
5286
  install)
 
5287
    modename="$modename: install"
 
5288
 
 
5289
    # There may be an optional sh(1) argument at the beginning of
 
5290
    # install_prog (especially on Windows NT).
 
5291
    if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh ||
 
5292
       # Allow the use of GNU shtool's install command.
 
5293
       $echo "X$nonopt" | $Xsed | grep shtool > /dev/null; then
 
5294
      # Aesthetically quote it.
 
5295
      arg=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"`
 
5296
      case $arg in
 
5297
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \     ]*|*]*)
 
5298
        arg="\"$arg\""
 
5299
        ;;
 
5300
      esac
 
5301
      install_prog="$arg "
 
5302
      arg="$1"
 
5303
      shift
 
5304
    else
 
5305
      install_prog=
 
5306
      arg="$nonopt"
 
5307
    fi
 
5308
 
 
5309
    # The real first argument should be the name of the installation program.
 
5310
    # Aesthetically quote it.
 
5311
    arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
 
5312
    case $arg in
 
5313
    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \       ]*|*]*)
 
5314
      arg="\"$arg\""
 
5315
      ;;
 
5316
    esac
 
5317
    install_prog="$install_prog$arg"
 
5318
 
 
5319
    # We need to accept at least all the BSD install flags.
 
5320
    dest=
 
5321
    files=
 
5322
    opts=
 
5323
    prev=
 
5324
    install_type=
 
5325
    isdir=no
 
5326
    stripme=
 
5327
    for arg
 
5328
    do
 
5329
      if test -n "$dest"; then
 
5330
        files="$files $dest"
 
5331
        dest="$arg"
 
5332
        continue
 
5333
      fi
 
5334
 
 
5335
      case $arg in
 
5336
      -d) isdir=yes ;;
 
5337
      -f) prev="-f" ;;
 
5338
      -g) prev="-g" ;;
 
5339
      -m) prev="-m" ;;
 
5340
      -o) prev="-o" ;;
 
5341
      -s)
 
5342
        stripme=" -s"
 
5343
        continue
 
5344
        ;;
 
5345
      -*) ;;
 
5346
 
 
5347
      *)
 
5348
        # If the previous option needed an argument, then skip it.
 
5349
        if test -n "$prev"; then
 
5350
          prev=
 
5351
        else
 
5352
          dest="$arg"
 
5353
          continue
 
5354
        fi
 
5355
        ;;
 
5356
      esac
 
5357
 
 
5358
      # Aesthetically quote the argument.
 
5359
      arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
 
5360
      case $arg in
 
5361
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \     ]*|*]*)
 
5362
        arg="\"$arg\""
 
5363
        ;;
 
5364
      esac
 
5365
      install_prog="$install_prog $arg"
 
5366
    done
 
5367
 
 
5368
    if test -z "$install_prog"; then
 
5369
      $echo "$modename: you must specify an install program" 1>&2
 
5370
      $echo "$help" 1>&2
 
5371
      exit $EXIT_FAILURE
 
5372
    fi
 
5373
 
 
5374
    if test -n "$prev"; then
 
5375
      $echo "$modename: the \`$prev' option requires an argument" 1>&2
 
5376
      $echo "$help" 1>&2
 
5377
      exit $EXIT_FAILURE
 
5378
    fi
 
5379
 
 
5380
    if test -z "$files"; then
 
5381
      if test -z "$dest"; then
 
5382
        $echo "$modename: no file or destination specified" 1>&2
 
5383
      else
 
5384
        $echo "$modename: you must specify a destination" 1>&2
 
5385
      fi
 
5386
      $echo "$help" 1>&2
 
5387
      exit $EXIT_FAILURE
 
5388
    fi
 
5389
 
 
5390
    # Strip any trailing slash from the destination.
 
5391
    dest=`$echo "X$dest" | $Xsed -e 's%/$%%'`
 
5392
 
 
5393
    # Check to see that the destination is a directory.
 
5394
    test -d "$dest" && isdir=yes
 
5395
    if test "$isdir" = yes; then
 
5396
      destdir="$dest"
 
5397
      destname=
 
5398
    else
 
5399
      destdir=`$echo "X$dest" | $Xsed -e 's%/[^/]*$%%'`
 
5400
      test "X$destdir" = "X$dest" && destdir=.
 
5401
      destname=`$echo "X$dest" | $Xsed -e 's%^.*/%%'`
 
5402
 
 
5403
      # Not a directory, so check to see that there is only one file specified.
 
5404
      set dummy $files
 
5405
      if test "$#" -gt 2; then
 
5406
        $echo "$modename: \`$dest' is not a directory" 1>&2
 
5407
        $echo "$help" 1>&2
 
5408
        exit $EXIT_FAILURE
 
5409
      fi
 
5410
    fi
 
5411
    case $destdir in
 
5412
    [\\/]* | [A-Za-z]:[\\/]*) ;;
 
5413
    *)
 
5414
      for file in $files; do
 
5415
        case $file in
 
5416
        *.lo) ;;
 
5417
        *)
 
5418
          $echo "$modename: \`$destdir' must be an absolute directory name" 1>&2
 
5419
          $echo "$help" 1>&2
 
5420
          exit $EXIT_FAILURE
 
5421
          ;;
 
5422
        esac
 
5423
      done
 
5424
      ;;
 
5425
    esac
 
5426
 
 
5427
    # This variable tells wrapper scripts just to set variables rather
 
5428
    # than running their programs.
 
5429
    libtool_install_magic="$magic"
 
5430
 
 
5431
    staticlibs=
 
5432
    future_libdirs=
 
5433
    current_libdirs=
 
5434
    for file in $files; do
 
5435
 
 
5436
      # Do each installation.
 
5437
      case $file in
 
5438
      *.$libext)
 
5439
        # Do the static libraries later.
 
5440
        staticlibs="$staticlibs $file"
 
5441
        ;;
 
5442
 
 
5443
      *.la)
 
5444
        # Check to see that this really is a libtool archive.
 
5445
        if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
 
5446
        else
 
5447
          $echo "$modename: \`$file' is not a valid libtool archive" 1>&2
 
5448
          $echo "$help" 1>&2
 
5449
          exit $EXIT_FAILURE
 
5450
        fi
 
5451
 
 
5452
        library_names=
 
5453
        old_library=
 
5454
        relink_command=
 
5455
        # If there is no directory component, then add one.
 
5456
        case $file in
 
5457
        */* | *\\*) . $file ;;
 
5458
        *) . ./$file ;;
 
5459
        esac
 
5460
 
 
5461
        # Add the libdir to current_libdirs if it is the destination.
 
5462
        if test "X$destdir" = "X$libdir"; then
 
5463
          case "$current_libdirs " in
 
5464
          *" $libdir "*) ;;
 
5465
          *) current_libdirs="$current_libdirs $libdir" ;;
 
5466
          esac
 
5467
        else
 
5468
          # Note the libdir as a future libdir.
 
5469
          case "$future_libdirs " in
 
5470
          *" $libdir "*) ;;
 
5471
          *) future_libdirs="$future_libdirs $libdir" ;;
 
5472
          esac
 
5473
        fi
 
5474
 
 
5475
        dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`/
 
5476
        test "X$dir" = "X$file/" && dir=
 
5477
        dir="$dir$objdir"
 
5478
 
 
5479
        if test -n "$relink_command"; then
 
5480
          # Determine the prefix the user has applied to our future dir.
 
5481
          inst_prefix_dir=`$echo "$destdir" | $SED "s%$libdir\$%%"`
 
5482
 
 
5483
          # Don't allow the user to place us outside of our expected
 
5484
          # location b/c this prevents finding dependent libraries that
 
5485
          # are installed to the same prefix.
 
5486
          # At present, this check doesn't affect windows .dll's that
 
5487
          # are installed into $libdir/../bin (currently, that works fine)
 
5488
          # but it's something to keep an eye on.
 
5489
          if test "$inst_prefix_dir" = "$destdir"; then
 
5490
            $echo "$modename: error: cannot install \`$file' to a directory not ending in $libdir" 1>&2
 
5491
            exit $EXIT_FAILURE
 
5492
          fi
 
5493
 
 
5494
          if test -n "$inst_prefix_dir"; then
 
5495
            # Stick the inst_prefix_dir data into the link command.
 
5496
            relink_command=`$echo "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"`
 
5497
          else
 
5498
            relink_command=`$echo "$relink_command" | $SED "s%@inst_prefix_dir@%%"`
 
5499
          fi
 
5500
 
 
5501
          $echo "$modename: warning: relinking \`$file'" 1>&2
 
5502
          $show "$relink_command"
 
5503
          if $run eval "$relink_command"; then :
 
5504
          else
 
5505
            $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2
 
5506
            exit $EXIT_FAILURE
 
5507
          fi
 
5508
        fi
 
5509
 
 
5510
        # See the names of the shared library.
 
5511
        set dummy $library_names
 
5512
        if test -n "$2"; then
 
5513
          realname="$2"
 
5514
          shift
 
5515
          shift
 
5516
 
 
5517
          srcname="$realname"
 
5518
          test -n "$relink_command" && srcname="$realname"T
 
5519
 
 
5520
          # Install the shared library and build the symlinks.
 
5521
          $show "$install_prog $dir/$srcname $destdir/$realname"
 
5522
          $run eval "$install_prog $dir/$srcname $destdir/$realname" || exit $?
 
5523
          if test -n "$stripme" && test -n "$striplib"; then
 
5524
            $show "$striplib $destdir/$realname"
 
5525
            $run eval "$striplib $destdir/$realname" || exit $?
 
5526
          fi
 
5527
 
 
5528
          if test "$#" -gt 0; then
 
5529
            # Delete the old symlinks, and create new ones.
 
5530
            for linkname
 
5531
            do
 
5532
              if test "$linkname" != "$realname"; then
 
5533
                $show "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)"
 
5534
                $run eval "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)"
 
5535
              fi
 
5536
            done
 
5537
          fi
 
5538
 
 
5539
          # Do each command in the postinstall commands.
 
5540
          lib="$destdir/$realname"
 
5541
          cmds=$postinstall_cmds
 
5542
          save_ifs="$IFS"; IFS='~'
 
5543
          for cmd in $cmds; do
 
5544
            IFS="$save_ifs"
 
5545
            eval cmd=\"$cmd\"
 
5546
            $show "$cmd"
 
5547
            $run eval "$cmd" || exit $?
 
5548
          done
 
5549
          IFS="$save_ifs"
 
5550
        fi
 
5551
 
 
5552
        # Install the pseudo-library for information purposes.
 
5553
        name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
 
5554
        instname="$dir/$name"i
 
5555
        $show "$install_prog $instname $destdir/$name"
 
5556
        $run eval "$install_prog $instname $destdir/$name" || exit $?
 
5557
 
 
5558
        # Maybe install the static library, too.
 
5559
        test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
 
5560
        ;;
 
5561
 
 
5562
      *.lo)
 
5563
        # Install (i.e. copy) a libtool object.
 
5564
 
 
5565
        # Figure out destination file name, if it wasn't already specified.
 
5566
        if test -n "$destname"; then
 
5567
          destfile="$destdir/$destname"
 
5568
        else
 
5569
          destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
 
5570
          destfile="$destdir/$destfile"
 
5571
        fi
 
5572
 
 
5573
        # Deduce the name of the destination old-style object file.
 
5574
        case $destfile in
 
5575
        *.lo)
 
5576
          staticdest=`$echo "X$destfile" | $Xsed -e "$lo2o"`
 
5577
          ;;
 
5578
        *.$objext)
 
5579
          staticdest="$destfile"
 
5580
          destfile=
 
5581
          ;;
 
5582
        *)
 
5583
          $echo "$modename: cannot copy a libtool object to \`$destfile'" 1>&2
 
5584
          $echo "$help" 1>&2
 
5585
          exit $EXIT_FAILURE
 
5586
          ;;
 
5587
        esac
 
5588
 
 
5589
        # Install the libtool object if requested.
 
5590
        if test -n "$destfile"; then
 
5591
          $show "$install_prog $file $destfile"
 
5592
          $run eval "$install_prog $file $destfile" || exit $?
 
5593
        fi
 
5594
 
 
5595
        # Install the old object if enabled.
 
5596
        if test "$build_old_libs" = yes; then
 
5597
          # Deduce the name of the old-style object file.
 
5598
          staticobj=`$echo "X$file" | $Xsed -e "$lo2o"`
 
5599
 
 
5600
          $show "$install_prog $staticobj $staticdest"
 
5601
          $run eval "$install_prog \$staticobj \$staticdest" || exit $?
 
5602
        fi
 
5603
        exit $EXIT_SUCCESS
 
5604
        ;;
 
5605
 
 
5606
      *)
 
5607
        # Figure out destination file name, if it wasn't already specified.
 
5608
        if test -n "$destname"; then
 
5609
          destfile="$destdir/$destname"
 
5610
        else
 
5611
          destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
 
5612
          destfile="$destdir/$destfile"
 
5613
        fi
 
5614
 
 
5615
        # If the file is missing, and there is a .exe on the end, strip it
 
5616
        # because it is most likely a libtool script we actually want to
 
5617
        # install
 
5618
        stripped_ext=""
 
5619
        case $file in
 
5620
          *.exe)
 
5621
            if test ! -f "$file"; then
 
5622
              file=`$echo $file|${SED} 's,.exe$,,'`
 
5623
              stripped_ext=".exe"
 
5624
            fi
 
5625
            ;;
 
5626
        esac
 
5627
 
 
5628
        # Do a test to see if this is really a libtool program.
 
5629
        case $host in
 
5630
        *cygwin*|*mingw*)
 
5631
            wrapper=`$echo $file | ${SED} -e 's,.exe$,,'`
 
5632
            ;;
 
5633
        *)
 
5634
            wrapper=$file
 
5635
            ;;
 
5636
        esac
 
5637
        if (${SED} -e '4q' $wrapper | grep "^# Generated by .*$PACKAGE")>/dev/null 2>&1; then
 
5638
          notinst_deplibs=
 
5639
          relink_command=
 
5640
 
 
5641
          # To insure that "foo" is sourced, and not "foo.exe",
 
5642
          # finese the cygwin/MSYS system by explicitly sourcing "foo."
 
5643
          # which disallows the automatic-append-.exe behavior.
 
5644
          case $build in
 
5645
          *cygwin* | *mingw*) wrapperdot=${wrapper}. ;;
 
5646
          *) wrapperdot=${wrapper} ;;
 
5647
          esac
 
5648
          # If there is no directory component, then add one.
 
5649
          case $file in
 
5650
          */* | *\\*) . ${wrapperdot} ;;
 
5651
          *) . ./${wrapperdot} ;;
 
5652
          esac
 
5653
 
 
5654
          # Check the variables that should have been set.
 
5655
          if test -z "$notinst_deplibs"; then
 
5656
            $echo "$modename: invalid libtool wrapper script \`$wrapper'" 1>&2
 
5657
            exit $EXIT_FAILURE
 
5658
          fi
 
5659
 
 
5660
          finalize=yes
 
5661
          for lib in $notinst_deplibs; do
 
5662
            # Check to see that each library is installed.
 
5663
            libdir=
 
5664
            if test -f "$lib"; then
 
5665
              # If there is no directory component, then add one.
 
5666
              case $lib in
 
5667
              */* | *\\*) . $lib ;;
 
5668
              *) . ./$lib ;;
 
5669
              esac
 
5670
            fi
 
5671
            libfile="$libdir/"`$echo "X$lib" | $Xsed -e 's%^.*/%%g'` ### testsuite: skip nested quoting test
 
5672
            if test -n "$libdir" && test ! -f "$libfile"; then
 
5673
              $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2
 
5674
              finalize=no
 
5675
            fi
 
5676
          done
 
5677
 
 
5678
          relink_command=
 
5679
          # To insure that "foo" is sourced, and not "foo.exe",
 
5680
          # finese the cygwin/MSYS system by explicitly sourcing "foo."
 
5681
          # which disallows the automatic-append-.exe behavior.
 
5682
          case $build in
 
5683
          *cygwin* | *mingw*) wrapperdot=${wrapper}. ;;
 
5684
          *) wrapperdot=${wrapper} ;;
 
5685
          esac
 
5686
          # If there is no directory component, then add one.
 
5687
          case $file in
 
5688
          */* | *\\*) . ${wrapperdot} ;;
 
5689
          *) . ./${wrapperdot} ;;
 
5690
          esac
 
5691
 
 
5692
          outputname=
 
5693
          if test "$fast_install" = no && test -n "$relink_command"; then
 
5694
            if test "$finalize" = yes && test -z "$run"; then
 
5695
              tmpdir="/tmp"
 
5696
              test -n "$TMPDIR" && tmpdir="$TMPDIR"
 
5697
              tmpdir="$tmpdir/libtool-$$"
 
5698
              save_umask=`umask`
 
5699
              umask 0077
 
5700
              if $mkdir "$tmpdir"; then
 
5701
                umask $save_umask
 
5702
              else
 
5703
                umask $save_umask
 
5704
                $echo "$modename: error: cannot create temporary directory \`$tmpdir'" 1>&2
 
5705
                continue
 
5706
              fi
 
5707
              file=`$echo "X$file$stripped_ext" | $Xsed -e 's%^.*/%%'`
 
5708
              outputname="$tmpdir/$file"
 
5709
              # Replace the output file specification.
 
5710
              relink_command=`$echo "X$relink_command" | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g'`
 
5711
 
 
5712
              $show "$relink_command"
 
5713
              if $run eval "$relink_command"; then :
 
5714
              else
 
5715
                $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2
 
5716
                ${rm}r "$tmpdir"
 
5717
                continue
 
5718
              fi
 
5719
              file="$outputname"
 
5720
            else
 
5721
              $echo "$modename: warning: cannot relink \`$file'" 1>&2
 
5722
            fi
 
5723
          else
 
5724
            # Install the binary that we compiled earlier.
 
5725
            file=`$echo "X$file$stripped_ext" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"`
 
5726
          fi
 
5727
        fi
 
5728
 
 
5729
        # remove .exe since cygwin /usr/bin/install will append another
 
5730
        # one anyways
 
5731
        case $install_prog,$host in
 
5732
        */usr/bin/install*,*cygwin*)
 
5733
          case $file:$destfile in
 
5734
          *.exe:*.exe)
 
5735
            # this is ok
 
5736
            ;;
 
5737
          *.exe:*)
 
5738
            destfile=$destfile.exe
 
5739
            ;;
 
5740
          *:*.exe)
 
5741
            destfile=`$echo $destfile | ${SED} -e 's,.exe$,,'`
 
5742
            ;;
 
5743
          esac
 
5744
          ;;
 
5745
        esac
 
5746
        $show "$install_prog$stripme $file $destfile"
 
5747
        $run eval "$install_prog\$stripme \$file \$destfile" || exit $?
 
5748
        test -n "$outputname" && ${rm}r "$tmpdir"
 
5749
        ;;
 
5750
      esac
 
5751
    done
 
5752
 
 
5753
    for file in $staticlibs; do
 
5754
      name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
 
5755
 
 
5756
      # Set up the ranlib parameters.
 
5757
      oldlib="$destdir/$name"
 
5758
 
 
5759
      $show "$install_prog $file $oldlib"
 
5760
      $run eval "$install_prog \$file \$oldlib" || exit $?
 
5761
 
 
5762
      if test -n "$stripme" && test -n "$old_striplib"; then
 
5763
        $show "$old_striplib $oldlib"
 
5764
        $run eval "$old_striplib $oldlib" || exit $?
 
5765
      fi
 
5766
 
 
5767
      # Do each command in the postinstall commands.
 
5768
      cmds=$old_postinstall_cmds
 
5769
      save_ifs="$IFS"; IFS='~'
 
5770
      for cmd in $cmds; do
 
5771
        IFS="$save_ifs"
 
5772
        eval cmd=\"$cmd\"
 
5773
        $show "$cmd"
 
5774
        $run eval "$cmd" || exit $?
 
5775
      done
 
5776
      IFS="$save_ifs"
 
5777
    done
 
5778
 
 
5779
    if test -n "$future_libdirs"; then
 
5780
      $echo "$modename: warning: remember to run \`$progname --finish$future_libdirs'" 1>&2
 
5781
    fi
 
5782
 
 
5783
    if test -n "$current_libdirs"; then
 
5784
      # Maybe just do a dry run.
 
5785
      test -n "$run" && current_libdirs=" -n$current_libdirs"
 
5786
      exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs'
 
5787
    else
 
5788
      exit $EXIT_SUCCESS
 
5789
    fi
 
5790
    ;;
 
5791
 
 
5792
  # libtool finish mode
 
5793
  finish)
 
5794
    modename="$modename: finish"
 
5795
    libdirs="$nonopt"
 
5796
    admincmds=
 
5797
 
 
5798
    if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
 
5799
      for dir
 
5800
      do
 
5801
        libdirs="$libdirs $dir"
 
5802
      done
 
5803
 
 
5804
      for libdir in $libdirs; do
 
5805
        if test -n "$finish_cmds"; then
 
5806
          # Do each command in the finish commands.
 
5807
          cmds=$finish_cmds
 
5808
          save_ifs="$IFS"; IFS='~'
 
5809
          for cmd in $cmds; do
 
5810
            IFS="$save_ifs"
 
5811
            eval cmd=\"$cmd\"
 
5812
            $show "$cmd"
 
5813
            $run eval "$cmd" || admincmds="$admincmds
 
5814
       $cmd"
 
5815
          done
 
5816
          IFS="$save_ifs"
 
5817
        fi
 
5818
        if test -n "$finish_eval"; then
 
5819
          # Do the single finish_eval.
 
5820
          eval cmds=\"$finish_eval\"
 
5821
          $run eval "$cmds" || admincmds="$admincmds
 
5822
       $cmds"
 
5823
        fi
 
5824
      done
 
5825
    fi
 
5826
 
 
5827
    # Exit here if they wanted silent mode.
 
5828
    test "$show" = : && exit $EXIT_SUCCESS
 
5829
 
 
5830
    $echo "----------------------------------------------------------------------"
 
5831
    $echo "Libraries have been installed in:"
 
5832
    for libdir in $libdirs; do
 
5833
      $echo "   $libdir"
 
5834
    done
 
5835
    $echo
 
5836
    $echo "If you ever happen to want to link against installed libraries"
 
5837
    $echo "in a given directory, LIBDIR, you must either use libtool, and"
 
5838
    $echo "specify the full pathname of the library, or use the \`-LLIBDIR'"
 
5839
    $echo "flag during linking and do at least one of the following:"
 
5840
    if test -n "$shlibpath_var"; then
 
5841
      $echo "   - add LIBDIR to the \`$shlibpath_var' environment variable"
 
5842
      $echo "     during execution"
 
5843
    fi
 
5844
    if test -n "$runpath_var"; then
 
5845
      $echo "   - add LIBDIR to the \`$runpath_var' environment variable"
 
5846
      $echo "     during linking"
 
5847
    fi
 
5848
    if test -n "$hardcode_libdir_flag_spec"; then
 
5849
      libdir=LIBDIR
 
5850
      eval flag=\"$hardcode_libdir_flag_spec\"
 
5851
 
 
5852
      $echo "   - use the \`$flag' linker flag"
 
5853
    fi
 
5854
    if test -n "$admincmds"; then
 
5855
      $echo "   - have your system administrator run these commands:$admincmds"
 
5856
    fi
 
5857
    if test -f /etc/ld.so.conf; then
 
5858
      $echo "   - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
 
5859
    fi
 
5860
    $echo
 
5861
    $echo "See any operating system documentation about shared libraries for"
 
5862
    $echo "more information, such as the ld(1) and ld.so(8) manual pages."
 
5863
    $echo "----------------------------------------------------------------------"
 
5864
    exit $EXIT_SUCCESS
 
5865
    ;;
 
5866
 
 
5867
  # libtool execute mode
 
5868
  execute)
 
5869
    modename="$modename: execute"
 
5870
 
 
5871
    # The first argument is the command name.
 
5872
    cmd="$nonopt"
 
5873
    if test -z "$cmd"; then
 
5874
      $echo "$modename: you must specify a COMMAND" 1>&2
 
5875
      $echo "$help"
 
5876
      exit $EXIT_FAILURE
 
5877
    fi
 
5878
 
 
5879
    # Handle -dlopen flags immediately.
 
5880
    for file in $execute_dlfiles; do
 
5881
      if test ! -f "$file"; then
 
5882
        $echo "$modename: \`$file' is not a file" 1>&2
 
5883
        $echo "$help" 1>&2
 
5884
        exit $EXIT_FAILURE
 
5885
      fi
 
5886
 
 
5887
      dir=
 
5888
      case $file in
 
5889
      *.la)
 
5890
        # Check to see that this really is a libtool archive.
 
5891
        if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
 
5892
        else
 
5893
          $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
 
5894
          $echo "$help" 1>&2
 
5895
          exit $EXIT_FAILURE
 
5896
        fi
 
5897
 
 
5898
        # Read the libtool library.
 
5899
        dlname=
 
5900
        library_names=
 
5901
 
 
5902
        # If there is no directory component, then add one.
 
5903
        case $file in
 
5904
        */* | *\\*) . $file ;;
 
5905
        *) . ./$file ;;
 
5906
        esac
 
5907
 
 
5908
        # Skip this library if it cannot be dlopened.
 
5909
        if test -z "$dlname"; then
 
5910
          # Warn if it was a shared library.
 
5911
          test -n "$library_names" && $echo "$modename: warning: \`$file' was not linked with \`-export-dynamic'"
 
5912
          continue
 
5913
        fi
 
5914
 
 
5915
        dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
 
5916
        test "X$dir" = "X$file" && dir=.
 
5917
 
 
5918
        if test -f "$dir/$objdir/$dlname"; then
 
5919
          dir="$dir/$objdir"
 
5920
        else
 
5921
          $echo "$modename: cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" 1>&2
 
5922
          exit $EXIT_FAILURE
 
5923
        fi
 
5924
        ;;
 
5925
 
 
5926
      *.lo)
 
5927
        # Just add the directory containing the .lo file.
 
5928
        dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
 
5929
        test "X$dir" = "X$file" && dir=.
 
5930
        ;;
 
5931
 
 
5932
      *)
 
5933
        $echo "$modename: warning \`-dlopen' is ignored for non-libtool libraries and objects" 1>&2
 
5934
        continue
 
5935
        ;;
 
5936
      esac
 
5937
 
 
5938
      # Get the absolute pathname.
 
5939
      absdir=`cd "$dir" && pwd`
 
5940
      test -n "$absdir" && dir="$absdir"
 
5941
 
 
5942
      # Now add the directory to shlibpath_var.
 
5943
      if eval "test -z \"\$$shlibpath_var\""; then
 
5944
        eval "$shlibpath_var=\"\$dir\""
 
5945
      else
 
5946
        eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\""
 
5947
      fi
 
5948
    done
 
5949
 
 
5950
    # This variable tells wrapper scripts just to set shlibpath_var
 
5951
    # rather than running their programs.
 
5952
    libtool_execute_magic="$magic"
 
5953
 
 
5954
    # Check if any of the arguments is a wrapper script.
 
5955
    args=
 
5956
    for file
 
5957
    do
 
5958
      case $file in
 
5959
      -*) ;;
 
5960
      *)
 
5961
        # Do a test to see if this is really a libtool program.
 
5962
        if (${SED} -e '4q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
 
5963
          # If there is no directory component, then add one.
 
5964
          case $file in
 
5965
          */* | *\\*) . $file ;;
 
5966
          *) . ./$file ;;
 
5967
          esac
 
5968
 
 
5969
          # Transform arg to wrapped name.
 
5970
          file="$progdir/$program"
 
5971
        fi
 
5972
        ;;
 
5973
      esac
 
5974
      # Quote arguments (to preserve shell metacharacters).
 
5975
      file=`$echo "X$file" | $Xsed -e "$sed_quote_subst"`
 
5976
      args="$args \"$file\""
 
5977
    done
 
5978
 
 
5979
    if test -z "$run"; then
 
5980
      if test -n "$shlibpath_var"; then
 
5981
        # Export the shlibpath_var.
 
5982
        eval "export $shlibpath_var"
 
5983
      fi
 
5984
 
 
5985
      # Restore saved environment variables
 
5986
      if test "${save_LC_ALL+set}" = set; then
 
5987
        LC_ALL="$save_LC_ALL"; export LC_ALL
 
5988
      fi
 
5989
      if test "${save_LANG+set}" = set; then
 
5990
        LANG="$save_LANG"; export LANG
 
5991
      fi
 
5992
 
 
5993
      # Now prepare to actually exec the command.
 
5994
      exec_cmd="\$cmd$args"
 
5995
    else
 
5996
      # Display what would be done.
 
5997
      if test -n "$shlibpath_var"; then
 
5998
        eval "\$echo \"\$shlibpath_var=\$$shlibpath_var\""
 
5999
        $echo "export $shlibpath_var"
 
6000
      fi
 
6001
      $echo "$cmd$args"
 
6002
      exit $EXIT_SUCCESS
 
6003
    fi
 
6004
    ;;
 
6005
 
 
6006
  # libtool clean and uninstall mode
 
6007
  clean | uninstall)
 
6008
    modename="$modename: $mode"
 
6009
    rm="$nonopt"
8194
6010
    files=
8195
6011
    rmforce=
8196
6012
    exit_status=0
8202
6018
    for arg
8203
6019
    do
8204
6020
      case $arg in
8205
 
      -f) RM="$RM $arg"; rmforce=yes ;;
8206
 
      -*) RM="$RM $arg" ;;
 
6021
      -f) rm="$rm $arg"; rmforce=yes ;;
 
6022
      -*) rm="$rm $arg" ;;
8207
6023
      *) files="$files $arg" ;;
8208
6024
      esac
8209
6025
    done
8210
6026
 
8211
 
    test -z "$RM" && \
8212
 
      func_fatal_help "you must specify an RM program"
 
6027
    if test -z "$rm"; then
 
6028
      $echo "$modename: you must specify an RM program" 1>&2
 
6029
      $echo "$help" 1>&2
 
6030
      exit $EXIT_FAILURE
 
6031
    fi
8213
6032
 
8214
6033
    rmdirs=
8215
6034
 
8216
6035
    origobjdir="$objdir"
8217
6036
    for file in $files; do
8218
 
      func_dirname "$file" "" "."
8219
 
      dir="$func_dirname_result"
8220
 
      if test "X$dir" = X.; then
 
6037
      dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
 
6038
      if test "X$dir" = "X$file"; then
 
6039
        dir=.
8221
6040
        objdir="$origobjdir"
8222
6041
      else
8223
6042
        objdir="$dir/$origobjdir"
8224
6043
      fi
8225
 
      func_basename "$file"
8226
 
      name="$func_basename_result"
 
6044
      name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
8227
6045
      test "$mode" = uninstall && objdir="$dir"
8228
6046
 
8229
6047
      # Remember objdir for removal later, being careful to avoid duplicates
8235
6053
      fi
8236
6054
 
8237
6055
      # Don't error if the file doesn't exist and rm -f was used.
8238
 
      if { test -L "$file"; } >/dev/null 2>&1 ||
8239
 
         { test -h "$file"; } >/dev/null 2>&1 ||
8240
 
         test -f "$file"; then
 
6056
      if (test -L "$file") >/dev/null 2>&1 \
 
6057
        || (test -h "$file") >/dev/null 2>&1 \
 
6058
        || test -f "$file"; then
8241
6059
        :
8242
6060
      elif test -d "$file"; then
8243
6061
        exit_status=1
8251
6069
      case $name in
8252
6070
      *.la)
8253
6071
        # Possibly a libtool archive, so verify it.
8254
 
        if func_lalib_p "$file"; then
8255
 
          func_source $dir/$name
 
6072
        if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
 
6073
          . $dir/$name
8256
6074
 
8257
6075
          # Delete the libtool libraries and symlinks.
8258
6076
          for n in $library_names; do
8259
6077
            rmfiles="$rmfiles $objdir/$n"
8260
6078
          done
8261
6079
          test -n "$old_library" && rmfiles="$rmfiles $objdir/$old_library"
 
6080
          test "$mode" = clean && rmfiles="$rmfiles $objdir/$name $objdir/${name}i"
8262
6081
 
8263
 
          case "$mode" in
8264
 
          clean)
8265
 
            case "  $library_names " in
8266
 
            # "  " in the beginning catches empty $dlname
8267
 
            *" $dlname "*) ;;
8268
 
            *) rmfiles="$rmfiles $objdir/$dlname" ;;
8269
 
            esac
8270
 
            test -n "$libdir" && rmfiles="$rmfiles $objdir/$name $objdir/${name}i"
8271
 
            ;;
8272
 
          uninstall)
 
6082
          if test "$mode" = uninstall; then
8273
6083
            if test -n "$library_names"; then
8274
6084
              # Do each command in the postuninstall commands.
8275
 
              func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1'
 
6085
              cmds=$postuninstall_cmds
 
6086
              save_ifs="$IFS"; IFS='~'
 
6087
              for cmd in $cmds; do
 
6088
                IFS="$save_ifs"
 
6089
                eval cmd=\"$cmd\"
 
6090
                $show "$cmd"
 
6091
                $run eval "$cmd"
 
6092
                if test "$?" -ne 0 && test "$rmforce" != yes; then
 
6093
                  exit_status=1
 
6094
                fi
 
6095
              done
 
6096
              IFS="$save_ifs"
8276
6097
            fi
8277
6098
 
8278
6099
            if test -n "$old_library"; then
8279
6100
              # Do each command in the old_postuninstall commands.
8280
 
              func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1'
 
6101
              cmds=$old_postuninstall_cmds
 
6102
              save_ifs="$IFS"; IFS='~'
 
6103
              for cmd in $cmds; do
 
6104
                IFS="$save_ifs"
 
6105
                eval cmd=\"$cmd\"
 
6106
                $show "$cmd"
 
6107
                $run eval "$cmd"
 
6108
                if test "$?" -ne 0 && test "$rmforce" != yes; then
 
6109
                  exit_status=1
 
6110
                fi
 
6111
              done
 
6112
              IFS="$save_ifs"
8281
6113
            fi
8282
6114
            # FIXME: should reinstall the best remaining shared library.
8283
 
            ;;
8284
 
          esac
 
6115
          fi
8285
6116
        fi
8286
6117
        ;;
8287
6118
 
8288
6119
      *.lo)
8289
6120
        # Possibly a libtool object, so verify it.
8290
 
        if func_lalib_p "$file"; then
 
6121
        if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
8291
6122
 
8292
6123
          # Read the .lo file
8293
 
          func_source $dir/$name
 
6124
          . $dir/$name
8294
6125
 
8295
6126
          # Add PIC object to the list of files to remove.
8296
 
          if test -n "$pic_object" &&
8297
 
             test "$pic_object" != none; then
 
6127
          if test -n "$pic_object" \
 
6128
             && test "$pic_object" != none; then
8298
6129
            rmfiles="$rmfiles $dir/$pic_object"
8299
6130
          fi
8300
6131
 
8301
6132
          # Add non-PIC object to the list of files to remove.
8302
 
          if test -n "$non_pic_object" &&
8303
 
             test "$non_pic_object" != none; then
 
6133
          if test -n "$non_pic_object" \
 
6134
             && test "$non_pic_object" != none; then
8304
6135
            rmfiles="$rmfiles $dir/$non_pic_object"
8305
6136
          fi
8306
6137
        fi
8311
6142
          noexename=$name
8312
6143
          case $file in
8313
6144
          *.exe)
8314
 
            func_stripname '' '.exe' "$file"
8315
 
            file=$func_stripname_result
8316
 
            func_stripname '' '.exe' "$name"
8317
 
            noexename=$func_stripname_result
 
6145
            file=`$echo $file|${SED} 's,.exe$,,'`
 
6146
            noexename=`$echo $name|${SED} 's,.exe$,,'`
8318
6147
            # $file with .exe has already been added to rmfiles,
8319
6148
            # add $file without .exe
8320
6149
            rmfiles="$rmfiles $file"
8321
6150
            ;;
8322
6151
          esac
8323
6152
          # Do a test to see if this is a libtool program.
8324
 
          if func_ltwrapper_p "$file"; then
8325
 
            if func_ltwrapper_executable_p "$file"; then
8326
 
              func_ltwrapper_scriptname "$file"
8327
 
              relink_command=
8328
 
              func_source $func_ltwrapper_scriptname_result
8329
 
              rmfiles="$rmfiles $func_ltwrapper_scriptname_result"
8330
 
            else
8331
 
              relink_command=
8332
 
              func_source $dir/$noexename
8333
 
            fi
 
6153
          if (${SED} -e '4q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
 
6154
            relink_command=
 
6155
            . $dir/$noexename
8334
6156
 
8335
6157
            # note $name still contains .exe if it was in $file originally
8336
6158
            # as does the version of $file that was added into $rmfiles
8345
6167
        fi
8346
6168
        ;;
8347
6169
      esac
8348
 
      func_show_eval "$RM $rmfiles" 'exit_status=1'
 
6170
      $show "$rm $rmfiles"
 
6171
      $run $rm $rmfiles || exit_status=1
8349
6172
    done
8350
6173
    objdir="$origobjdir"
8351
6174
 
8352
6175
    # Try to remove the ${objdir}s in the directories where we deleted files
8353
6176
    for dir in $rmdirs; do
8354
6177
      if test -d "$dir"; then
8355
 
        func_show_eval "rmdir $dir >/dev/null 2>&1"
 
6178
        $show "rmdir $dir"
 
6179
        $run rmdir $dir >/dev/null 2>&1
8356
6180
      fi
8357
6181
    done
8358
6182
 
8359
6183
    exit $exit_status
8360
 
}
8361
 
 
8362
 
{ test "$mode" = uninstall || test "$mode" = clean; } &&
8363
 
    func_mode_uninstall ${1+"$@"}
8364
 
 
8365
 
test -z "$mode" && {
8366
 
  help="$generic_help"
8367
 
  func_fatal_help "you must specify a MODE"
8368
 
}
8369
 
 
8370
 
test -z "$exec_cmd" && \
8371
 
  func_fatal_help "invalid operation mode \`$mode'"
 
6184
    ;;
 
6185
 
 
6186
  "")
 
6187
    $echo "$modename: you must specify a MODE" 1>&2
 
6188
    $echo "$generic_help" 1>&2
 
6189
    exit $EXIT_FAILURE
 
6190
    ;;
 
6191
  esac
 
6192
 
 
6193
  if test -z "$exec_cmd"; then
 
6194
    $echo "$modename: invalid operation mode \`$mode'" 1>&2
 
6195
    $echo "$generic_help" 1>&2
 
6196
    exit $EXIT_FAILURE
 
6197
  fi
 
6198
fi # test -z "$show_help"
8372
6199
 
8373
6200
if test -n "$exec_cmd"; then
8374
 
  eval exec "$exec_cmd"
 
6201
  eval exec $exec_cmd
8375
6202
  exit $EXIT_FAILURE
8376
6203
fi
8377
6204
 
8378
 
exit $exit_status
8379
 
 
 
6205
# We need to display help for each of the modes.
 
6206
case $mode in
 
6207
"") $echo \
 
6208
"Usage: $modename [OPTION]... [MODE-ARG]...
 
6209
 
 
6210
Provide generalized library-building support services.
 
6211
 
 
6212
    --config          show all configuration variables
 
6213
    --debug           enable verbose shell tracing
 
6214
-n, --dry-run         display commands without modifying any files
 
6215
    --features        display basic configuration information and exit
 
6216
    --finish          same as \`--mode=finish'
 
6217
    --help            display this help message and exit
 
6218
    --mode=MODE       use operation mode MODE [default=inferred from MODE-ARGS]
 
6219
    --quiet           same as \`--silent'
 
6220
    --silent          don't print informational messages
 
6221
    --tag=TAG         use configuration variables from tag TAG
 
6222
    --version         print version information
 
6223
 
 
6224
MODE must be one of the following:
 
6225
 
 
6226
      clean           remove files from the build directory
 
6227
      compile         compile a source file into a libtool object
 
6228
      execute         automatically set library path, then run a program
 
6229
      finish          complete the installation of libtool libraries
 
6230
      install         install libraries or executables
 
6231
      link            create a library or an executable
 
6232
      uninstall       remove libraries from an installed directory
 
6233
 
 
6234
MODE-ARGS vary depending on the MODE.  Try \`$modename --help --mode=MODE' for
 
6235
a more detailed description of MODE.
 
6236
 
 
6237
Report bugs to <bug-libtool@gnu.org>."
 
6238
  exit $EXIT_SUCCESS
 
6239
  ;;
 
6240
 
 
6241
clean)
 
6242
  $echo \
 
6243
"Usage: $modename [OPTION]... --mode=clean RM [RM-OPTION]... FILE...
 
6244
 
 
6245
Remove files from the build directory.
 
6246
 
 
6247
RM is the name of the program to use to delete files associated with each FILE
 
6248
(typically \`/bin/rm').  RM-OPTIONS are options (such as \`-f') to be passed
 
6249
to RM.
 
6250
 
 
6251
If FILE is a libtool library, object or program, all the files associated
 
6252
with it are deleted. Otherwise, only FILE itself is deleted using RM."
 
6253
  ;;
 
6254
 
 
6255
compile)
 
6256
  $echo \
 
6257
"Usage: $modename [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE
 
6258
 
 
6259
Compile a source file into a libtool library object.
 
6260
 
 
6261
This mode accepts the following additional options:
 
6262
 
 
6263
  -o OUTPUT-FILE    set the output file name to OUTPUT-FILE
 
6264
  -prefer-pic       try to building PIC objects only
 
6265
  -prefer-non-pic   try to building non-PIC objects only
 
6266
  -static           always build a \`.o' file suitable for static linking
 
6267
 
 
6268
COMPILE-COMMAND is a command to be used in creating a \`standard' object file
 
6269
from the given SOURCEFILE.
 
6270
 
 
6271
The output file name is determined by removing the directory component from
 
6272
SOURCEFILE, then substituting the C source code suffix \`.c' with the
 
6273
library object suffix, \`.lo'."
 
6274
  ;;
 
6275
 
 
6276
execute)
 
6277
  $echo \
 
6278
"Usage: $modename [OPTION]... --mode=execute COMMAND [ARGS]...
 
6279
 
 
6280
Automatically set library path, then run a program.
 
6281
 
 
6282
This mode accepts the following additional options:
 
6283
 
 
6284
  -dlopen FILE      add the directory containing FILE to the library path
 
6285
 
 
6286
This mode sets the library path environment variable according to \`-dlopen'
 
6287
flags.
 
6288
 
 
6289
If any of the ARGS are libtool executable wrappers, then they are translated
 
6290
into their corresponding uninstalled binary, and any of their required library
 
6291
directories are added to the library path.
 
6292
 
 
6293
Then, COMMAND is executed, with ARGS as arguments."
 
6294
  ;;
 
6295
 
 
6296
finish)
 
6297
  $echo \
 
6298
"Usage: $modename [OPTION]... --mode=finish [LIBDIR]...
 
6299
 
 
6300
Complete the installation of libtool libraries.
 
6301
 
 
6302
Each LIBDIR is a directory that contains libtool libraries.
 
6303
 
 
6304
The commands that this mode executes may require superuser privileges.  Use
 
6305
the \`--dry-run' option if you just want to see what would be executed."
 
6306
  ;;
 
6307
 
 
6308
install)
 
6309
  $echo \
 
6310
"Usage: $modename [OPTION]... --mode=install INSTALL-COMMAND...
 
6311
 
 
6312
Install executables or libraries.
 
6313
 
 
6314
INSTALL-COMMAND is the installation command.  The first component should be
 
6315
either the \`install' or \`cp' program.
 
6316
 
 
6317
The rest of the components are interpreted as arguments to that command (only
 
6318
BSD-compatible install options are recognized)."
 
6319
  ;;
 
6320
 
 
6321
link)
 
6322
  $echo \
 
6323
"Usage: $modename [OPTION]... --mode=link LINK-COMMAND...
 
6324
 
 
6325
Link object files or libraries together to form another library, or to
 
6326
create an executable program.
 
6327
 
 
6328
LINK-COMMAND is a command using the C compiler that you would use to create
 
6329
a program from several object files.
 
6330
 
 
6331
The following components of LINK-COMMAND are treated specially:
 
6332
 
 
6333
  -all-static       do not do any dynamic linking at all
 
6334
  -avoid-version    do not add a version suffix if possible
 
6335
  -dlopen FILE      \`-dlpreopen' FILE if it cannot be dlopened at runtime
 
6336
  -dlpreopen FILE   link in FILE and add its symbols to lt_preloaded_symbols
 
6337
  -export-dynamic   allow symbols from OUTPUT-FILE to be resolved with dlsym(3)
 
6338
  -export-symbols SYMFILE
 
6339
                    try to export only the symbols listed in SYMFILE
 
6340
  -export-symbols-regex REGEX
 
6341
                    try to export only the symbols matching REGEX
 
6342
  -LLIBDIR          search LIBDIR for required installed libraries
 
6343
  -lNAME            OUTPUT-FILE requires the installed library libNAME
 
6344
  -module           build a library that can dlopened
 
6345
  -no-fast-install  disable the fast-install mode
 
6346
  -no-install       link a not-installable executable
 
6347
  -no-undefined     declare that a library does not refer to external symbols
 
6348
  -o OUTPUT-FILE    create OUTPUT-FILE from the specified objects
 
6349
  -objectlist FILE  Use a list of object files found in FILE to specify objects
 
6350
  -precious-files-regex REGEX
 
6351
                    don't remove output files matching REGEX
 
6352
  -release RELEASE  specify package release information
 
6353
  -rpath LIBDIR     the created library will eventually be installed in LIBDIR
 
6354
  -R[ ]LIBDIR       add LIBDIR to the runtime path of programs and libraries
 
6355
  -static           do not do any dynamic linking of libtool libraries
 
6356
  -version-info CURRENT[:REVISION[:AGE]]
 
6357
                    specify library version info [each variable defaults to 0]
 
6358
 
 
6359
All other options (arguments beginning with \`-') are ignored.
 
6360
 
 
6361
Every other argument is treated as a filename.  Files ending in \`.la' are
 
6362
treated as uninstalled libtool libraries, other files are standard or library
 
6363
object files.
 
6364
 
 
6365
If the OUTPUT-FILE ends in \`.la', then a libtool library is created,
 
6366
only library objects (\`.lo' files) may be specified, and \`-rpath' is
 
6367
required, except when creating a convenience library.
 
6368
 
 
6369
If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created
 
6370
using \`ar' and \`ranlib', or on Windows using \`lib'.
 
6371
 
 
6372
If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file
 
6373
is created, otherwise an executable program is created."
 
6374
  ;;
 
6375
 
 
6376
uninstall)
 
6377
  $echo \
 
6378
"Usage: $modename [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...
 
6379
 
 
6380
Remove libraries from an installation directory.
 
6381
 
 
6382
RM is the name of the program to use to delete files associated with each FILE
 
6383
(typically \`/bin/rm').  RM-OPTIONS are options (such as \`-f') to be passed
 
6384
to RM.
 
6385
 
 
6386
If FILE is a libtool library, all the files associated with it are deleted.
 
6387
Otherwise, only FILE itself is deleted using RM."
 
6388
  ;;
 
6389
 
 
6390
*)
 
6391
  $echo "$modename: invalid operation mode \`$mode'" 1>&2
 
6392
  $echo "$help" 1>&2
 
6393
  exit $EXIT_FAILURE
 
6394
  ;;
 
6395
esac
 
6396
 
 
6397
$echo
 
6398
$echo "Try \`$modename --help' for more information about other modes."
 
6399
 
 
6400
exit $EXIT_SUCCESS
8380
6401
 
8381
6402
# The TAGs below are defined such that we never get into a situation
8382
6403
# in which we disable both kinds of libraries.  Given conflicting
8395
6416
# ### END LIBTOOL TAG CONFIG: disable-shared
8396
6417
 
8397
6418
# ### BEGIN LIBTOOL TAG CONFIG: disable-static
8398
 
build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac`
 
6419
build_old_libs=`case $build_libtool_libs in yes) $echo no;; *) $echo yes;; esac`
8399
6420
# ### END LIBTOOL TAG CONFIG: disable-static
8400
6421
 
8401
6422
# Local Variables:
8402
6423
# mode:shell-script
8403
6424
# sh-indentation:2
8404
6425
# End:
8405
 
# vi:sw=2
8406