~ubuntu-branches/ubuntu/maverick/gnome-session/maverick

« back to all changes in this revision

Viewing changes to ltmain.sh

  • Committer: Bazaar Package Importer
  • Author(s): Chris Coulson
  • Date: 2009-05-08 19:54:30 UTC
  • mfrom: (1.2.4 upstream)
  • mto: This revision was merged to the branch mainline in revision 112.
  • Revision ID: james.westby@ubuntu.com-20090508195430-emwvafeu8f4upq97
Tags: upstream-2.26.1
ImportĀ upstreamĀ versionĀ 2.26.1

Show diffs side-by-side

added added

removed removed

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