ltmain.sh 158 KB
Newer Older
Jason Merrill committed
1
# ltmain.sh - Provide generalized library-building support services.
#  
Jeff Law committed
2 3
# NOTE: Changing this file will not affect anything until you rerun ltconfig.
#
4 5
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001
# Free Software Foundation, Inc.
Jason Merrill committed
6
# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
Jason Merrill committed
7 8 9 10 11 12 13 14 15 16 17 18 19
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
20
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Jason Merrill committed
21 22 23 24 25 26
#
# As a special exception to the GNU General Public License, if you
# distribute this file as part of a program that contains a
# configuration script generated by Autoconf, you may include it under
# the same distribution terms that you use for the rest of that program.

27 28 29 30
# Check that we have a working $echo.
if test "X$1" = X--no-reexec; then
  # Discard the --no-reexec flag, and continue.
  shift
31
elif test "X$1" = X--fallback-echo; then
Jason Merrill committed
32 33
  # Avoid inline document here, it may be left over
  :
34 35 36 37 38 39 40 41
elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then
  # Yippee, $echo works!
  :
else
  # Restart under the correct shell, and then maybe $echo will work.
  exec $SHELL "$0" --no-reexec ${1+"$@"}
fi

Jason Merrill committed
42 43 44 45 46 47 48 49 50
if test "X$1" = X--fallback-echo; then
  # used as fallback echo
  shift
  cat <<EOF
$*
EOF
  exit 0
fi

Jason Merrill committed
51
# The name of this program.
#  
Jeff Law committed
52 53
progname=`$echo "$0" | sed 's%^.*/%%'`
modename="$progname"
Jason Merrill committed
54 55 56 57

# Constants.
PROGRAM=ltmain.sh
PACKAGE=libtool
58 59
VERSION=1.4a-GCC3.0
TIMESTAMP=" (1.641.2.256 2001/05/28 20:09:07 with GCC-local changes)"
Jason Merrill committed
60 61 62 63 64 65 66 67

default_mode=
help="Try \`$progname --help' for more information."
magic="%%%MAGIC variable%%%"
mkdir="mkdir"
mv="mv -f"
rm="rm -f"

#  
Jeff Law committed
68 69
# Sed substitution that helps us do robust quoting.  It backslashifies
# metacharacters that are still active within double-quoted strings.
70
Xsed='sed -e 1s/^X//'
#  
Jeff Law committed
71
sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g'
72
SP2NL='tr \040 \012'
Jason Merrill committed
73
NL2SP='tr \015\012 \040\040'
#  
Jeff Law committed
74 75 76 77 78

# NLS nuisances.
# Only set LANG and LC_ALL to C if already set.
# These must not be set unconditionally because not all systems understand
# e.g. LANG=C (notably SCO).
79 80 81 82 83 84 85
# We save the old values to restore during execute mode.
if test "${LC_ALL+set}" = set; then
  save_LC_ALL="$LC_ALL"; LC_ALL=C; export LC_ALL
fi
if test "${LANG+set}" = set; then
  save_LANG="$LANG"; LANG=C; export LANG
fi
#  
Jeff Law committed
86

Jason Merrill committed
87
if test "$LTCONFIG_VERSION" != "$VERSION"; then
#  
Jeff Law committed
88
  echo "$modename: ltconfig version \`$LTCONFIG_VERSION' does not match $PROGRAM version \`$VERSION'" 1>&2
Jason Merrill committed
89 90 91 92 93
  echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2
  exit 1
fi

if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then
#  
Jeff Law committed
94
  echo "$modename: not configured to build any kind of library" 1>&2
Jason Merrill committed
95 96 97 98 99 100 101 102 103 104
  echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2
  exit 1
fi

# Global variables.
mode=$default_mode
nonopt=
prev=
prevopt=
run=
#  
Jeff Law committed
105
show="$echo"
Jason Merrill committed
106
show_help=
#  
Jeff Law committed
107
execute_dlfiles=
108
lo2o="s/\\.lo\$/.${objext}/"
Jason Merrill committed
109
o2lo="s/\\.${objext}\$/.lo/"
110
taglist=
Jason Merrill committed
111 112 113 114 115 116 117

# Parse our command line options once, thoroughly.
while test $# -gt 0
do
  arg="$1"
  shift

118
  case $arg in
#  
Jeff Law committed
119
  -*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;;
Jason Merrill committed
120 121 122 123 124
  *) optarg= ;;
  esac

  # If the previous option needs an argument, assign it.
  if test -n "$prev"; then
125
    case $prev in
#  
Jeff Law committed
126
    execute_dlfiles)
127
      execute_dlfiles="$execute_dlfiles $arg"
#  
Jeff Law committed
128
      ;;
129 130 131 132
    tag)
      tagname="$arg"

      # Check whether tagname contains only valid characters
133
      case $tagname in
134 135 136 137 138 139
      *[!-_A-Za-z0-9,/]*)
	echo "$progname: invalid tag name: $tagname" 1>&2
	exit 1
        ;;
      esac

140 141 142 143
      case $tagname in
      CC)
	# Don't test for the "default" C tag, as we know, it's there, but
	# not specially marked.
144
	taglist="$taglist $tagname"
145 146 147 148 149 150 151 152 153 154 155
	;;
      *)
        if grep "^### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "$0" > /dev/null; then
          taglist="$taglist $tagname"
	  # Evaluate the configuration.
	  eval "`sed -n -e '/^### BEGIN LIBTOOL TAG CONFIG: '$tagname'$/,/^### END LIBTOOL TAG CONFIG: '$tagname'$/p' < $0`"
        else
	  echo "$progname: ignoring unknown tag $tagname" 1>&2
        fi
        ;;
      esac
156
      ;;
#  
Jeff Law committed
157 158 159 160 161
    *)
      eval "$prev=\$arg"
      ;;
    esac

Jason Merrill committed
162 163 164 165 166 167
    prev=
    prevopt=
    continue
  fi

  # Have we seen a non-optional argument yet?
168
  case $arg in
Jason Merrill committed
169 170 171 172 173
  --help)
    show_help=yes
    ;;

  --version)
174
    echo "$PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP"
Jason Merrill committed
175 176 177
    exit 0
    ;;

#  
Jeff Law committed
178
  --config)
179 180 181 182 183
    sed -n -e '/^### BEGIN LIBTOOL CONFIG/,/^### END LIBTOOL CONFIG/p' < "$0"
    # Now print the configurations for the tags.
    for tagname in $taglist; do
      sed -n -e "/^### BEGIN LIBTOOL TAG CONFIG: $tagname$/,/^### END LIBTOOL TAG CONFIG: $tagname$/p" < "$0"
    done
#  
Jeff Law committed
184 185 186 187 188 189 190 191
    exit 0
    ;;

  --debug)
    echo "$progname: enabling shell trace mode"
    set -x
    ;;

Jason Merrill committed
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
  --dry-run | -n)
    run=:
    ;;

  --features)
    echo "host: $host"
    if test "$build_libtool_libs" = yes; then
      echo "enable shared libraries"
    else
      echo "disable shared libraries"
    fi
    if test "$build_old_libs" = yes; then
      echo "enable static libraries"
    else
      echo "disable static libraries"
    fi
    exit 0
    ;;

  --finish) mode="finish" ;;

  --mode) prevopt="--mode" prev=mode ;;
  --mode=*) mode="$optarg" ;;

#  
Jeff Law committed
216 217 218 219
  --quiet | --silent)
    show=:
    ;;

220 221 222 223 224 225 226
  --tag) prevopt="--tag" prev=tag ;;
  --tag=*)
    set tag "$optarg" ${1+"$@"}
    shift
    prev=tag
    ;;

#  
Jeff Law committed
227 228 229 230 231
  -dlopen)
    prevopt="-dlopen"
    prev=execute_dlfiles
    ;;

Jason Merrill committed
232
  -*)
#  
Jeff Law committed
233 234
    $echo "$modename: unrecognized option \`$arg'" 1>&2
    $echo "$help" 1>&2
Jason Merrill committed
235 236 237 238 239 240 241 242 243 244 245
    exit 1
    ;;

  *)
    nonopt="$arg"
    break
    ;;
  esac
done

if test -n "$prevopt"; then
#  
Jeff Law committed
246 247
  $echo "$modename: option \`$prevopt' requires an argument" 1>&2
  $echo "$help" 1>&2
Jason Merrill committed
248 249 250
  exit 1
fi

251 252 253 254 255
# If this variable is set in any of the actions, the command in it
# will be execed at the end.  This prevents here-documents from being
# left over by shells.
exec_cmd=

Jason Merrill committed
256 257 258 259
if test -z "$show_help"; then

  # Infer the operation mode.
  if test -z "$mode"; then
260
    case $nonopt in
#  
Jeff Law committed
261
    *cc | *++ | gcc* | *-gcc*)
Jason Merrill committed
262 263 264
      mode=link
      for arg
      do
265
	case $arg in
266 267 268 269 270
	-c)
	   mode=compile
	   break
	   ;;
	esac
Jason Merrill committed
271 272
      done
      ;;
273
    *db | *dbx | *strace | *truss)
#  
Jeff Law committed
274 275 276
      mode=execute
      ;;
    *install*|cp|mv)
Jason Merrill committed
277 278 279 280 281 282
      mode=install
      ;;
    *rm)
      mode=uninstall
      ;;
    *)
#  
Jeff Law committed
283 284 285
      # If we have no mode, but dlfiles were specified, then do execute mode.
      test -n "$execute_dlfiles" && mode=execute

Jason Merrill committed
286 287
      # Just use the default operation mode.
      if test -z "$mode"; then
288 289 290 291 292
	if test -n "$nonopt"; then
	  $echo "$modename: warning: cannot infer operation mode from \`$nonopt'" 1>&2
	else
	  $echo "$modename: warning: cannot infer operation mode without MODE-ARGS" 1>&2
	fi
Jason Merrill committed
293 294 295 296 297
      fi
      ;;
    esac
  fi

#  
Jeff Law committed
298 299 300 301 302 303 304
  # Only execute mode is allowed to have -dlopen flags.
  if test -n "$execute_dlfiles" && test "$mode" != execute; then
    $echo "$modename: unrecognized option \`-dlopen'" 1>&2
    $echo "$help" 1>&2
    exit 1
  fi

Jason Merrill committed
305 306
  # Change the help message to a mode-specific one.
  generic_help="$help"
#  
Jeff Law committed
307
  help="Try \`$modename --help --mode=$mode' for more information."
Jason Merrill committed
308 309

  # These modes are in order of execution frequency so that they run quickly.
310
  case $mode in
Jason Merrill committed
311 312
  # libtool compile mode
  compile)
#  
Jeff Law committed
313
    modename="$modename: compile"
Jason Merrill committed
314
    # Get the compilation command and the source file.
#  
Jeff Law committed
315
    base_compile=
316
    prev=
Jason Merrill committed
317
    lastarg=
#  
Jeff Law committed
318 319
    srcfile="$nonopt"
    suppress_output=
Jason Merrill committed
320

321
    user_target=no
Jason Merrill committed
322 323
    for arg
    do
324
      case $prev in
325 326 327 328 329 330
      "") ;;
      xcompiler)
	# Aesthetically quote the previous argument.
	prev=
	lastarg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`

331
	case $arg in
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
	# Double-quote args containing other shell metacharacters.
	# Many Bourne shells cannot handle close brackets correctly
	# in scan sets, so we specify it separately.
	*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
	  arg="\"$arg\""
	  ;;
	esac

	# Add the previous argument to base_compile.
	if test -z "$base_compile"; then
	  base_compile="$lastarg"
	else
	  base_compile="$base_compile $lastarg"
	fi
	continue
	;;
      esac

#  
Jeff Law committed
350
      # Accept any command-line options.
351
      case $arg in
#  
Jeff Law committed
352
      -o)
353 354 355 356 357
	if test "$user_target" != "no"; then
	  $echo "$modename: you cannot specify \`-o' more than once" 1>&2
	  exit 1
	fi
	user_target=next
#  
Jeff Law committed
358 359 360 361 362 363
	;;

      -static)
	build_old_libs=yes
	continue
	;;
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389

      -prefer-pic)
	pic_mode=yes
	continue
	;;

      -prefer-non-pic)
	pic_mode=no
	continue
	;;

      -Xcompiler)
	prev=xcompiler
	continue
	;;

      -Wc,*)
	args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"`
	lastarg=
	IFS="${IFS= 	}"; save_ifs="$IFS"; IFS=','
	for arg in $args; do
	  IFS="$save_ifs"

	  # Double-quote args containing other shell metacharacters.
	  # Many Bourne shells cannot handle close brackets correctly
	  # in scan sets, so we specify it separately.
390
	  case $arg in
391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
	    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
	    arg="\"$arg\""
	    ;;
	  esac
	  lastarg="$lastarg $arg"
	done
	IFS="$save_ifs"
	lastarg=`$echo "X$lastarg" | $Xsed -e "s/^ //"`

	# Add the arguments to base_compile.
	if test -z "$base_compile"; then
	  base_compile="$lastarg"
	else
	  base_compile="$base_compile $lastarg"
	fi
	continue
	;;
Jason Merrill committed
408 409
      esac

410
      case $user_target in
411 412 413 414 415 416 417 418 419 420 421 422 423
      next)
	# The next one is the -o target name
	user_target=yes
	continue
	;;
      yes)
	# We got the output file
	user_target=set
	libobj="$arg"
	continue
	;;
      esac

#  
Jeff Law committed
424 425 426 427 428 429 430 431 432 433 434 435
      # Accept the current argument as the source file.
      lastarg="$srcfile"
      srcfile="$arg"

      # Aesthetically quote the previous argument.

      # Backslashify any backslashes, double quotes, and dollar signs.
      # These are the only characters that are still specially
      # interpreted inside of double-quoted scrings.
      lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"`

      # Double-quote args containing other shell metacharacters.
436 437
      # Many Bourne shells cannot handle close brackets correctly
      # in scan sets, so we specify it separately.
438
      case $lastarg in
439
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
#  
Jeff Law committed
440 441 442 443 444 445 446 447 448 449
	lastarg="\"$lastarg\""
	;;
      esac

      # Add the previous argument to base_compile.
      if test -z "$base_compile"; then
	base_compile="$lastarg"
      else
	base_compile="$base_compile $lastarg"
      fi
Jason Merrill committed
450 451
    done

452
    case $user_target in
453 454 455 456 457 458 459 460 461 462 463
    set)
      ;;
    no)
      # Get the name of the library object.
      libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'`
      ;;
    *)
      $echo "$modename: you must specify a target with \`-o'" 1>&2
      exit 1
      ;;
    esac
Jason Merrill committed
464 465

    # Recognize several different file suffixes.
466 467
    # If the user specifies -o file.o, it is replaced with file.lo
    xform='[cCFSfmso]'
468
    case $libobj in
#  
Jeff Law committed
469 470 471 472 473
    *.ada) xform=ada ;;
    *.adb) xform=adb ;;
    *.ads) xform=ads ;;
    *.asm) xform=asm ;;
    *.c++) xform=c++ ;;
Jason Merrill committed
474
    *.cc) xform=cc ;;
475
    *.class) xform=class ;;
Jason Merrill committed
476 477 478
    *.cpp) xform=cpp ;;
    *.cxx) xform=cxx ;;
    *.f90) xform=f90 ;;
#  
Jeff Law committed
479
    *.for) xform=for ;;
480
    *.java) xform=java ;;
Jason Merrill committed
481 482
    esac

#  
Jeff Law committed
483
    libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"`
Jason Merrill committed
484

485
    case $libobj in
486
    *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;;
Jason Merrill committed
487
    *)
488
      $echo "$modename: cannot determine name of library object from \`$libobj'" 1>&2
Jason Merrill committed
489 490 491 492
      exit 1
      ;;
    esac

493 494 495 496 497 498 499 500 501
    # Infer tagged configuration to use if any are available and
    # if one wasn't chosen via the "--tag" command line option.
    # Only attempt this if the compiler in the base compile
    # command doesn't match the default compiler.
    if test -n "$available_tags" && test -z "$tagname"; then
      case $base_compile in
      "$CC "*) ;;
      # Blanks in the command may have been stripped by the calling shell,
      # but not from the CC environment variable when ltconfig was run.
502
      "`$echo $CC` "*) ;;
503 504 505 506 507 508 509 510 511 512 513 514 515
      *)
        for z in $available_tags; do
          if grep "^### BEGIN LIBTOOL TAG CONFIG: $z$" < "$0" > /dev/null; then
	    # Evaluate the configuration.
	    eval "`sed -n -e '/^### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^### END LIBTOOL TAG CONFIG: '$z'$/p' < $0`"
            case $base_compile in
	    "$CC "*)
              # The compiler in the base compile command matches
              # the one in the tagged configuration.
              # Assume this is the tagged configuration we want.
              tagname=$z
              break
              ;;
516
	    "`$echo $CC` "*)
517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545
	      tagname=$z
	      break
	      ;;
	    esac
          fi
        done
        # If $tagname still isn't set, then no tagged configuration
        # was found and let the user know that the "--tag" command
        # line option must be used.
        if test -z "$tagname"; then
          echo "$modename: unable to infer tagged configuration"
          echo "$modename: specify a tag with \`--tag'" 1>&2
	  exit 1
#        else
#          echo "$modename: using $tagname tagged configuration"
        fi
	;;
      esac
    fi

    objname=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`
    xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`
    if test "X$xdir" = "X$obj"; then
      xdir=
    else
      xdir=$xdir/
    fi
    lobj=${xdir}$objdir/$objname

Jason Merrill committed
546
    if test -z "$base_compile"; then
#  
Jeff Law committed
547 548
      $echo "$modename: you must specify a compilation command" 1>&2
      $echo "$help" 1>&2
Jason Merrill committed
549 550 551 552 553
      exit 1
    fi

    # Delete any leftover library objects.
    if test "$build_old_libs" = yes; then
554
      removelist="$obj $lobj $libobj ${libobj}T"
Jason Merrill committed
555
    else
556
      removelist="$lobj $libobj ${libobj}T"
557 558 559 560 561
    fi

    $run $rm $removelist
    trap "$run $rm $removelist; exit 1" 1 2 15

562
    # On Cygwin there's no "real" PIC flag so we must build both object types
563
    case $host_os in
564
    cygwin* | mingw* | pw32* | os2*)
565 566 567 568 569 570 571 572
      pic_mode=default
      ;;
    esac
    if test $pic_mode = no && test "$deplibs_check_method" != pass_all; then
      # non-PIC code in shared libraries is not supported
      pic_mode=default
    fi

573 574 575
    # Calculate the filename of the output object if compiler does
    # not support -o with -c
    if test "$compiler_c_o" = no; then
576
      output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext}
577 578 579 580
      lockfile="$output_obj.lock"
      removelist="$removelist $output_obj $lockfile"
      trap "$run $rm $removelist; exit 1" 1 2 15
    else
581
      output_obj=
582 583 584 585 586 587 588
      need_locks=no
      lockfile=
    fi

    # Lock this critical section if it is needed
    # We use this script file to make the link, it avoids creating a new file
    if test "$need_locks" = yes; then
589
      until $run ln "$0" "$lockfile" 2>/dev/null; do
590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609
	$show "Waiting for $lockfile to be removed"
	sleep 2
      done
    elif test "$need_locks" = warn; then
      if test -f "$lockfile"; then
	echo "\
*** ERROR, $lockfile exists and contains:
`cat $lockfile 2>/dev/null`

This indicates that another process is trying to use the same
temporary object file, and libtool could not work around it because
your compiler does not support \`-c' and \`-o' together.  If you
repeat this compilation, it may succeed, by chance, but you had better
avoid parallel builds (make -j) in this platform, or get a better
compiler."

	$run $rm $removelist
	exit 1
      fi
      echo $srcfile > "$lockfile"
Jason Merrill committed
610 611
    fi

612 613 614 615
    if test -n "$fix_srcfile_path"; then
      eval srcfile=\"$fix_srcfile_path\"
    fi

616 617 618 619 620 621 622 623 624 625 626 627 628 629
    $run $rm "$libobj" "${libobj}T"

    # Create a libtool object file (analogous to a ".la" file),
    # but don't create it if we're doing a dry run.
    test -z "$run" && cat > ${libobj}T <<EOF
# $libobj - a libtool object file
# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
#
# Please DO NOT delete this file!
# It is necessary for linking the library.

# Name of the PIC object.
EOF

Jason Merrill committed
630 631
    # Only build a PIC object if we are building libtool libraries.
    if test "$build_libtool_libs" = yes; then
#  
Jeff Law committed
632 633 634
      # Without this assignment, base_compile gets emptied.
      fbsd_hideous_sh_bug=$base_compile

635 636 637 638 639
      if test "$pic_mode" != no; then
	command="$base_compile $srcfile $pic_flag"
      else
	# Don't build PIC code
	command="$base_compile $srcfile"
640
      fi
641 642 643 644 645 646 647 648 649 650 651 652 653

      if test ! -d ${xdir}$objdir; then
	$show "$mkdir ${xdir}$objdir"
	$run $mkdir ${xdir}$objdir
	status=$?
	if test $status -ne 0 && test ! -d ${xdir}$objdir; then
	  exit $status
        fi
      fi 

      if test -z "$output_obj"; then
        # Place PIC objects in $objdir
        command="$command -o $lobj"
654 655
      fi

656 657
      $run $rm "$lobj" "$output_obj"

658 659
      $show "$command"
      if $run eval "$command"; then :
Jason Merrill committed
660
      else
661 662
	test -n "$output_obj" && $run $rm $removelist
	exit 1
Jason Merrill committed
663 664
      fi

665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685
      if test "$need_locks" = warn &&
	 test x"`cat $lockfile 2>/dev/null`" != x"$srcfile"; then
	echo "\
*** ERROR, $lockfile contains:
`cat $lockfile 2>/dev/null`

but it should contain:
$srcfile

This indicates that another process is trying to use the same
temporary object file, and libtool could not work around it because
your compiler does not support \`-c' and \`-o' together.  If you
repeat this compilation, it may succeed, by chance, but you had better
avoid parallel builds (make -j) in this platform, or get a better
compiler."

	$run $rm $removelist
	exit 1
      fi

      # Just move the object if needed, then go on to compile the next one
686 687 688
      if test -n "$output_obj" && test "x$output_obj" != "x$lobj"; then
	$show "$mv $output_obj $lobj"
	if $run $mv $output_obj $lobj; then :
689 690 691 692 693
	else
	  error=$?
	  $run $rm $removelist
	  exit $error
	fi
Jason Merrill committed
694 695
      fi

696 697 698
      # Append the name of the PIC object to the libtool object file.
      test -z "$run" && cat >> ${libobj}T <<EOF
pic_object='$objdir/$objname'
699

700
EOF
#  
Jeff Law committed
701 702 703

      # Allow error messages only from the first compilation.
      suppress_output=' >/dev/null 2>&1'
704 705 706 707 708 709 710
    else
      # No PIC object so indicate it doesn't exist in the libtool
      # object file.
      test -z "$run" && cat >> ${libobj}T <<EOF
pic_object=none

EOF
Jason Merrill committed
711 712 713 714
    fi

    # Only build a position-dependent object if we build old libraries.
    if test "$build_old_libs" = yes; then
715 716 717 718 719 720
      if test "$pic_mode" != yes; then
	# Don't build PIC code
	command="$base_compile $srcfile"
      else
	command="$base_compile $srcfile $pic_flag"
      fi
721 722 723 724
      if test "$compiler_c_o" = yes; then
	command="$command -o $obj"
      fi

#  
Jeff Law committed
725
      # Suppress compiler output if we already did a PIC compilation.
726
      command="$command$suppress_output"
727
      $run $rm "$obj" "$output_obj"
728 729
      $show "$command"
      if $run eval "$command"; then :
Jason Merrill committed
730
      else
731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755
	$run $rm $removelist
	exit 1
      fi

      if test "$need_locks" = warn &&
	 test x"`cat $lockfile 2>/dev/null`" != x"$srcfile"; then
	echo "\
*** ERROR, $lockfile contains:
`cat $lockfile 2>/dev/null`

but it should contain:
$srcfile

This indicates that another process is trying to use the same
temporary object file, and libtool could not work around it because
your compiler does not support \`-c' and \`-o' together.  If you
repeat this compilation, it may succeed, by chance, but you had better
avoid parallel builds (make -j) in this platform, or get a better
compiler."

	$run $rm $removelist
	exit 1
      fi

      # Just move the object if needed
756
      if test -n "$output_obj" && test "x$output_obj" != "x$obj"; then
757 758 759 760 761 762 763 764 765
	$show "$mv $output_obj $obj"
	if $run $mv $output_obj $obj; then :
	else
	  error=$?
	  $run $rm $removelist
	  exit $error
	fi
      fi

766 767 768 769 770 771 772 773 774 775 776 777 778 779 780
      # Append the name of the non-PIC object the libtool object file.
      # Only append if the libtool object file exists.
      test -z "$run" && cat >> ${libobj}T <<EOF
# Name of the non-PIC object.
non_pic_object='$objname'

EOF
    else
      # Append the name of the non-PIC object the libtool object file.
      # Only append if the libtool object file exists.
      test -z "$run" && cat >> ${libobj}T <<EOF
# Name of the non-PIC object.
non_pic_object=none

EOF
Jason Merrill committed
781 782
    fi

783 784
    $run $mv "${libobj}T" "${libobj}"

785 786
    # Unlock the critical section if it was locked
    if test "$need_locks" != no; then
787
      $run $rm "$lockfile"
Jason Merrill committed
788 789 790 791 792 793
    fi

    exit 0
    ;;

  # libtool link mode
794
  link | relink)
#  
Jeff Law committed
795
    modename="$modename: link"
796
    case $host in
797
    *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814
      # It is impossible to link a dll without this setting, and
      # we shouldn't force the makefile maintainer to figure out
      # which system we are compiling for in order to pass an extra
      # flag for every libtool invokation.
      # allow_undefined=no

      # FIXME: Unfortunately, there are problems with the above when trying
      # to make a dll which has undefined symbols, in which case not
      # even a static library is built.  For now, we need to specify
      # -no-undefined on the libtool link line when we can be certain
      # that all symbols are satisfied, otherwise we get a static library.
      allow_undefined=yes
      ;;
    *)
      allow_undefined=yes
      ;;
    esac
815 816
    libtool_args="$nonopt"
    base_compile="$nonopt"
Jason Merrill committed
817 818
    compile_command="$nonopt"
    finalize_command="$nonopt"
#  
Jeff Law committed
819

820 821
    compile_rpath=
    finalize_rpath=
Jason Merrill committed
822 823
    compile_shlibpath=
    finalize_shlibpath=
824 825
    convenience=
    old_convenience=
Jason Merrill committed
826
    deplibs=
827 828 829 830 831
    old_deplibs=
    compiler_flags=
    linker_flags=
    dllsearchpath=
    lib_search_path=`pwd`
832
    inst_prefix_dir=
833 834

    avoid_version=no
#  
Jeff Law committed
835 836
    dlfiles=
    dlprefiles=
837
    dlself=no
Jason Merrill committed
838
    export_dynamic=no
839 840
    export_symbols=
    export_symbols_regex=
841
    generated=
Jason Merrill committed
842 843
    libobjs=
    ltlibs=
844
    module=no
845
    no_install=no
Jason Merrill committed
846
    objs=
847
    non_pic_objects=
Jason Merrill committed
848
    prefer_static_libs=no
849
    preload=no
Jason Merrill committed
850 851
    prev=
    prevarg=
#  
Jeff Law committed
852 853
    release=
    rpath=
854
    xrpath=
Jason Merrill committed
855 856
    perm_rpath=
    temp_rpath=
857
    thread_safe=no
Jason Merrill committed
858 859 860 861 862
    vinfo=

    # We need to know -static, to get the right output filenames.
    for arg
    do
863
      case $arg in
#  
Jeff Law committed
864
      -all-static | -static)
Jason Merrill committed
865 866
	if test "X$arg" = "X-all-static"; then
	  if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then
#  
Jeff Law committed
867
	    $echo "$modename: warning: complete static linking is impossible in this configuration" 1>&2
Jason Merrill committed
868 869 870 871 872 873 874 875
	  fi
	  if test -n "$link_static_flag"; then
	    dlopen_self=$dlopen_self_static
	  fi
	else
	  if test -z "$pic_flag" && test -n "$link_static_flag"; then
	    dlopen_self=$dlopen_self_static
	  fi
876 877
	fi
	build_libtool_libs=no
#  
Jeff Law committed
878
	build_old_libs=yes
Jason Merrill committed
879
	prefer_static_libs=yes
880 881
	break
	;;
Jason Merrill committed
882 883 884
      esac
    done

#  
Jeff Law committed
885 886 887 888
    # See if our shared archives depend on static archives.
    test -n "$old_archive_from_new_cmds" && build_old_libs=yes

    # Go through the arguments, transforming them on the way.
889 890
    while test $# -gt 0; do
      arg="$1"
891
      base_compile="$base_compile $arg"
892
      shift
893
      case $arg in
894 895 896 897 898 899
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
	qarg=\"`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`\" ### testsuite: skip nested quoting test
	;;
      *) qarg=$arg ;;
      esac
      libtool_args="$libtool_args $qarg"
900

Jason Merrill committed
901 902
      # If the previous option needs an argument, assign it.
      if test -n "$prev"; then
903
	case $prev in
904 905 906 907 908 909
	output)
	  compile_command="$compile_command @OUTPUT@"
	  finalize_command="$finalize_command @OUTPUT@"
	  ;;
	esac

910
	case $prev in
911 912 913 914 915 916 917
	dlfiles|dlprefiles)
	  if test "$preload" = no; then
	    # Add the symbol object into the linking commands.
	    compile_command="$compile_command @SYMFILE@"
	    finalize_command="$finalize_command @SYMFILE@"
	    preload=yes
	  fi
918
	  case $arg in
919
	  *.la | *.lo) ;;  # We handle these cases below.
Jason Merrill committed
920 921 922 923 924 925 926 927
	  force)
	    if test "$dlself" = no; then
	      dlself=needless
	      export_dynamic=yes
	    fi
	    prev=
	    continue
	    ;;
928 929 930 931 932
	  self)
	    if test "$prev" = dlprefiles; then
	      dlself=yes
	    elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then
	      dlself=yes
Jason Merrill committed
933 934 935
	    else
	      dlself=needless
	      export_dynamic=yes
936 937 938 939 940
	    fi
	    prev=
	    continue
	    ;;
	  *)
Jason Merrill committed
941 942 943 944 945
	    if test "$prev" = dlfiles; then
	      dlfiles="$dlfiles $arg"
	    else
	      dlprefiles="$dlprefiles $arg"
	    fi
946
	    prev=
947
	    continue
948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964
	    ;;
	  esac
	  ;;
	expsyms)
	  export_symbols="$arg"
	  if test ! -f "$arg"; then
	    $echo "$modename: symbol file \`$arg' does not exist"
	    exit 1
	  fi
	  prev=
	  continue
	  ;;
	expsyms_regex)
	  export_symbols_regex="$arg"
	  prev=
	  continue
	  ;;
965 966 967 968 969
	inst_prefix)
	  inst_prefix_dir="$arg"
	  prev=
	  continue
	  ;;
#  
Jeff Law committed
970 971 972 973 974
	release)
	  release="-$arg"
	  prev=
	  continue
	  ;;
975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049
	objectlist)
	  if test -f "$arg"; then
            save_arg=$arg
	    moreargs=
	    for fil in `cat $save_arg`
	    do
#	      moreargs="$moreargs $fil"
              arg=$fil
              # A libtool-controlled object.

	      # Check to see that this really is a libtool object.
	      if (sed -e '2q' $arg | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
                pic_object=
                non_pic_object=

                # Read the .lo file
                # If there is no directory component, then add one.
                case $arg in
                */* | *\\*) . $arg ;;
                *) . ./$arg ;;
                esac

                if test -z "$pic_object" || \
                   test -z "$non_pic_object" ||
                   test "$pic_object" = none && \
                   test "$non_pic_object" = none; then
                  $echo "$modename: cannot find name of object for \`$arg'" 1>&2
                  exit 1
                fi

	        # Extract subdirectory from the argument.
	        xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
	        if test "X$xdir" = "X$arg"; then
	          xdir=
	        else
	          xdir="$xdir/"
	        fi

                if test "$pic_object" != none; then
                  # Prepend the subdirectory the object is found in.
	          pic_object="$xdir$pic_object"

	          if test "$prev" = dlfiles; then
	            if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
	              dlfiles="$dlfiles $pic_object"
	              prev=
	              continue
	            else
	              # If libtool objects are unsupported, then we need to preload.
	              prev=dlprefiles
	            fi
	          fi

	          # CHECK ME:  I think I busted this.  -Ossama
                  if test "$prev" = dlprefiles; then
	            # Preload the old-style object.
	            dlprefiles="$dlprefiles $pic_object"
	            prev=
                  fi

                  # A PIC object.
	          libobjs="$libobjs $pic_object"
	          arg="$pic_object"
                fi

                # Non-PIC object.
                if test "$non_pic_object" != none; then
                  # Prepend the subdirectory the object is found in.
	          non_pic_object="$xdir$non_pic_object"

                  # A standard non-PIC object
                  non_pic_objects="$non_pic_objects $non_pic_object"
                  if test -z "$pic_object" || test "$pic_object" = none ; then
                    arg="$non_pic_object"
                  fi
1050 1051 1052 1053 1054
		else
		  # If the PIC object exists, use it instead.
		  # $xdir was prepended to $pic_object above.
		  non_pic_object="$pic_object"
		  non_pic_objects="$non_pic_objects $non_pic_object"
1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
                fi
              else
                # Only an error if not doing a dry-run.
                if test -z "$run"; then
                  $echo "$modename: \`$arg' is not a valid libtool object" 1>&2
                  exit 1
                else
                  # Dry-run case.

	          # Extract subdirectory from the argument.
	          xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
	          if test "X$xdir" = "X$arg"; then
	            xdir=
	          else
	            xdir="$xdir/"
	          fi

                  pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"`
                  non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"`
	          libobjs="$libobjs $pic_object"
                  non_pic_objects="$non_pic_objects $non_pic_object"
                fi
	      fi
	    done
	  else
	    $echo "$modename: link input file \`$save_arg' does not exist"
	    exit 1
	  fi
          arg=$save_arg
	  prev=
	  continue
	  ;;
Jason Merrill committed
1087 1088
	rpath | xrpath)
	  # We need an absolute path.
1089
	  case $arg in
Jason Merrill committed
1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106
	  [\\/]* | [A-Za-z]:[\\/]*) ;;
	  *)
	    $echo "$modename: only absolute run-paths are allowed" 1>&2
	    exit 1
	    ;;
	  esac
	  if test "$prev" = rpath; then
	    case "$rpath " in
	    *" $arg "*) ;;
	    *) rpath="$rpath $arg" ;;
	    esac
	  else
	    case "$xrpath " in
	    *" $arg "*) ;;
	    *) xrpath="$xrpath $arg" ;;
	    esac
	  fi
1107 1108 1109
	  prev=
	  continue
	  ;;
1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124
	xcompiler)
	  compiler_flags="$compiler_flags $qarg"
	  prev=
	  compile_command="$compile_command $qarg"
	  finalize_command="$finalize_command $qarg"
	  continue
	  ;;
	xlinker)
	  linker_flags="$linker_flags $qarg"
	  compiler_flags="$compiler_flags $wl$qarg"
	  prev=
	  compile_command="$compile_command $wl$qarg"
	  finalize_command="$finalize_command $wl$qarg"
	  continue
	  ;;
1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137
	framework)
	  case $host in
	   *-*-darwin*)
	     case "$deplibs " in
	       *" $qarg.framework "*) ;;
	       *) deplibs="$deplibs $qarg.framework" # this is fixed later
		  ;;
	     esac
	     ;;
	  esac
	  prev=
	  continue
	  ;;
1138 1139 1140 1141 1142 1143
	*)
	  eval "$prev=\"\$arg\""
	  prev=
	  continue
	  ;;
	esac
1144
      fi # test -n $prev
Jason Merrill committed
1145 1146 1147

      prevarg="$arg"

1148
      case $arg in
#  
Jeff Law committed
1149 1150
      -all-static)
	if test -n "$link_static_flag"; then
1151
	  compile_command="$compile_command $link_static_flag"
#  
Jeff Law committed
1152
	  finalize_command="$finalize_command $link_static_flag"
1153 1154
	fi
	continue
#  
Jeff Law committed
1155
	;;
Jason Merrill committed
1156

#  
Jeff Law committed
1157 1158 1159
      -allow-undefined)
	# FIXME: remove this flag sometime in the future.
	$echo "$modename: \`-allow-undefined' is deprecated because it is the default" 1>&2
Jason Merrill committed
1160 1161 1162
	continue
	;;

1163 1164 1165 1166 1167
      -avoid-version)
	avoid_version=yes
	continue
	;;

#  
Jeff Law committed
1168
      -dlopen)
1169 1170 1171
	prev=dlfiles
	continue
	;;
Jason Merrill committed
1172

#  
Jeff Law committed
1173
      -dlpreopen)
1174 1175 1176
	prev=dlprefiles
	continue
	;;
Jason Merrill committed
1177

#  
Jeff Law committed
1178
      -export-dynamic)
Jason Merrill committed
1179 1180
	export_dynamic=yes
	continue
1181
	;;
Jason Merrill committed
1182

1183 1184
      -export-symbols | -export-symbols-regex)
	if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
1185
	  $echo "$modename: more than one -exported-symbols argument is not allowed"
1186 1187
	  exit 1
	fi
Jason Merrill committed
1188
	if test "X$arg" = "X-export-symbols"; then
1189 1190 1191 1192 1193 1194
	  prev=expsyms
	else
	  prev=expsyms_regex
	fi
	continue
	;;
Jason Merrill committed
1195

1196 1197 1198 1199 1200
      -inst-prefix-dir)
	prev=inst_prefix
	continue
	;;

1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211
      # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:*
      # so, if we see these flags be careful not to treat them like -L
      -L[A-Z][A-Z]*:*)
	case $with_gcc/$host in
	no/*-*-irix*)
	  compile_command="$compile_command $arg"
	  finalize_command="$finalize_command $arg"
	  ;;
	esac
	continue
	;;
1212

#  
Jeff Law committed
1213
      -L*)
Jason Merrill committed
1214 1215
	dir=`$echo "X$arg" | $Xsed -e 's/^-L//'`
	# We need an absolute path.
1216
	case $dir in
Jason Merrill committed
1217
	[\\/]* | [A-Za-z]:[\\/]*) ;;
1218
	*)
Jason Merrill committed
1219 1220
	  absdir=`cd "$dir" && pwd`
	  if test -z "$absdir"; then
1221 1222
	    $echo "$modename: cannot determine absolute directory name of \`$dir'" 1>&2
	    exit 1
Jason Merrill committed
1223 1224
	  fi
	  dir="$absdir"
1225 1226
	  ;;
	esac
1227 1228 1229 1230 1231 1232
	case "$deplibs " in
	*" -L$dir "*) ;;
	*)
	  deplibs="$deplibs -L$dir"
	  lib_search_path="$lib_search_path $dir"
	  ;;
1233
	esac
1234
	case $host in
1235
	*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
1236
	  case :$dllsearchpath: in
1237 1238
	  *":$dir:"*) ;;
	  *) dllsearchpath="$dllsearchpath:$dir";;
1239 1240 1241
	  esac
	  ;;
	esac
1242
	continue
1243
	;;
Jason Merrill committed
1244

1245
      -l*)
1246
	if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then
1247
	  case $host in
1248
	  *-*-cygwin* | *-*-pw32* | *-*-beos*)
1249
	    # These systems don't actually have a C or math library (as such)
Jason Merrill committed
1250 1251
	    continue
	    ;;
1252 1253 1254
	  *-*-mingw* | *-*-os2*)
	    # These systems don't actually have a C library (as such)
	    test "X$arg" = "X-lc" && continue
1255
	    ;;
Jason Merrill committed
1256 1257
	  esac
	fi
1258
	deplibs="$deplibs $arg"
1259
	continue
1260
	;;
Jason Merrill committed
1261

1262
      -module)
Jason Merrill committed
1263 1264
	module=yes
	continue
1265
	;;
Jason Merrill committed
1266

1267 1268 1269 1270 1271 1272
      -no-fast-install)
	fast_install=no
	continue
	;;

      -no-install)
1273
	case $host in
1274
	*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
1275 1276 1277 1278 1279 1280
	  # The PATH hackery in wrapper scripts is required on Windows
	  # in order for the loader to find any dlls it needs.
	  $echo "$modename: warning: \`-no-install' is ignored for $host" 1>&2
	  $echo "$modename: warning: assuming \`-no-fast-install' instead" 1>&2
	  fast_install=no
	  ;;
1281
	*) no_install=yes ;;
1282 1283 1284 1285
	esac
	continue
	;;

#  
Jeff Law committed
1286 1287
      -no-undefined)
	allow_undefined=no
Jason Merrill committed
1288 1289 1290
	continue
	;;

1291 1292 1293 1294 1295
      -objectlist)
	prev=objectlist
	continue
	;;

#  
Jeff Law committed
1296
      -o) prev=output ;;
Jason Merrill committed
1297

#  
Jeff Law committed
1298 1299 1300
      -release)
	prev=release
	continue
Jason Merrill committed
1301 1302
	;;

#  
Jeff Law committed
1303
      -rpath)
1304 1305 1306 1307 1308 1309 1310 1311 1312 1313
	prev=rpath
	continue
	;;

      -R)
	prev=xrpath
	continue
	;;

      -R*)
Jason Merrill committed
1314 1315
	dir=`$echo "X$arg" | $Xsed -e 's/^-R//'`
	# We need an absolute path.
1316
	case $dir in
Jason Merrill committed
1317 1318 1319 1320 1321 1322 1323 1324 1325 1326
	[\\/]* | [A-Za-z]:[\\/]*) ;;
	*)
	  $echo "$modename: only absolute run-paths are allowed" 1>&2
	  exit 1
	  ;;
	esac
	case "$xrpath " in
	*" $dir "*) ;;
	*) xrpath="$xrpath $dir" ;;
	esac
1327 1328
	continue
	;;
Jason Merrill committed
1329

#  
Jeff Law committed
1330
      -static)
1331
	# The effects of -static are defined in a previous loop.
1332 1333 1334 1335
	# We used to do the same as -all-static on platforms that
	# didn't have a PIC flag, but the assumption that the effects
	# would be equivalent was wrong.  It would break on at least
	# Digital Unix and AIX.
1336 1337 1338 1339 1340
	continue
	;;

      -thread-safe)
	thread_safe=yes
#  
Jeff Law committed
1341
	continue
Jason Merrill committed
1342 1343
	;;

#  
Jeff Law committed
1344
      -version-info)
1345 1346 1347
	prev=vinfo
	continue
	;;
Jason Merrill committed
1348

1349 1350 1351 1352 1353 1354
      -Wc,*)
	args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wc,//'`
	arg=
	IFS="${IFS= 	}"; save_ifs="$IFS"; IFS=','
	for flag in $args; do
	  IFS="$save_ifs"
1355
	  case $flag in
1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372
	    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
	    flag="\"$flag\""
	    ;;
	  esac
	  arg="$arg $wl$flag"
	  compiler_flags="$compiler_flags $flag"
	done
	IFS="$save_ifs"
	arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
	;;

      -Wl,*)
	args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wl,//'`
	arg=
	IFS="${IFS= 	}"; save_ifs="$IFS"; IFS=','
	for flag in $args; do
	  IFS="$save_ifs"
1373
	  case $flag in
1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394
	    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
	    flag="\"$flag\""
	    ;;
	  esac
	  arg="$arg $wl$flag"
	  compiler_flags="$compiler_flags $wl$flag"
	  linker_flags="$linker_flags $flag"
	done
	IFS="$save_ifs"
	arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
	;;

      -Xcompiler)
	prev=xcompiler
	continue
	;;

      -Xlinker)
	prev=xlinker
	continue
	;;
1395 1396 1397 1398
      -framework)
	prev=framework
	continue
	;;
1399

#  
Jeff Law committed
1400 1401 1402 1403 1404
      # Some other compiler flag.
      -* | +*)
	# Unknown arguments in both finalize_command and compile_command need
	# to be aesthetically quoted because they are evaled later.
	arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
1405
	case $arg in
1406
	*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
#  
Jeff Law committed
1407 1408 1409
	  arg="\"$arg\""
	  ;;
	esac
1410
	;;
Jason Merrill committed
1411

1412
      *.$objext)
1413 1414 1415
	# A standard object.
	objs="$objs $arg"
	;;
Jason Merrill committed
1416

#  
Jeff Law committed
1417
      *.lo)
1418 1419 1420 1421 1422 1423 1424 1425 1426
	# A libtool-controlled object.

	# Check to see that this really is a libtool object.
	if (sed -e '2q' $arg | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
          pic_object=
          non_pic_object=

          # Read the .lo file
          # If there is no directory component, then add one.
1427
          case $arg in
1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443
          */* | *\\*) . $arg ;;
          *) . ./$arg ;;
          esac

          if test -z "$pic_object" || \
             test -z "$non_pic_object" ||
             test "$pic_object" = none && \
             test "$non_pic_object" = none; then
            $echo "$modename: cannot find name of object for \`$arg'" 1>&2
            exit 1
          fi

	  # Extract subdirectory from the argument.
	  xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
	  if test "X$xdir" = "X$arg"; then
	    xdir=
#  
Jeff Law committed
1444
	  else
1445
	    xdir="$xdir/"
#  
Jeff Law committed
1446
	  fi
Jason Merrill committed
1447

1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484
          if test "$pic_object" != none; then
            # Prepend the subdirectory the object is found in.
	    pic_object="$xdir$pic_object"

	    if test "$prev" = dlfiles; then
	      if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
	        dlfiles="$dlfiles $pic_object"
	        prev=
	        continue
	      else
	        # If libtool objects are unsupported, then we need to preload.
	        prev=dlprefiles
	      fi
	    fi

	    # CHECK ME:  I think I busted this.  -Ossama
            if test "$prev" = dlprefiles; then
	      # Preload the old-style object.
	      dlprefiles="$dlprefiles $pic_object"
	      prev=
            fi

            # A PIC object.
	    libobjs="$libobjs $pic_object"
	    arg="$pic_object"
          fi

          # Non-PIC object.
          if test "$non_pic_object" != none; then
            # Prepend the subdirectory the object is found in.
	    non_pic_object="$xdir$non_pic_object"

            # A standard non-PIC object
            non_pic_objects="$non_pic_objects $non_pic_object"
            if test -z "$pic_object" || test "$pic_object" = none ; then
              arg="$non_pic_object"
            fi
1485 1486 1487 1488 1489
	  else
	    # If the PIC object exists, use it instead.
	    # $xdir was prepended to $pic_object above.
	    non_pic_object="$pic_object"
	    non_pic_objects="$non_pic_objects $non_pic_object"
1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511
          fi
        else
          # Only an error if not doing a dry-run.
          if test -z "$run"; then
            $echo "$modename: \`$arg' is not a valid libtool object" 1>&2
            exit 1
          else
            # Dry-run case.

	    # Extract subdirectory from the argument.
	    xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
	    if test "X$xdir" = "X$arg"; then
	      xdir=
	    else
	      xdir="$xdir/"
	    fi

            pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"`
            non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"`
	    libobjs="$libobjs $pic_object"
            non_pic_objects="$non_pic_objects $non_pic_object"
          fi
Jason Merrill committed
1512
	fi
1513 1514 1515 1516 1517 1518 1519
	;;

      *.$libext)
	# An archive.
	deplibs="$deplibs $arg"
	old_deplibs="$old_deplibs $arg"
	continue
1520
	;;
Jason Merrill committed
1521

#  
Jeff Law committed
1522
      *.la)
1523 1524
	# A libtool-controlled library.

1525 1526 1527 1528 1529 1530 1531 1532
	if test "$prev" = dlfiles; then
	  # This library was specified with -dlopen.
	  dlfiles="$dlfiles $arg"
	  prev=
	elif test "$prev" = dlprefiles; then
	  # The library was specified with -dlpreopen.
	  dlprefiles="$dlprefiles $arg"
	  prev=
1533
	else
1534
	  deplibs="$deplibs $arg"
1535
	fi
1536 1537
	continue
	;;
1538

1539 1540 1541 1542 1543
      # Some other compiler argument.
      *)
	# Unknown arguments in both finalize_command and compile_command need
	# to be aesthetically quoted because they are evaled later.
	arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
1544
	case $arg in
1545 1546 1547
	*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
	  arg="\"$arg\""
	  ;;
1548
	esac
1549
	;;
1550
      esac # arg
1551

1552 1553 1554 1555 1556
      # Now actually substitute the argument into the commands.
      if test -n "$arg"; then
	compile_command="$compile_command $arg"
	finalize_command="$finalize_command $arg"
      fi
1557
    done # argument parsing loop
1558

1559 1560 1561 1562 1563
    if test -n "$prev"; then
      $echo "$modename: the \`$prevarg' option requires an argument" 1>&2
      $echo "$help" 1>&2
      exit 1
    fi
1564

1565 1566 1567 1568 1569 1570 1571 1572 1573
    # Infer tagged configuration to use if any are available and
    # if one wasn't chosen via the "--tag" command line option.
    # Only attempt this if the compiler in the base link
    # command doesn't match the default compiler.
    if test -n "$available_tags" && test -z "$tagname"; then
      case $base_compile in
      "$CC "*) ;;
      # Blanks in the command may have been stripped by the calling shell,
      # but not from the CC environment variable when ltconfig was run.
1574
      "`$echo $CC` "*) ;;
1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587
      *)
        for z in $available_tags; do
          if grep "^### BEGIN LIBTOOL TAG CONFIG: $z$" < "$0" > /dev/null; then
	    # Evaluate the configuration.
	    eval "`sed -n -e '/^### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^### END LIBTOOL TAG CONFIG: '$z'$/p' < $0`"
            case $base_compile in
	    "$CC "*)
              # The compiler in $compile_command matches
              # the one in the tagged configuration.
              # Assume this is the tagged configuration we want.
              tagname=$z
              break
	      ;;
1588
	    "`$echo $CC` "*)
1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644
	      tagname=$z
	      break
	      ;;
	    esac
          fi
        done
        # If $tagname still isn't set, then no tagged configuration
        # was found and let the user know that the "--tag" command
        # line option must be used.
        if test -z "$tagname"; then
          echo "$modename: unable to infer tagged configuration"
          echo "$modename: specify a tag with \`--tag'" 1>&2
	  exit 1
#       else
#         echo "$modename: using $tagname tagged configuration"
        fi
	;;
      esac
    fi

    if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then
      eval arg=\"$export_dynamic_flag_spec\"
      compile_command="$compile_command $arg"
      finalize_command="$finalize_command $arg"
    fi

    # calculate the name of the file, without its directory
    outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'`
    libobjs_save="$libobjs"

    if test -n "$shlibpath_var"; then
      # get the directories listed in $shlibpath_var
      eval shlib_search_path=\`\$echo \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\`
    else
      shlib_search_path=
    fi
    eval sys_lib_search_path=\"$sys_lib_search_path_spec\"
    eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\"

    output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'`
    if test "X$output_objdir" = "X$output"; then
      output_objdir="$objdir"
    else
      output_objdir="$output_objdir/$objdir"
    fi
    # Create the object directory.
    if test ! -d $output_objdir; then
      $show "$mkdir $output_objdir"
      $run $mkdir $output_objdir
      status=$?
      if test $status -ne 0 && test ! -d $output_objdir; then
	exit $status
      fi
    fi

    # Determine the type of output
1645
    case $output in
1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669
    "")
      $echo "$modename: you must specify an output file" 1>&2
      $echo "$help" 1>&2
      exit 1
      ;;
    *.$libext) linkmode=oldlib ;;
    *.lo | *.$objext) linkmode=obj ;;
    *.la) linkmode=lib ;;
    *) linkmode=prog ;; # Anything else should be a program.
    esac

    specialdeplibs=
    libs=
    # Find all interdependent deplibs by searching for libraries
    # that are linked more than once (e.g. -la -lb -la)
    for deplib in $deplibs; do
      case "$libs " in
      *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
      esac
      libs="$libs $deplib"
    done

    if test $linkmode = lib; then
      libs="$predeps $libs $compiler_lib_search_path $postdeps"
1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681

      # Compute libraries that are listed more than once in $predeps
      # $postdeps and mark them as special (i.e., whose duplicates are
      # not to be eliminated).
      pre_post_deps=
      for pre_post_dep in $predeps $postdeps; do
        case "$pre_post_deps " in
	*" $pre_post_dep "*) specialdeplibs="$specialdeplibs $pre_post_deps" ;;
	esac
	pre_post_deps="$pre_post_deps $pre_post_dep"
      done
      pre_post_deps=
1682 1683 1684 1685 1686 1687
    fi

    deplibs=
    newdependency_libs=
    newlib_search_path=
    need_relink=no # whether we're linking any uninstalled libtool libraries
1688 1689
    notinst_deplibs= # not-installed libtool libraries
    notinst_path= # paths that contain not-installed libtool libraries
1690 1691 1692 1693
    case $linkmode in
    lib)
	passes="conv link"
	for file in $dlfiles $dlprefiles; do
1694
	  case $file in
1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710
	  *.la) ;;
	  *)
	    $echo "$modename: libraries can \`-dlopen' only libtool libraries: $file" 1>&2
	    exit 1
	    ;;
	  esac
	done
	;;
    prog)
	compile_deplibs=
	finalize_deplibs=
	alldeplibs=no
	newdlfiles=
	newdlprefiles=
	passes="conv scan dlopen dlpreopen link"
	;;
1711
    *)  passes="conv"
1712 1713 1714 1715
	;;
    esac
    for pass in $passes; do
      if test $linkmode = prog; then
1716
	# Determine which files to process
1717
	case $pass in
1718 1719 1720 1721 1722
	dlopen)
	  libs="$dlfiles"
	  save_deplibs="$deplibs" # Collect dlpreopened libraries
	  deplibs=
	  ;;
1723 1724 1725 1726 1727 1728 1729
	dlpreopen) libs="$dlprefiles" ;;
	link) libs="$deplibs %DEPLIBS% $dependency_libs" ;;
	esac
      fi
      for deplib in $libs; do
	lib=
	found=no
1730
	case $deplib in
1731
	-l*)
1732 1733
	  if test $linkmode = oldlib && test $linkmode = obj; then
	    $echo "$modename: warning: \`-l' is ignored for archives/objects: $deplib" 1>&2
1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749
	    continue
	  fi
	  if test $pass = conv; then
	    deplibs="$deplib $deplibs"
	    continue
	  fi
	  name=`$echo "X$deplib" | $Xsed -e 's/^-l//'`
	  for searchdir in $newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path; do
	    # Search the libtool library
	    lib="$searchdir/lib${name}.la"
	    if test -f "$lib"; then
	      found=yes
	      break
	    fi
	  done
	  if test "$found" != yes; then
1750
	    # deplib doesn't seem to be a libtool library
1751 1752 1753 1754 1755 1756 1757 1758 1759
	    if test "$linkmode,$pass" = "prog,link"; then
	      compile_deplibs="$deplib $compile_deplibs"
	      finalize_deplibs="$deplib $finalize_deplibs"
	    else
	      deplibs="$deplib $deplibs"
	      test $linkmode = lib && newdependency_libs="$deplib $newdependency_libs"
	    fi
	    continue
	  fi
1760
	  ;; # -l
1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782
	-L*)
	  case $linkmode in
	  lib)
	    deplibs="$deplib $deplibs"
	    test $pass = conv && continue
	    newdependency_libs="$deplib $newdependency_libs"
	    newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
	    ;;
	  prog)
	    if test $pass = conv; then
	      deplibs="$deplib $deplibs"
	      continue
	    fi
	    if test $pass = scan; then
	      deplibs="$deplib $deplibs"
	      newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
	    else
	      compile_deplibs="$deplib $compile_deplibs"
	      finalize_deplibs="$deplib $finalize_deplibs"
	    fi
	    ;;
	  *)
1783
	    $echo "$modename: warning: \`-L' is ignored for archives/objects: $deplib" 1>&2
1784
	    ;;
1785
	  esac # linkmode
1786
	  continue
1787
	  ;; # -L
1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830
	-R*)
	  if test $pass = link; then
	    dir=`$echo "X$deplib" | $Xsed -e 's/^-R//'`
	    # Make sure the xrpath contains only unique directories.
	    case "$xrpath " in
	    *" $dir "*) ;;
	    *) xrpath="$xrpath $dir" ;;
	    esac
	  fi
	  deplibs="$deplib $deplibs"
	  continue
	  ;;
	*.la) lib="$deplib" ;;
	*.$libext)
	  if test $pass = conv; then
	    deplibs="$deplib $deplibs"
	    continue
	  fi
	  case $linkmode in
	  lib)
	    if test "$deplibs_check_method" != pass_all; then
	      echo
	      echo "*** Warning: This library needs some functionality provided by $deplib."
	      echo "*** I have the capability to make that library automatically link in when"
	      echo "*** you link to this library.  But I can only do this if you have a"
	      echo "*** shared version of the library, which you do not appear to have."
	    else
	      echo
	      echo "*** Warning: Linking the shared library $output against the"
	      echo "*** static library $deplib is not portable!"
	      deplibs="$deplib $deplibs"
	    fi
	    continue
	    ;;
	  prog)
	    if test $pass != link; then
	      deplibs="$deplib $deplibs"
	    else
	      compile_deplibs="$deplib $compile_deplibs"
	      finalize_deplibs="$deplib $finalize_deplibs"
	    fi
	    continue
	    ;;
1831 1832
	  esac # linkmode
	  ;; # *.$libext
1833
	*.lo | *.$objext)
1834 1835 1836 1837 1838 1839 1840 1841
	  if test $pass = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then
	    # If there is no dlopen support or we're linking statically,
	    # we need to preload.
	    newdlprefiles="$newdlprefiles $deplib"
	    compile_deplibs="$deplib $compile_deplibs"
	    finalize_deplibs="$deplib $finalize_deplibs"
	  else
	    newdlfiles="$newdlfiles $deplib"
1842
	  fi
1843 1844 1845 1846 1847 1848
	  continue
	  ;;
	%DEPLIBS%)
	  alldeplibs=yes
	  continue
	  ;;
1849
	esac # case $deplib
1850 1851 1852 1853
	if test $found = yes || test -f "$lib"; then :
	else
	  $echo "$modename: cannot find the library \`$lib'" 1>&2
	  exit 1
1854 1855
	fi

1856 1857 1858 1859 1860
	# Check to see that this really is a libtool archive.
	if (sed -e '2q' $lib | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
	else
	  $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
	  exit 1
1861 1862
	fi

1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876
	ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`
	test "X$ladir" = "X$lib" && ladir="."

	dlname=
	dlopen=
	dlpreopen=
	libdir=
	library_names=
	old_library=
	# If the library was installed with an old release of libtool,
	# it will not redefine variable installed.
	installed=yes

	# Read the .la file
1877
	case $lib in
1878 1879 1880 1881
	*/* | *\\*) . $lib ;;
	*) . ./$lib ;;
	esac

1882 1883 1884 1885 1886 1887 1888
	case $host in
	    *-*-darwin*)
	  # Convert "-framework foo" to "foo.framework" in dependency_libs
		test -n "$dependency_libs" && dependency_libs=`$echo "X$dependency_libs" | $Xsed -e 's/-framework \([^ $]*\)/\1.framework/g'`
		;;
	esac

1889 1890
	if test "$linkmode,$pass" = "lib,link" ||
	   test "$linkmode,$pass" = "prog,scan" ||
1891 1892
	   { test $linkmode = oldlib && test $linkmode = obj; }; then
	   # Add dl[pre]opened files of deplib
1893 1894 1895 1896 1897
	  test -n "$dlopen" && dlfiles="$dlfiles $dlopen"
	  test -n "$dlpreopen" && dlprefiles="$dlprefiles $dlpreopen"
	fi

	if test $pass = conv; then
1898
	  # Only check for convenience libraries
1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919
	  deplibs="$lib $deplibs"
	  if test -z "$libdir"; then
	    if test -z "$old_library"; then
	      $echo "$modename: cannot find name of link library for \`$lib'" 1>&2
	      exit 1
	    fi
	    # It is a libtool convenience library, so add in its objects.
	    convenience="$convenience $ladir/$objdir/$old_library"
	    old_convenience="$old_convenience $ladir/$objdir/$old_library"
	    tmp_libs=
	    for deplib in $dependency_libs; do
	      deplibs="$deplib $deplibs"
	      case "$tmp_libs " in
	      *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
	      esac
	      tmp_libs="$tmp_libs $deplib"
	    done
	  elif test $linkmode != prog && test $linkmode != lib; then
	    $echo "$modename: \`$lib' is not a convenience library" 1>&2
	    exit 1
	  fi
1920
	  continue
1921
	fi # $pass = conv
1922

1923 1924 1925 1926 1927 1928 1929 1930 1931 1932
	# Get the name of the library we link against.
	linklib=
	for l in $old_library $library_names; do
	  linklib="$l"
	done
	if test -z "$linklib"; then
	  $echo "$modename: cannot find name of link library for \`$lib'" 1>&2
	  exit 1
	fi

1933
	# This library was specified with -dlopen.
1934 1935 1936 1937 1938 1939
	if test $pass = dlopen; then
	  if test -z "$libdir"; then
	    $echo "$modename: cannot -dlopen a convenience library: \`$lib'" 1>&2
	    exit 1
	  fi
	  if test -z "$dlname" || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then
1940
	    # If there is no dlname, no dlopen support or we're linking
1941 1942
	    # statically, we need to preload.
	    dlprefiles="$dlprefiles $lib"
1943
	  else
1944 1945 1946
	    newdlfiles="$newdlfiles $lib"
	  fi
	  continue
1947
	fi # $pass = dlopen
1948 1949

	# We need an absolute path.
1950
	case $ladir in
1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972
	[\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;;
	*)
	  abs_ladir=`cd "$ladir" && pwd`
	  if test -z "$abs_ladir"; then
	    $echo "$modename: warning: cannot determine absolute directory name of \`$ladir'" 1>&2
	    $echo "$modename: passing it literally to the linker, although it might fail" 1>&2
	    abs_ladir="$ladir"
	  fi
	  ;;
	esac
	laname=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`

	# Find the relevant object directory and library name.
	if test "X$installed" = Xyes; then
	  if test ! -f "$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then
	    $echo "$modename: warning: library \`$lib' was moved." 1>&2
	    dir="$ladir"
	    absdir="$abs_ladir"
	    libdir="$abs_ladir"
	  else
	    dir="$libdir"
	    absdir="$libdir"
1973
	  fi
1974 1975 1976 1977
	else
	  dir="$ladir/$objdir"
	  absdir="$abs_ladir/$objdir"
	  # Remove this search path later
1978 1979
	  notinst_path="$notinst_path $abs_ladir"
	fi # $installed = yes
1980
	name=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
1981

1982 1983 1984 1985 1986 1987
	# This library was specified with -dlpreopen.
	if test $pass = dlpreopen; then
	  if test -z "$libdir"; then
	    $echo "$modename: cannot -dlpreopen a convenience library: \`$lib'" 1>&2
	    exit 1
	  fi
1988 1989 1990
	  # Prefer using a static library (so that no silly _DYNAMIC symbols
	  # are required to link).
	  if test -n "$old_library"; then
1991
	    newdlprefiles="$newdlprefiles $dir/$old_library"
1992 1993 1994
	  # Otherwise, use the dlname, so that lt_dlopen finds it.
	  elif test -n "$dlname"; then
	    newdlprefiles="$newdlprefiles $dir/$dlname"
1995
	  else
1996
	    newdlprefiles="$newdlprefiles $dir/$linklib"
1997
	  fi
1998
	fi # $pass = dlpreopen
1999

2000
	if test -z "$libdir"; then
2001
	  # Link the convenience library
2002 2003 2004 2005 2006 2007
	  if test $linkmode = lib; then
	    deplibs="$dir/$old_library $deplibs"
	  elif test "$linkmode,$pass" = "prog,link"; then
	    compile_deplibs="$dir/$old_library $compile_deplibs"
	    finalize_deplibs="$dir/$old_library $finalize_deplibs"
	  else
2008
	    deplibs="$lib $deplibs"
2009
	  fi
2010 2011
	  continue
	fi
#  
Jeff Law committed
2012

2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024
	if test $linkmode = prog && test $pass != link; then
	  newlib_search_path="$newlib_search_path $ladir"
	  deplibs="$lib $deplibs"

	  linkalldeplibs=no
	  if test "$link_all_deplibs" != no || test -z "$library_names" ||
	     test "$build_libtool_libs" = no; then
	    linkalldeplibs=yes
	  fi

	  tmp_libs=
	  for deplib in $dependency_libs; do
2025
	    case $deplib in
2026 2027 2028 2029 2030 2031 2032 2033 2034
	    -L*) newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`;; ### testsuite: skip nested quoting test
	    esac
	    # Need to link against all dependency_libs?
	    if test $linkalldeplibs = yes; then
	      deplibs="$deplib $deplibs"
	    else
	      # Need to hardcode shared library paths
	      # or/and link against static libraries
	      newdependency_libs="$deplib $newdependency_libs"
2035
	    fi
2036 2037 2038 2039
	    case "$tmp_libs " in
	    *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
	    esac
	    tmp_libs="$tmp_libs $deplib"
2040
	  done # for deplib
2041
	  continue
2042
	fi # $linkmode = prog...
2043

2044 2045 2046 2047
	link_static=no # Whether the deplib will be linked statically
	if test -n "$library_names" &&
	   { test "$prefer_static_libs" = no || test -z "$old_library"; }; then
	  # Link against this shared library
2048

2049 2050
	  if test "$linkmode,$pass" = "prog,link" ||
	   { test $linkmode = lib && test $hardcode_into_libs = yes; }; then
2051 2052 2053 2054
	    # Hardcode the library path.
	    # Skip directories that are in the system default run-time
	    # search path.
	    case " $sys_lib_dlsearch_path " in
2055
	    *" $absdir "*) ;;
2056 2057 2058 2059 2060 2061
	    *)
	      case "$compile_rpath " in
	      *" $absdir "*) ;;
	      *) compile_rpath="$compile_rpath $absdir"
	      esac
	      ;;
2062
	    esac
2063
	    case " $sys_lib_dlsearch_path " in
2064
	    *" $libdir "*) ;;
2065 2066 2067 2068 2069 2070
	    *)
	      case "$finalize_rpath " in
	      *" $libdir "*) ;;
	      *) finalize_rpath="$finalize_rpath $libdir"
	      esac
	      ;;
2071
	    esac
2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083
	    if test $linkmode = prog; then
	      # We need to hardcode the library path
	      if test -n "$shlibpath_var"; then
		# Make sure the rpath contains only unique directories.
		case "$temp_rpath " in
		*" $dir "*) ;;
		*" $absdir "*) ;;
		*) temp_rpath="$temp_rpath $dir" ;;
		esac
	      fi
	    fi
	  fi # $linkmode,$pass = prog,link...
#  
Jeff Law committed
2084

2085 2086 2087 2088 2089 2090 2091 2092 2093
	  if test "$alldeplibs" = yes &&
	     { test "$deplibs_check_method" = pass_all ||
	       { test "$build_libtool_libs" = yes &&
		 test -n "$library_names"; }; }; then
	    # We only need to search for static libraries
	    continue
	  fi

	  if test "$installed" = no; then
2094
	    notinst_deplibs="$notinst_deplibs $lib"
2095 2096 2097 2098 2099 2100 2101 2102 2103
	    need_relink=yes
	  fi

	  if test -n "$old_archive_from_expsyms_cmds"; then
	    # figure out the soname
	    set dummy $library_names
	    realname="$2"
	    shift; shift
	    libname=`eval \\$echo \"$libname_spec\"`
2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114
	    # use dlname if we got it. it's perfectly good, no?
	    if test -n "$dlname"; then
	      soname="$dlname"
	    elif test -n "$soname_spec"; then
	      # bleh windows
	      case $host in
	      *cygwin*)
		major=`expr $current - $age`
		versuffix="-$major"
		;;
	      esac
2115 2116 2117 2118 2119 2120
	      eval soname=\"$soname_spec\"
	    else
	      soname="$realname"
	    fi

	    # Make a new name for the extract_expsyms_cmds to use
2121 2122
	    soroot="$soname"
	    soname=`echo $soroot | sed -e 's/^.*\///'`
2123 2124 2125 2126 2127 2128 2129
	    newlib="libimp-`echo $soname | sed 's/^lib//;s/\.dll$//'`.a"

	    # If the library has no export list, then create one now
	    if test -f "$output_objdir/$soname-def"; then :
	    else
	      $show "extracting exported symbol list from \`$soname'"
	      IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
2130
	      cmds=$extract_expsyms_cmds
2131 2132
	      for cmd in $cmds; do
		IFS="$save_ifs"
2133
		eval cmd=\"$cmd\"
2134 2135 2136 2137 2138 2139 2140 2141 2142 2143
		$show "$cmd"
		$run eval "$cmd" || exit $?
	      done
	      IFS="$save_ifs"
	    fi

	    # Create $newlib
	    if test -f "$output_objdir/$newlib"; then :; else
	      $show "generating import library for \`$soname'"
	      IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
2144
	      cmds=$old_archive_from_expsyms_cmds
2145 2146
	      for cmd in $cmds; do
		IFS="$save_ifs"
2147
		eval cmd=\"$cmd\"
2148 2149 2150 2151 2152 2153 2154 2155
		$show "$cmd"
		$run eval "$cmd" || exit $?
	      done
	      IFS="$save_ifs"
	    fi
	    # make sure the library variables are pointing to the new library
	    dir=$output_objdir
	    linklib=$newlib
2156
	  fi # test -n $old_archive_from_expsyms_cmds
2157 2158 2159 2160 2161 2162

	  if test $linkmode = prog || test "$mode" != relink; then
	    add_shlibpath=
	    add_dir=
	    add=
	    lib_linked=yes
2163
	    case $hardcode_action in
2164 2165 2166 2167
	    immediate | unsupported)
	      if test "$hardcode_direct" = no; then
		add="$dir/$linklib"
	      elif test "$hardcode_minus_L" = no; then
2168
		case $host in
2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184
		*-*-sunos*) add_shlibpath="$dir" ;;
		esac
		add_dir="-L$dir"
		add="-l$name"
	      elif test "$hardcode_shlibpath_var" = no; then
		add_shlibpath="$dir"
		add="-l$name"
	      else
		lib_linked=no
	      fi
	      ;;
	    relink)
	      if test "$hardcode_direct" = yes; then
		add="$dir/$linklib"
	      elif test "$hardcode_minus_L" = yes; then
		add_dir="-L$dir"
2185 2186 2187 2188 2189 2190 2191 2192
		# Try looking first in the location we're being installed to.
		if test -n "$inst_prefix_dir"; then
		  case "$libdir" in
		    [\\/]*)
		      add_dir="$add_dir -L$inst_prefix_dir$libdir"
		      ;;
		  esac
		fi
2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209
		add="-l$name"
	      elif test "$hardcode_shlibpath_var" = yes; then
		add_shlibpath="$dir"
		add="-l$name"
	      else
		lib_linked=no
	      fi
	      ;;
	    *) lib_linked=no ;;
	    esac

	    if test "$lib_linked" != yes; then
	      $echo "$modename: configuration error: unsupported hardcode properties"
	      exit 1
	    fi

	    if test -n "$add_shlibpath"; then
2210
	      case :$compile_shlibpath: in
2211 2212
	      *":$add_shlibpath:"*) ;;
	      *) compile_shlibpath="$compile_shlibpath$add_shlibpath:" ;;
2213
	      esac
2214 2215 2216 2217
	    fi
	    if test $linkmode = prog; then
	      test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs"
	      test -n "$add" && compile_deplibs="$add $compile_deplibs"
2218
	    else
2219 2220 2221 2222 2223
	      test -n "$add_dir" && deplibs="$add_dir $deplibs"
	      test -n "$add" && deplibs="$add $deplibs"
	      if test "$hardcode_direct" != yes && \
		 test "$hardcode_minus_L" != yes && \
		 test "$hardcode_shlibpath_var" = yes; then
2224
		case :$finalize_shlibpath: in
2225 2226 2227 2228
		*":$libdir:"*) ;;
		*) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;
		esac
	      fi
2229
	    fi
2230
	  fi
2231

2232 2233 2234 2235 2236
	  if test $linkmode = prog || test "$mode" = relink; then
	    add_shlibpath=
	    add_dir=
	    add=
	    # Finalize command for both is simple: just hardcode it.
2237
	    if test "$hardcode_direct" = yes; then
2238
	      add="$libdir/$linklib"
2239
	    elif test "$hardcode_minus_L" = yes; then
2240 2241
	      add_dir="-L$libdir"
	      add="-l$name"
2242
	    elif test "$hardcode_shlibpath_var" = yes; then
2243
	      case :$finalize_shlibpath: in
2244 2245
	      *":$libdir:"*) ;;
	      *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;
2246
	      esac
2247
	      add="-l$name"
2248
	    else
2249 2250
	      # We cannot seem to hardcode it, guess we'll fake it.
	      add_dir="-L$libdir"
2251 2252 2253 2254 2255 2256 2257 2258
	      # Try looking first in the location we're being installed to.
	      if test -n "$inst_prefix_dir"; then
		case "$libdir" in
		  [\\/]*)
		    add_dir="$add_dir -L$inst_prefix_dir$libdir"
		    ;;
		esac
	      fi
2259
	      add="-l$name"
2260
	    fi
2261

2262 2263 2264 2265 2266 2267 2268
	    if test $linkmode = prog; then
	      test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs"
	      test -n "$add" && finalize_deplibs="$add $finalize_deplibs"
	    else
	      test -n "$add_dir" && deplibs="$add_dir $deplibs"
	      test -n "$add" && deplibs="$add $deplibs"
	    fi
2269
	  fi
2270
	elif test $linkmode = prog; then
2271 2272 2273 2274 2275 2276 2277 2278 2279
	  if test "$alldeplibs" = yes &&
	     { test "$deplibs_check_method" = pass_all ||
	       { test "$build_libtool_libs" = yes &&
		 test -n "$library_names"; }; }; then
	    # We only need to search for static libraries
	    continue
	  fi

	  # Try to link the static library
#  
Jeff Law committed
2280 2281 2282 2283 2284
	  # Here we assume that one of hardcode_direct or hardcode_minus_L
	  # is not unsupported.  This is valid on all known static and
	  # shared platforms.
	  if test "$hardcode_direct" != unsupported; then
	    test -n "$old_library" && linklib="$old_library"
2285 2286
	    compile_deplibs="$dir/$linklib $compile_deplibs"
	    finalize_deplibs="$dir/$linklib $finalize_deplibs"
#  
Jeff Law committed
2287
	  else
2288 2289 2290 2291 2292 2293 2294 2295
	    compile_deplibs="-l$name -L$dir $compile_deplibs"
	    finalize_deplibs="-l$name -L$dir $finalize_deplibs"
	  fi
	elif test "$build_libtool_libs" = yes; then
	  # Not a shared library
	  if test "$deplibs_check_method" != pass_all; then
	    # We're trying link a shared library against a static one
	    # but the system doesn't support it.
2296

2297 2298 2299 2300 2301 2302 2303
	    # Just print a warning and add the library to dependency_libs so
	    # that the program can be linked against the static library.
	    echo
	    echo "*** Warning: This library needs some functionality provided by $lib."
	    echo "*** I have the capability to make that library automatically link in when"
	    echo "*** you link to this library.  But I can only do this if you have a"
	    echo "*** shared version of the library, which you do not appear to have."
2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320
	    if test "$module" = yes; then
	      echo "*** Therefore, libtool will create a static module, that should work "
	      echo "*** as long as the dlopening application is linked with the -dlopen flag."
	      if test -z "$global_symbol_pipe"; then
	        echo
	        echo "*** However, this would only work if libtool was able to extract symbol"
	        echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
	        echo "*** not find such a program.  So, this module is probably useless."
	        echo "*** \`nm' from GNU binutils and a full rebuild may help."
	      fi
	      if test "$build_old_libs" = no; then
	        build_libtool_libs=module
	        build_old_libs=yes
	      else
	        build_libtool_libs=no
	      fi
	    fi
2321 2322 2323 2324 2325 2326
	  else
	    convenience="$convenience $dir/$old_library"
	    old_convenience="$old_convenience $dir/$old_library"
	    deplibs="$dir/$old_library $deplibs"
	    link_static=yes
	  fi
2327
	fi # link shared/static library?
2328 2329 2330

	if test $linkmode = lib; then
	  if test -n "$dependency_libs" &&
2331
	     { test $hardcode_into_libs != yes || test $build_old_libs = yes ||
2332 2333 2334 2335
	       test $link_static = yes; }; then
	    # Extract -R from dependency_libs
	    temp_deplibs=
	    for libdir in $dependency_libs; do
2336
	      case $libdir in
2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363
	      -R*) temp_xrpath=`$echo "X$libdir" | $Xsed -e 's/^-R//'`
		   case " $xrpath " in
		   *" $temp_xrpath "*) ;;
		   *) xrpath="$xrpath $temp_xrpath";;
		   esac;;
	      *) temp_deplibs="$temp_deplibs $libdir";;
	      esac
	    done
	    dependency_libs="$temp_deplibs"
	  fi

	  newlib_search_path="$newlib_search_path $absdir"
	  # Link against this library
	  test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs"
	  # ... and its dependency_libs
	  tmp_libs=
	  for deplib in $dependency_libs; do
	    newdependency_libs="$deplib $newdependency_libs"
	    case "$tmp_libs " in
	    *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
	    esac
	    tmp_libs="$tmp_libs $deplib"
	  done

	  if test $link_all_deplibs != no; then
	    # Add the search paths of all dependency libraries
	    for deplib in $dependency_libs; do
2364
	      case $deplib in
2365 2366 2367 2368 2369
	      -L*) path="$deplib" ;;
	      *.la)
		dir=`$echo "X$deplib" | $Xsed -e 's%/[^/]*$%%'`
		test "X$dir" = "X$deplib" && dir="."
		# We need an absolute path.
2370
		case $dir in
2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400
		[\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;;
		*)
		  absdir=`cd "$dir" && pwd`
		  if test -z "$absdir"; then
		    $echo "$modename: warning: cannot determine absolute directory name of \`$dir'" 1>&2
		    absdir="$dir"
		  fi
		  ;;
		esac
		if grep "^installed=no" $deplib > /dev/null; then
		  path="-L$absdir/$objdir"
		else
		  eval libdir=`sed -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
		  if test -z "$libdir"; then
		    $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2
		    exit 1
		  fi
		  if test "$absdir" != "$libdir"; then
		    $echo "$modename: warning: \`$deplib' seems to be moved" 1>&2
		  fi
		  path="-L$absdir"
		fi
		;;
	      *) continue ;;
	      esac
	      case " $deplibs " in
	      *" $path "*) ;;
	      *) deplibs="$path $deplibs" ;;
	      esac
	    done
2401 2402 2403
	  fi # link_all_deplibs != no
	fi # linkmode = lib
      done # for deplib in $libs
2404 2405 2406 2407 2408 2409 2410
      if test $pass = dlpreopen; then
	# Link the dlpreopened libraries before other libraries
	for deplib in $save_deplibs; do
	  deplibs="$deplib $deplibs"
	done
      fi
      if test $pass != dlopen; then
2411
	test $pass != scan && dependency_libs="$newdependency_libs"
2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429
	if test $pass != conv; then
	  # Make sure lib_search_path contains only unique directories.
	  lib_search_path=
	  for dir in $newlib_search_path; do
	    case "$lib_search_path " in
	    *" $dir "*) ;;
	    *) lib_search_path="$lib_search_path $dir" ;;
	    esac
	  done
	  newlib_search_path=
	fi

	if test "$linkmode,$pass" != "prog,link"; then
	  vars="deplibs"
	else
	  vars="compile_deplibs finalize_deplibs"
	fi
	for var in $vars dependency_libs; do
2430
	  # Add libraries to $var in reverse order
2431 2432 2433
	  eval tmp_libs=\"\$$var\"
	  new_libs=
	  for deplib in $tmp_libs; do
2434
	    case $deplib in
2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447
	    -L*) new_libs="$deplib $new_libs" ;;
	    *)
	      case " $specialdeplibs " in
	      *" $deplib "*) new_libs="$deplib $new_libs" ;;
	      *)
		case " $new_libs " in
		*" $deplib "*) ;;
		*) new_libs="$deplib $new_libs" ;;
		esac
		;;
	      esac
	      ;;
	    esac
2448 2449 2450
	  done
	  tmp_libs=
	  for deplib in $new_libs; do
2451
	    case $deplib in
2452 2453 2454 2455 2456 2457 2458
	    -L*)
	      case " $tmp_libs " in
	      *" $deplib "*) ;;
	      *) tmp_libs="$tmp_libs $deplib" ;;
	      esac
	      ;;
	    *) tmp_libs="$tmp_libs $deplib" ;;
2459
	    esac
2460 2461
	  done
	  eval $var=\"$tmp_libs\"
2462
	done # for var
#  
Jeff Law committed
2463
      fi
2464 2465 2466 2467 2468 2469
      if test "$pass" = "conv" &&
       { test "$linkmode" = "lib" || test "$linkmode" = "prog"; }; then
	libs="$deplibs" # reset libs
	deplibs=
      fi
    done # for pass
2470 2471 2472
    if test $linkmode = prog; then
      dlfiles="$newdlfiles"
      dlprefiles="$newdlprefiles"
Jason Merrill committed
2473 2474
    fi

2475 2476
    case $linkmode in
    oldlib)
Jason Merrill committed
2477
      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
2478
	$echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2
2479 2480 2481
      fi

      if test -n "$rpath"; then
2482 2483 2484 2485 2486
	$echo "$modename: warning: \`-rpath' is ignored for archives" 1>&2
      fi

      if test -n "$xrpath"; then
	$echo "$modename: warning: \`-R' is ignored for archives" 1>&2
2487 2488 2489
      fi

      if test -n "$vinfo"; then
2490
	$echo "$modename: warning: \`-version-info' is ignored for archives" 1>&2
2491 2492 2493
      fi

      if test -n "$release"; then
2494 2495 2496
	$echo "$modename: warning: \`-release' is ignored for archives" 1>&2
      fi

Jason Merrill committed
2497
      if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
2498
	$echo "$modename: warning: \`-export-symbols' is ignored for archives" 1>&2
2499 2500
      fi

#  
Jeff Law committed
2501 2502
      # Now set the variables for building old libraries.
      build_libtool_libs=no
2503
      oldlibs="$output"
2504
      objs="$objs$old_deplibs"
#  
Jeff Law committed
2505 2506
      ;;

2507
    lib)
#  
Jeff Law committed
2508
      # Make sure we only generate libraries of the form `libNAME.la'.
2509
      case $outputname in
2510 2511
      lib*)
	name=`$echo "X$outputname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
2512
	eval shared_ext=\"$shrext\"
2513 2514
	eval libname=\"$libname_spec\"
	;;
#  
Jeff Law committed
2515
      *)
2516 2517 2518 2519 2520 2521 2522 2523
	if test "$module" = no; then
	  $echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2
	  $echo "$help" 1>&2
	  exit 1
	fi
	if test "$need_lib_prefix" != no; then
	  # Add the "lib" prefix for modules if required
	  name=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
2524
	  eval shared_ext=\"$shrext\"
2525 2526 2527 2528
	  eval libname=\"$libname_spec\"
	else
	  libname=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
	fi
#  
Jeff Law committed
2529 2530 2531
	;;
      esac

Jason Merrill committed
2532
      if test -n "$objs"; then
2533 2534 2535 2536 2537 2538 2539 2540 2541
	if test "$deplibs_check_method" != pass_all; then
	  $echo "$modename: cannot build libtool library \`$output' from non-libtool objects on this host:$objs" 2>&1
	  exit 1
	else
	  echo
	  echo "*** Warning: Linking the shared library $output against the non-libtool"
	  echo "*** objects $objs is not portable!"
	  libobjs="$libobjs $objs"
	fi
Jason Merrill committed
2542 2543
      fi

2544 2545
      if test "$dlself" != no; then
	$echo "$modename: warning: \`-dlopen self' is ignored for libtool libraries" 1>&2
#  
Jeff Law committed
2546
      fi
Jason Merrill committed
2547

#  
Jeff Law committed
2548 2549 2550
      set dummy $rpath
      if test $# -gt 2; then
	$echo "$modename: warning: ignoring multiple \`-rpath's for a libtool library" 1>&2
Jason Merrill committed
2551
      fi
#  
Jeff Law committed
2552
      install_libdir="$2"
Jason Merrill committed
2553

2554
      oldlibs=
2555
      if test -z "$rpath"; then
2556 2557
	if test "$build_libtool_libs" = yes; then
	  # Building a libtool convenience library.
2558 2559 2560
	  # Some compilers have problems with a `.al' extension so
          # convenience libraries should have the same extension an
          # archive normally would.
2561 2562 2563 2564
	  oldlibs="$output_objdir/$libname.$libext $oldlibs"
	  build_libtool_libs=convenience
	  build_old_libs=yes
	fi
2565 2566 2567 2568 2569 2570 2571 2572 2573

	if test -n "$vinfo"; then
	  $echo "$modename: warning: \`-version-info' is ignored for convenience libraries" 1>&2
	fi

	if test -n "$release"; then
	  $echo "$modename: warning: \`-release' is ignored for convenience libraries" 1>&2
	fi
      else
Jason Merrill committed
2574

#  
Jeff Law committed
2575 2576
	# Parse the version information argument.
	IFS="${IFS= 	}"; save_ifs="$IFS"; IFS=':'
2577
	set dummy $vinfo 0 0 0
#  
Jeff Law committed
2578
	IFS="$save_ifs"
Jason Merrill committed
2579

2580
	if test -n "$8"; then
#  
Jeff Law committed
2581 2582 2583 2584
	  $echo "$modename: too many parameters to \`-version-info'" 1>&2
	  $echo "$help" 1>&2
	  exit 1
	fi
Jason Merrill committed
2585

2586 2587 2588
	current="$2"
	revision="$3"
	age="$4"
Jason Merrill committed
2589

#  
Jeff Law committed
2590
	# Check that each of the things are valid numbers.
2591
	case $current in
2592
	0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;;
#  
Jeff Law committed
2593 2594 2595 2596 2597 2598
	*)
	  $echo "$modename: CURRENT \`$current' is not a nonnegative integer" 1>&2
	  $echo "$modename: \`$vinfo' is not valid version information" 1>&2
	  exit 1
	  ;;
	esac
Jason Merrill committed
2599

2600
	case $revision in
2601
	0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;;
#  
Jeff Law committed
2602 2603 2604 2605 2606 2607
	*)
	  $echo "$modename: REVISION \`$revision' is not a nonnegative integer" 1>&2
	  $echo "$modename: \`$vinfo' is not valid version information" 1>&2
	  exit 1
	  ;;
	esac
Jason Merrill committed
2608

2609
	case $age in
2610
	0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;;
#  
Jeff Law committed
2611 2612 2613 2614 2615 2616
	*)
	  $echo "$modename: AGE \`$age' is not a nonnegative integer" 1>&2
	  $echo "$modename: \`$vinfo' is not valid version information" 1>&2
	  exit 1
	  ;;
	esac
Jason Merrill committed
2617

#  
Jeff Law committed
2618 2619 2620 2621 2622
	if test $age -gt $current; then
	  $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2
	  $echo "$modename: \`$vinfo' is not valid version information" 1>&2
	  exit 1
	fi
Jason Merrill committed
2623

#  
Jeff Law committed
2624
	# Calculate the version variables.
2625 2626 2627
	major=
	versuffix=
	verstring=
2628
	case $version_type in
#  
Jeff Law committed
2629
	none) ;;
Jason Merrill committed
2630

2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650
	darwin)
	  # Like Linux, but with the current version available in
	  # verstring for coding it into the library header
	  major=.`expr $current - $age`
	  versuffix="$major.$age.$revision"
	  # Darwin ld doesn't like 0 for these options...
	  minor_current=`expr $current + 1`
	  verstring="-compatibility_version $minor_current -current_version $minor_current.$revision"
	  ;;

	freebsd-aout)
	  major=".$current"
	  versuffix=".$current.$revision";
	  ;;

	freebsd-elf)
	  major=".$current"
	  versuffix=".$current";
	  ;;

2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661
	irix)
	  major=`expr $current - $age + 1`
	  verstring="sgi$major.$revision"

	  # Add in all the interfaces that we are compatible with.
	  loop=$revision
	  while test $loop != 0; do
	    iface=`expr $revision - $loop`
	    loop=`expr $loop - 1`
	    verstring="sgi$major.$iface:$verstring"
	  done
2662 2663 2664 2665

	  # Before this point, $major must not contain `.'.
	  major=.$major
	  versuffix="$major.$revision"
2666 2667
	  ;;

#  
Jeff Law committed
2668 2669
	linux)
	  major=.`expr $current - $age`
2670
	  versuffix="$major.$age.$revision"
#  
Jeff Law committed
2671
	  ;;
Jason Merrill committed
2672

#  
Jeff Law committed
2673
	osf)
2674
	  major=.`expr $current - $age`
2675
	  versuffix=".$current.$age.$revision"
#  
Jeff Law committed
2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690
	  verstring="$current.$age.$revision"

	  # Add in all the interfaces that we are compatible with.
	  loop=$age
	  while test $loop != 0; do
	    iface=`expr $current - $loop`
	    loop=`expr $loop - 1`
	    verstring="$verstring:${iface}.0"
	  done

	  # Make executables depend on our current version.
	  verstring="$verstring:${current}.0"
	  ;;

	sunos)
2691 2692
	  major=".$current"
	  versuffix=".$current.$revision"
#  
Jeff Law committed
2693 2694 2695
	  ;;

	windows)
2696 2697
	  # Use '-' rather than '.', since we only want one
	  # extension on DOS 8.3 filesystems.
#  
Jeff Law committed
2698
	  major=`expr $current - $age`
2699
	  versuffix="-$major"
#  
Jeff Law committed
2700 2701 2702 2703 2704 2705 2706 2707 2708
	  ;;

	*)
	  $echo "$modename: unknown library version type \`$version_type'" 1>&2
	  echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2
	  exit 1
	  ;;
	esac

2709 2710
	# Clear the version info if we defaulted, and they specified a release.
	if test -z "$vinfo" && test -n "$release"; then
#  
Jeff Law committed
2711
	  major=
2712 2713 2714 2715 2716 2717 2718 2719 2720 2721
	  case $version_type in
	  darwin)
	    # we can't check for "0.0" in archive_cmds due to quoting
	    # problems, so we reset it completely
	    verstring=
	    ;;
	  *)
	    verstring="0.0"
	    ;;
	  esac
2722 2723 2724
	  if test "$need_version" = no; then
	    versuffix=
	  else
2725
	    versuffix=".0.0"
2726
	  fi
2727
	fi
#  
Jeff Law committed
2728

2729 2730 2731 2732 2733 2734
	# Remove version info from name if versioning should be avoided
	if test "$avoid_version" = yes && test "$need_version" = no; then
	  major=
	  versuffix=
	  verstring=""
	fi
2735

2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746
	# Check to see if the archive will have undefined symbols.
	if test "$allow_undefined" = yes; then
	  if test "$allow_undefined_flag" = unsupported; then
	    $echo "$modename: warning: undefined symbols not allowed in $host shared libraries" 1>&2
	    build_libtool_libs=no
	    build_old_libs=yes
	  fi
	else
	  # Don't allow undefined symbols.
	  allow_undefined_flag="$no_undefined_flag"
	fi
#  
Jeff Law committed
2747
      fi
Jason Merrill committed
2748

2749 2750 2751 2752 2753 2754
      if test "$mode" != relink; then
	# Remove our outputs, but don't remove object files since they
        # may have been created when compiling PIC objects.
        removelist=
        tempremovelist=`echo "$output_objdir/*"`
	for p in $tempremovelist; do
2755
          case $p in
2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767
            *.$objext)
               ;;
            $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*)
               removelist="$removelist $p"
               ;;
            *) ;;
          esac
        done
        if test -n "$removelist"; then
	  $show "${rm}r $removelist"
	  $run ${rm}r $removelist
        fi
2768 2769 2770 2771 2772 2773 2774 2775
      fi

      # Now set the variables for building old libraries.
      if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then
	oldlibs="$oldlibs $output_objdir/$libname.$libext"

	# Transform .lo files to .o files.
	oldobjs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP`
Jason Merrill committed
2776 2777
      fi

2778
      # Eliminate all temporary directories.
2779
      for path in $notinst_path; do
2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794
	lib_search_path=`echo "$lib_search_path " | sed -e 's% $path % %g'`
	deplibs=`echo "$deplibs " | sed -e 's% -L$path % %g'`
	dependency_libs=`echo "$dependency_libs " | sed -e 's% -L$path % %g'`
      done

      if test -n "$xrpath"; then
	# If the user specified any rpath flags, then add them.
	temp_xrpath=
	for libdir in $xrpath; do
	  temp_xrpath="$temp_xrpath -R$libdir"
	  case "$finalize_rpath " in
	  *" $libdir "*) ;;
	  *) finalize_rpath="$finalize_rpath $libdir" ;;
	  esac
	done
2795
	if test $hardcode_into_libs != yes || test $build_old_libs = yes; then
2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819
	  dependency_libs="$temp_xrpath $dependency_libs"
	fi
      fi

      # Make sure dlfiles contains only unique files that won't be dlpreopened
      old_dlfiles="$dlfiles"
      dlfiles=
      for lib in $old_dlfiles; do
	case " $dlprefiles $dlfiles " in
	*" $lib "*) ;;
	*) dlfiles="$dlfiles $lib" ;;
	esac
      done

      # Make sure dlprefiles contains only unique files
      old_dlprefiles="$dlprefiles"
      dlprefiles=
      for lib in $old_dlprefiles; do
	case "$dlprefiles " in
	*" $lib "*) ;;
	*) dlprefiles="$dlprefiles $lib" ;;
	esac
      done

Jason Merrill committed
2820
      if test "$build_libtool_libs" = yes; then
2821
	if test -n "$rpath"; then
2822
	  case $host in
2823
	  *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos*)
2824 2825
	    # these systems don't actually have a c library (as such)!
	    ;;
2826 2827 2828 2829
	  *-*-rhapsody* | *-*-darwin1.[012])
	    # Rhapsody C library is in the System framework
	    deplibs="$deplibs -framework System"
	    ;;
2830 2831 2832
	  *-*-netbsd*)
	    # Don't link with libc until the a.out ld.so is fixed.
	    ;;
2833
	  *)
2834 2835 2836 2837
	    # Add libc to deplibs on all other systems if necessary.
	    if test $build_libtool_need_lc = "yes"; then
	      deplibs="$deplibs -lc"
	    fi
2838 2839 2840 2841
	    ;;
	  esac
	fi

2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855
	# Transform deplibs into only deplibs that can be linked in shared.
	name_save=$name
	libname_save=$libname
	release_save=$release
	versuffix_save=$versuffix
	major_save=$major
	# I'm not sure if I'm treating the release correctly.  I think
	# release should show up in the -l (ie -lgmp5) so we don't want to
	# add it in twice.  Is that correct?
	release=""
	versuffix=""
	major=""
	newdeplibs=
	droppeddeps=no
2856
	case $deplibs_check_method in
2857
	pass_all)
Jason Merrill committed
2858 2859 2860 2861 2862
	  # Don't check for shared/static.  Everything works.
	  # This might be a little naive.  We might want to check
	  # whether the library exists or not.  But this is on
	  # osf3 & osf4 and I'm not really sure... Just
	  # implementing what was already the behaviour.
2863
	  newdeplibs=$deplibs
Jason Merrill committed
2864
	  ;;
2865 2866 2867 2868 2869 2870 2871 2872 2873 2874
	test_compile)
	  # This code stresses the "libraries are programs" paradigm to its
	  # limits. Maybe even breaks it.  We compile a program, linking it
	  # against the deplibs as a proxy for the library.  Then we can check
	  # whether they linked in statically or dynamically with ldd.
	  $rm conftest.c
	  cat > conftest.c <<EOF
	  int main() { return 0; }
EOF
	  $rm conftest
2875
	  $LTCC -o conftest conftest.c $deplibs
2876 2877 2878 2879 2880
	  if test $? -eq 0 ; then
	    ldd_output=`ldd conftest`
	    for i in $deplibs; do
	      name="`expr $i : '-l\(.*\)'`"
	      # If $name is empty we are operating on a -L argument.
2881
	      if test -n "$name" && test "$name" != "0"; then
2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905
		libname=`eval \\$echo \"$libname_spec\"`
		deplib_matches=`eval \\$echo \"$library_names_spec\"`
		set dummy $deplib_matches
		deplib_match=$2
		if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
		  newdeplibs="$newdeplibs $i"
		else
		  droppeddeps=yes
		  echo
		  echo "*** Warning: This library needs some functionality provided by $i."
		  echo "*** I have the capability to make that library automatically link in when"
		  echo "*** you link to this library.  But I can only do this if you have a"
		  echo "*** shared version of the library, which you do not appear to have."
		fi
	      else
		newdeplibs="$newdeplibs $i"
	      fi
	    done
	  else
	    # Error occured in the first compile.  Let's try to salvage the situation:
	    # Compile a seperate program for each library.
	    for i in $deplibs; do
	      name="`expr $i : '-l\(.*\)'`"
	     # If $name is empty we are operating on a -L argument.
2906
	      if test -n "$name" && test "$name" != "0"; then
2907
		$rm conftest
2908
		$LTCC -o conftest conftest.c $i
2909 2910 2911
		# Did it work?
		if test $? -eq 0 ; then
		  ldd_output=`ldd conftest`
Jason Merrill committed
2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925
		  libname=`eval \\$echo \"$libname_spec\"`
		  deplib_matches=`eval \\$echo \"$library_names_spec\"`
		  set dummy $deplib_matches
		  deplib_match=$2
		  if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
		    newdeplibs="$newdeplibs $i"
		  else
		    droppeddeps=yes
		    echo
		    echo "*** Warning: This library needs some functionality provided by $i."
		    echo "*** I have the capability to make that library automatically link in when"
		    echo "*** you link to this library.  But I can only do this if you have a"
		    echo "*** shared version of the library, which you do not appear to have."
		  fi
2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941
		else
		  droppeddeps=yes
		  echo
		  echo "*** Warning!  Library $i is needed by this library but I was not able to"
		  echo "***  make it link in!  You will probably need to install it or some"
		  echo "*** library that it depends on before this library will be fully"
		  echo "*** functional.  Installing it before continuing would be even better."
		fi
	      else
		newdeplibs="$newdeplibs $i"
	      fi
	    done
	  fi
	  ;;
	file_magic*)
	  set dummy $deplibs_check_method
2942
	  file_magic_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
2943 2944 2945
	  for a_deplib in $deplibs; do
	    name="`expr $a_deplib : '-l\(.*\)'`"
	    # If $name is empty we are operating on a -L argument.
2946
	    if test -n "$name" && test "$name" != "0"; then
2947
	      libname=`eval \\$echo \"$libname_spec\"`
2948
	      for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
2949 2950 2951
		    potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
		    for potent_lib in $potential_libs; do
		      # Follow soft links.
Jason Merrill committed
2952
		      if ls -lLd "$potent_lib" 2>/dev/null \
2953
			 | grep " -> " >/dev/null; then
2954
			continue
2955 2956 2957 2958 2959 2960 2961 2962 2963
		      fi
		      # The statement above tries to avoid entering an
		      # endless loop below, in case of cyclic links.
		      # We might still enter an endless loop, since a link
		      # loop can be closed while we follow links,
		      # but so what?
		      potlib="$potent_lib"
		      while test -h "$potlib" 2>/dev/null; do
			potliblink=`ls -ld $potlib | sed 's/.* -> //'`
2964
			case $potliblink in
Jason Merrill committed
2965
			[\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";;
2966 2967 2968
			*) potlib=`$echo "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";;
			esac
		      done
Jason Merrill committed
2969
		      if eval $file_magic_cmd \"\$potlib\" 2>/dev/null \
2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991
			 | sed 10q \
			 | egrep "$file_magic_regex" > /dev/null; then
			newdeplibs="$newdeplibs $a_deplib"
			a_deplib=""
			break 2
		      fi
		    done
	      done
	      if test -n "$a_deplib" ; then
		droppeddeps=yes
		echo
		echo "*** Warning: This library needs some functionality provided by $a_deplib."
		echo "*** I have the capability to make that library automatically link in when"
		echo "*** you link to this library.  But I can only do this if you have a"
		echo "*** shared version of the library, which you do not appear to have."
	      fi
	    else
	      # Add a -L argument.
	      newdeplibs="$newdeplibs $a_deplib"
	    fi
	  done # Gone through all deplibs.
	  ;;
2992 2993 2994 2995 2996 2997
	match_pattern*)
	  set dummy $deplibs_check_method
	  match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
	  for a_deplib in $deplibs; do
	    name="`expr $a_deplib : '-l\(.*\)'`"
	    # If $name is empty we are operating on a -L argument.
2998
	    if test -n "$name" && test "$name" != "0"; then
2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025
	      libname=`eval \\$echo \"$libname_spec\"`
	      for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
		potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
		for potent_lib in $potential_libs; do
		  if eval echo \"$potent_lib\" 2>/dev/null \
		      | sed 10q \
		      | egrep "$match_pattern_regex" > /dev/null; then
		    newdeplibs="$newdeplibs $a_deplib"
		    a_deplib=""
		    break 2
		  fi
		done
	      done
	      if test -n "$a_deplib" ; then
		droppeddeps=yes
		echo
		echo "*** Warning: This library needs some functionality provided by $a_deplib."
		echo "*** I have the capability to make that library automatically link in when"
		echo "*** you link to this library.  But I can only do this if you have a"
		echo "*** shared version of the library, which you do not appear to have."
	      fi
	    else
	      # Add a -L argument.
	      newdeplibs="$newdeplibs $a_deplib"
	    fi
	  done # Gone through all deplibs.
	  ;;
Jason Merrill committed
3026 3027
	none | unknown | *)
	  newdeplibs=""
3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047
	  if $echo "X $deplibs" | $Xsed -e 's/ -lc$//' \
	       -e 's/ -[LR][^ ]*//g' -e 's/[ 	]//g' |
	     grep . >/dev/null; then
	    echo
	    if test "X$deplibs_check_method" = "Xnone"; then
	      echo "*** Warning: inter-library dependencies are not supported in this platform."
	    else
	      echo "*** Warning: inter-library dependencies are not known to be supported."
	    fi
	    echo "*** All declared inter-library dependencies are being dropped."
	    droppeddeps=yes
	  fi
	  ;;
	esac
	versuffix=$versuffix_save
	major=$major_save
	release=$release_save
	libname=$libname_save
	name=$name_save

3048 3049 3050 3051 3052 3053 3054
	case $host in
	*-*-rhapsody* | *-*-darwin1.[012])
	  # On Rhapsody replace the C library is the System framework
	  newdeplibs=`$echo "X $newdeplibs" | $Xsed -e 's/ -lc / -framework System /'`
	  ;;
	esac

3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079
	if test "$droppeddeps" = yes; then
	  if test "$module" = yes; then
	    echo
	    echo "*** Warning: libtool could not satisfy all declared inter-library"
	    echo "*** dependencies of module $libname.  Therefore, libtool will create"
	    echo "*** a static module, that should work as long as the dlopening"
	    echo "*** application is linked with the -dlopen flag."
	    if test -z "$global_symbol_pipe"; then
	      echo
	      echo "*** However, this would only work if libtool was able to extract symbol"
	      echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
	      echo "*** not find such a program.  So, this module is probably useless."
	      echo "*** \`nm' from GNU binutils and a full rebuild may help."
	    fi
	    if test "$build_old_libs" = no; then
	      oldlibs="$output_objdir/$libname.$libext"
	      build_libtool_libs=module
	      build_old_libs=yes
	    else
	      build_libtool_libs=no
	    fi
	  else
	    echo "*** The inter-library dependencies that have been dropped here will be"
	    echo "*** automatically added whenever a program is linked with this library"
	    echo "*** or is declared to -dlopen it."
3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094

	    if test $allow_undefined = no; then
	      echo
	      echo "*** Since this library must not contain undefined symbols,"
	      echo "*** because either the platform does not support them or"
	      echo "*** it was explicitly requested with -no-undefined,"
	      echo "*** libtool will only create a static version of it."
	      if test "$build_old_libs" = no; then
		oldlibs="$output_objdir/$libname.$libext"
		build_libtool_libs=module
		build_old_libs=yes
	      else
		build_libtool_libs=no
	      fi
	    fi
3095 3096
	  fi
	fi
3097 3098 3099 3100 3101 3102 3103 3104
	# Time to change all our "foo.framework" stuff back to "-framework foo"
	case $host in
	    *-*-darwin*)
		newdeplibs=`$echo "X $newdeplibs" | $Xsed -e 's% \([^ $]*\).framework% -framework \1%g'`
		dependency_libs=`$echo "X $dependency_libs" | $Xsed -e 's% \([^ $]*\).framework% -framework \1%g'`
		;;
	esac
	# Done checking deplibs!
Jason Merrill committed
3105 3106
	# Done checking deplibs!
	deplibs=$newdeplibs
3107 3108
      fi

Jason Merrill committed
3109 3110 3111 3112
      # All the library-specific variables (install_libdir is set above).
      library_names=
      old_library=
      dlname=
3113

Jason Merrill committed
3114
      # Test again, we may have decided not to build it any more
3115
      if test "$build_libtool_libs" = yes; then
3116
	if test $hardcode_into_libs = yes; then
3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128
	  # Hardcode the library paths
	  hardcode_libdirs=
	  dep_rpath=
	  rpath="$finalize_rpath"
	  test "$mode" != relink && rpath="$compile_rpath$rpath"
	  for libdir in $rpath; do
	    if test -n "$hardcode_libdir_flag_spec"; then
	      if test -n "$hardcode_libdir_separator"; then
		if test -z "$hardcode_libdirs"; then
		  hardcode_libdirs="$libdir"
		else
		  # Just accumulate the unique libdirs.
3129
		  case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170
		  *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
		    ;;
		  *)
		    hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
		    ;;
		  esac
		fi
	      else
		eval flag=\"$hardcode_libdir_flag_spec\"
		dep_rpath="$dep_rpath $flag"
	      fi
	    elif test -n "$runpath_var"; then
	      case "$perm_rpath " in
	      *" $libdir "*) ;;
	      *) perm_rpath="$perm_rpath $libdir" ;;
	      esac
	    fi
	  done
	  # Substitute the hardcoded libdirs into the rpath.
	  if test -n "$hardcode_libdir_separator" &&
	     test -n "$hardcode_libdirs"; then
	    libdir="$hardcode_libdirs"
	    eval dep_rpath=\"$hardcode_libdir_flag_spec\"
	  fi
	  if test -n "$runpath_var" && test -n "$perm_rpath"; then
	    # We should set the runpath_var.
	    rpath=
	    for dir in $perm_rpath; do
	      rpath="$rpath$dir:"
	    done
	    eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var"
	  fi
	  test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs"
	fi

	shlibpath="$finalize_shlibpath"
	test "$mode" != relink && shlibpath="$compile_shlibpath$shlibpath"
	if test -n "$shlibpath"; then
	  eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var"
	fi

3171 3172
	# Get the real and link names of the library.
	eval library_names=\"$library_names_spec\"
3173
	eval shared_ext=\"$shrext\"
3174 3175 3176 3177 3178 3179 3180 3181 3182
	set dummy $library_names
	realname="$2"
	shift; shift

	if test -n "$soname_spec"; then
	  eval soname=\"$soname_spec\"
	else
	  soname="$realname"
	fi
3183
	test -z "$dlname" && dlname=$soname
Jason Merrill committed
3184

3185
	lib="$output_objdir/$realname"
Jason Merrill committed
3186 3187 3188 3189 3190
	for link
	do
	  linknames="$linknames $link"
	done

3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206
#	# Ensure that we have .o objects for linkers which dislike .lo
#	# (e.g. aix) in case we are running --disable-static
#	for obj in $libobjs; do
#	  xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`
#	  if test "X$xdir" = "X$obj"; then
#	    xdir="."
#	  else
#	    xdir="$xdir"
#	  fi
#	  baseobj=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`
#	  oldobj=`$echo "X$baseobj" | $Xsed -e "$lo2o"`
#	  if test ! -f $xdir/$oldobj && test "$baseobj" != "$oldobj"; then
#	    $show "(cd $xdir && ${LN_S} $baseobj $oldobj)"
#	    $run eval '(cd $xdir && ${LN_S} $baseobj $oldobj)' || exit $?
#	  fi
#	done
Jason Merrill committed
3207

3208 3209
	# Use standard objects if they are pic
	test -z "$pic_flag" && libobjs=`$echo "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
Jason Merrill committed
3210

3211 3212 3213 3214
	# Prepare the list of exported symbols
	if test -z "$export_symbols"; then
	  if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then
	    $show "generating symbol list for \`$libname.la'"
Jason Merrill committed
3215
	    export_symbols="$output_objdir/$libname.exp"
3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237
	    $run $rm $export_symbols
	    eval cmds=\"$export_symbols_cmds\"
	    IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
	    for cmd in $cmds; do
	      IFS="$save_ifs"
	      $show "$cmd"
	      $run eval "$cmd" || exit $?
	    done
	    IFS="$save_ifs"
	    if test -n "$export_symbols_regex"; then
	      $show "egrep -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\""
	      $run eval 'egrep -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
	      $show "$mv \"${export_symbols}T\" \"$export_symbols\""
	      $run eval '$mv "${export_symbols}T" "$export_symbols"'
	    fi
	  fi
	fi

	if test -n "$export_symbols" && test -n "$include_expsyms"; then
	  $run eval '$echo "X$include_expsyms" | $SP2NL >> "$export_symbols"'
	fi

Jason Merrill committed
3238 3239
	if test -n "$convenience"; then
	  if test -n "$whole_archive_flag_spec"; then
3240
	    save_libobjs=$libobjs
Jason Merrill committed
3241 3242 3243 3244 3245
	    eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
	  else
	    gentop="$output_objdir/${outputname}x"
	    $show "${rm}r $gentop"
	    $run ${rm}r "$gentop"
3246 3247
	    $show "$mkdir $gentop"
	    $run $mkdir "$gentop"
Jason Merrill committed
3248 3249 3250 3251 3252 3253 3254 3255
	    status=$?
	    if test $status -ne 0 && test ! -d "$gentop"; then
	      exit $status
	    fi
	    generated="$generated $gentop"

	    for xlib in $convenience; do
	      # Extract the objects.
3256
	      case $xlib in
Jason Merrill committed
3257 3258 3259 3260 3261 3262 3263 3264
	      [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;;
	      *) xabs=`pwd`"/$xlib" ;;
	      esac
	      xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
	      xdir="$gentop/$xlib"

	      $show "${rm}r $xdir"
	      $run ${rm}r "$xdir"
3265 3266
	      $show "$mkdir $xdir"
	      $run $mkdir "$xdir"
Jason Merrill committed
3267 3268 3269 3270 3271 3272 3273
	      status=$?
	      if test $status -ne 0 && test ! -d "$xdir"; then
		exit $status
	      fi
	      $show "(cd $xdir && $AR x $xabs)"
	      $run eval "(cd \$xdir && $AR x \$xabs)" || exit $?

3274
	      libobjs="$libobjs "`find $xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP`
Jason Merrill committed
3275 3276 3277 3278 3279 3280
	    done
	  fi
	fi

	if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then
	  eval flag=\"$thread_safe_flag_spec\"
3281 3282 3283 3284
	  linker_flags="$linker_flags $flag"
	fi

	# Make a backup of the uninstalled library when relinking
3285
	if test "$mode" = relink; then
3286
	  $run eval '(cd $output_objdir && $rm ${realname}U && $mv $realname ${realname}U)' || exit $?
Jason Merrill committed
3287 3288
	fi

3289
	# Do each of the archive commands.
3290
	if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
3291 3292
	  eval test_cmds=\"$archive_expsym_cmds\"
	  cmds=$archive_expsym_cmds
3293
	else
3294 3295
	  eval test_cmds=\"$archive_cmds\"
	  cmds=$archive_cmds
3296
	fi
3297
        if len=`expr "X$test_cmds" : ".*"` &&
3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314
           test $len -le $max_cmd_len; then
          :
        else
	  # The command line is too long to link in one step, link piecewise.

	  # Save the value of $output and $libobjs because we want to
	  # use them later.  If we have whole_archive_flag_spec, we
	  # want to use save_libobjs as it was before
	  # whole_archive_flag_spec was expanded, because we can't
	  # assume the linker understands whole_archive_flag_spec.
	  # This may have to be revisited, in case too many
	  # convenience libraries get linked in and end up exceeding
	  # the spec.
	  if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then
	    save_libobjs=$libobjs
	  fi
          save_output=$output
3315
	  output_la=`$echo "X$output" | $Xsed -e "s,^.*/,,"`
3316 3317 3318 3319 3320 3321 3322 3323 3324

	  # Clear the reloadable object creation command queue and
	  # initialize k to one.
          test_cmds=
          concat_cmds=
          objlist=
          delfiles=
          last_robj=
          k=1
3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403

	  if test "$with_gnu_ld" = yes; then
	    output=${output_objdir}/${output_la}.lnkscript
	    $echo "creating GNU ld script: $output"
	    $echo 'INPUT (' > $output
	    for obj in $save_libobjs
	    do
	      $echo \""$obj"\" >> $output
	    done
	    $echo ')' >> $output
	    delfiles="$delfiles $output"
	  elif test "X$file_list_spec" != X; then
	    output=${output_objdir}/${output_la}.lnk
	    $echo "creating linker input file list: $output"
	    : > $output
	    for obj in $save_libobjs
	    do
	      $echo "$obj" >> $output
	    done
	    delfiles="$delfiles $output"
	    output=\"$file_list_spec$output\"
	  else
	    $echo "creating reloadable object files..."
	    output=$output_objdir/$save_output-${k}.$objext
	    # Loop over the list of objects to be linked.
	    for obj in $save_libobjs
	    do
	      eval test_cmds=\"$reload_cmds $objlist $last_robj\"
	      if test "X$objlist" = X ||
		 { len=`expr "X$test_cmds" : ".*"` &&
		   test $len -le $max_cmd_len; }; then
		objlist="$objlist $obj"
	      else
		# The command $test_cmds is almost too long, add a
		# command to the queue.
		if test $k -eq 1 ; then
		  # The first file doesn't have a previous command to add.
		  eval concat_cmds=\"$reload_cmds $objlist $last_robj\"
		else
		  # All subsequent reloadable object files will link in
		  # the last one created.
		  eval concat_cmds=\"\$concat_cmds~$reload_cmds $objlist $last_robj\"
		fi
		last_robj=$output_objdir/$save_output-${k}.$objext
		k=`expr $k + 1`
		output=$output_objdir/$save_output-${k}.$objext
		objlist=$obj
		len=1
	      fi
	    done
	    # Handle the remaining objects by creating one last
	    # reloadable object file.  All subsequent reloadable object
	    # files will link in the last one created.
	    test -z "$concat_cmds" || concat_cmds=$concat_cmds~
	    eval concat_cmds=\"\${concat_cmds}$reload_cmds $objlist $last_robj\"

	    # Set up a command to remove the reloadale object files
	    # after they are used.
	    i=0
	    while test $i -lt $k
	    do
	      i=`expr $i + 1`
	      delfiles="$delfiles $output_objdir/$save_output-${i}.$objext"
	    done

	    $echo "creating a temporary reloadable object file: $output"

	    # Loop through the commands generated above and execute them.
	    IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
	    for cmd in $concat_cmds; do
	      IFS="$save_ifs"
	      eval cmd=\"$cmd\"
	      $show "$cmd"
	      $run eval "$cmd" || exit $?
	    done
	    IFS="$save_ifs"
	  fi

	  libobjs=$output
3404
	  # Restore the value of output.
3405
	  output=$save_output
3406 3407 3408 3409 3410 3411 3412 3413 3414

	  if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then
	    eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
	  fi
	  # Expand the library linking commands again to reset the
	  # value of $libobjs for piecewise linking.

	  # Do each of the archive commands.
          if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
3415 3416 3417
	    cmds=$archive_expsym_cmds
	  else
	    cmds=$archive_cmds
3418
	  fi
3419 3420 3421

	  # Append the command to remove the reloadable object files
	  # to the just-reset $cmds.
3422 3423 3424 3425 3426
	  eval cmds=\"\$cmds~$rm $delfiles\"
	fi
	IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
	for cmd in $cmds; do
	  IFS="$save_ifs"
3427
	  eval cmd=\"$cmd\"
3428 3429 3430 3431
	  $show "$cmd"
	  $run eval "$cmd" || exit $?
	done
	IFS="$save_ifs"
3432

3433
	# Restore the uninstalled library and exit
3434
	if test "$mode" = relink; then
3435 3436 3437 3438
	  $run eval '(cd $output_objdir && $rm ${realname}T && $mv $realname ${realname}T && $mv "$realname"U $realname)' || exit $?
	  exit 0
	fi

3439 3440
	# Create links to the real library.
	for linkname in $linknames; do
#  
Jeff Law committed
3441
	  if test "$realname" != "$linkname"; then
3442 3443
	    $show "(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)"
	    $run eval '(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)' || exit $?
3444 3445
	  fi
	done
Jason Merrill committed
3446

3447 3448
	# If -module or -export-dynamic was specified, set the dlname.
	if test "$module" = yes || test "$export_dynamic" = yes; then
3449 3450 3451
	  # On all known operating systems, these are identical.
	  dlname="$soname"
	fi
Jason Merrill committed
3452 3453 3454
      fi
      ;;

3455
    obj)
Jason Merrill committed
3456
      if test -n "$deplibs"; then
3457
	$echo "$modename: warning: \`-l' and \`-L' are ignored for objects" 1>&2
#  
Jeff Law committed
3458 3459
      fi

Jason Merrill committed
3460
      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
3461
	$echo "$modename: warning: \`-dlopen' is ignored for objects" 1>&2
Jason Merrill committed
3462 3463
      fi

#  
Jeff Law committed
3464
      if test -n "$rpath"; then
3465 3466 3467 3468 3469
	$echo "$modename: warning: \`-rpath' is ignored for objects" 1>&2
      fi

      if test -n "$xrpath"; then
	$echo "$modename: warning: \`-R' is ignored for objects" 1>&2
Jason Merrill committed
3470 3471 3472
      fi

      if test -n "$vinfo"; then
3473
	$echo "$modename: warning: \`-version-info' is ignored for objects" 1>&2
#  
Jeff Law committed
3474 3475 3476
      fi

      if test -n "$release"; then
3477
	$echo "$modename: warning: \`-release' is ignored for objects" 1>&2
Jason Merrill committed
3478 3479
      fi

3480
      case $output in
Jason Merrill committed
3481
      *.lo)
3482
	if test -n "$objs$old_deplibs"; then
3483 3484 3485 3486 3487 3488
	  $echo "$modename: cannot build library object \`$output' from non-libtool objects" 1>&2
	  exit 1
	fi
	libobj="$output"
	obj=`$echo "X$output" | $Xsed -e "$lo2o"`
	;;
Jason Merrill committed
3489
      *)
3490 3491 3492
	libobj=
	obj="$output"
	;;
Jason Merrill committed
3493 3494 3495 3496 3497
      esac

      # Delete the old objects.
      $run $rm $obj $libobj

Jason Merrill committed
3498 3499 3500 3501 3502 3503 3504 3505
      # Objects from convenience libraries.  This assumes
      # single-version convenience libraries.  Whenever we create
      # different ones for PIC/non-PIC, this we'll have to duplicate
      # the extraction.
      reload_conv_objs=
      gentop=
      # reload_cmds runs $LD directly, so let us get rid of
      # -Wl from whole_archive_flag_spec
3506
      wl=
Jason Merrill committed
3507 3508 3509 3510 3511 3512 3513 3514

      if test -n "$convenience"; then
	if test -n "$whole_archive_flag_spec"; then
	  eval reload_conv_objs=\"\$reload_objs $whole_archive_flag_spec\"
	else
	  gentop="$output_objdir/${obj}x"
	  $show "${rm}r $gentop"
	  $run ${rm}r "$gentop"
3515 3516
	  $show "$mkdir $gentop"
	  $run $mkdir "$gentop"
Jason Merrill committed
3517 3518 3519 3520 3521 3522 3523 3524
	  status=$?
	  if test $status -ne 0 && test ! -d "$gentop"; then
	    exit $status
	  fi
	  generated="$generated $gentop"

	  for xlib in $convenience; do
	    # Extract the objects.
3525
	    case $xlib in
Jason Merrill committed
3526 3527 3528 3529 3530 3531 3532 3533
	    [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;;
	    *) xabs=`pwd`"/$xlib" ;;
	    esac
	    xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
	    xdir="$gentop/$xlib"

	    $show "${rm}r $xdir"
	    $run ${rm}r "$xdir"
3534 3535
	    $show "$mkdir $xdir"
	    $run $mkdir "$xdir"
Jason Merrill committed
3536 3537 3538 3539 3540 3541 3542
	    status=$?
	    if test $status -ne 0 && test ! -d "$xdir"; then
	      exit $status
	    fi
	    $show "(cd $xdir && $AR x $xabs)"
	    $run eval "(cd \$xdir && $AR x \$xabs)" || exit $?

3543
	    reload_conv_objs="$reload_objs "`find $xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP`
Jason Merrill committed
3544 3545 3546 3547
	  done
	fi
      fi

Jason Merrill committed
3548
      # Create the old-style object.
3549
      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
Jason Merrill committed
3550 3551

      output="$obj"
#  
Jeff Law committed
3552
      eval cmds=\"$reload_cmds\"
3553
      IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
Jason Merrill committed
3554
      for cmd in $cmds; do
3555 3556 3557
	IFS="$save_ifs"
	$show "$cmd"
	$run eval "$cmd" || exit $?
Jason Merrill committed
3558 3559 3560 3561
      done
      IFS="$save_ifs"

      # Exit if we aren't doing a library object file.
Jason Merrill committed
3562 3563 3564 3565 3566 3567 3568 3569
      if test -z "$libobj"; then
	if test -n "$gentop"; then
	  $show "${rm}r $gentop"
	  $run ${rm}r $gentop
	fi

	exit 0
      fi
Jason Merrill committed
3570 3571

      if test "$build_libtool_libs" != yes; then
Jason Merrill committed
3572 3573 3574 3575 3576
	if test -n "$gentop"; then
	  $show "${rm}r $gentop"
	  $run ${rm}r $gentop
	fi

3577 3578
	# Create an invalid libtool object if no PIC, so that we don't
	# accidentally link it into a program.
3579 3580
	# $show "echo timestamp > $libobj"
	# $run eval "echo timestamp > $libobj" || exit $?
3581
	exit 0
Jason Merrill committed
3582 3583
      fi

3584
      if test -n "$pic_flag" || test "$pic_mode" != default; then
3585
	# Only do commands if we really have different PIC objects.
Jason Merrill committed
3586
	reload_objs="$libobjs $reload_conv_objs"
3587 3588 3589 3590 3591 3592 3593 3594 3595
	output="$libobj"
	eval cmds=\"$reload_cmds\"
	IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
	for cmd in $cmds; do
	  IFS="$save_ifs"
	  $show "$cmd"
	  $run eval "$cmd" || exit $?
	done
	IFS="$save_ifs"
3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609
#     else
#	# Just create a symlink.
#	$show $rm $libobj
#	$run $rm $libobj
#	xdir=`$echo "X$libobj" | $Xsed -e 's%/[^/]*$%%'`
#	if test "X$xdir" = "X$libobj"; then
#	  xdir="."
#	else
#	  xdir="$xdir"
#	fi
#	baseobj=`$echo "X$libobj" | $Xsed -e 's%^.*/%%'`
#	oldobj=`$echo "X$baseobj" | $Xsed -e "$lo2o"`
#	$show "(cd $xdir && $LN_S $oldobj $baseobj)"
#	$run eval '(cd $xdir && $LN_S $oldobj $baseobj)' || exit $?
Jason Merrill committed
3610 3611 3612 3613 3614
      fi

      if test -n "$gentop"; then
	$show "${rm}r $gentop"
	$run ${rm}r $gentop
Jason Merrill committed
3615 3616 3617 3618 3619
      fi

      exit 0
      ;;

3620
    prog)
3621
      case $host in
3622
	*cygwin*) output=`echo $output | sed -e 's,.exe$,,;s,$,.exe,'` ;;
3623
      esac
#  
Jeff Law committed
3624
      if test -n "$vinfo"; then
3625
	$echo "$modename: warning: \`-version-info' is ignored for programs" 1>&2
Jason Merrill committed
3626 3627
      fi

#  
Jeff Law committed
3628
      if test -n "$release"; then
3629
	$echo "$modename: warning: \`-release' is ignored for programs" 1>&2
Jason Merrill committed
3630 3631
      fi

3632
      if test "$preload" = yes; then
3633
	if test "$dlopen_support" = unknown && test "$dlopen_self" = unknown &&
3634 3635
	   test "$dlopen_self_static" = unknown; then
	  $echo "$modename: warning: \`AC_LIBTOOL_DLOPEN' not used. Assuming no dlopen support."
3636
	fi
3637
      fi
3638

3639 3640 3641 3642 3643 3644 3645 3646
      case $host in
      *-*-rhapsody* | *-*-darwin1.[012])
	# On Rhapsody replace the C library is the System framework
	compile_deplibs=`$echo "X $compile_deplibs" | $Xsed -e 's/ -lc / -framework System /'`
	finalize_deplibs=`$echo "X $finalize_deplibs" | $Xsed -e 's/ -lc / -framework System /'`
	;;
      esac

3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659
      case $host in
      *-*-darwin*)
      # Don't allow lazy linking, it breaks C++ global constructors
	if test "$tagname" = CXX ; then
	   compile_command="$compile_command ${wl}-bind_at_load"
	   finalize_command="$finalize_command ${wl}-bind_at_load"
	fi
      # Time to change all our "foo.framework" stuff back to "-framework foo"
	compile_deplibs=`$echo "X $compile_deplibs" | $Xsed -e 's% \([^ $]*\).framework% -framework \1%g'`
	finalize_deplibs=`$echo "X $finalize_deplibs" | $Xsed -e 's% \([^ $]*\).framework% -framework \1%g'`
	;;
      esac

3660 3661 3662
      compile_command="$compile_command $compile_deplibs"
      finalize_command="$finalize_command $finalize_deplibs"

3663
      if test -n "$rpath$xrpath"; then
#  
Jeff Law committed
3664
	# If the user specified any rpath flags, then add them.
3665 3666 3667 3668 3669 3670
	for libdir in $rpath $xrpath; do
	  # This is the magic to use -rpath.
	  case "$finalize_rpath " in
	  *" $libdir "*) ;;
	  *) finalize_rpath="$finalize_rpath $libdir" ;;
	  esac
#  
Jeff Law committed
3671
	done
Jason Merrill committed
3672 3673
      fi

3674 3675 3676
      # Now hardcode the library paths
      rpath=
      hardcode_libdirs=
3677
      for libdir in $compile_rpath; do
3678 3679 3680 3681 3682 3683
	if test -n "$hardcode_libdir_flag_spec"; then
	  if test -n "$hardcode_libdir_separator"; then
	    if test -z "$hardcode_libdirs"; then
	      hardcode_libdirs="$libdir"
	    else
	      # Just accumulate the unique libdirs.
3684
	      case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701
	      *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
		;;
	      *)
		hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
		;;
	      esac
	    fi
	  else
	    eval flag=\"$hardcode_libdir_flag_spec\"
	    rpath="$rpath $flag"
	  fi
	elif test -n "$runpath_var"; then
	  case "$perm_rpath " in
	  *" $libdir "*) ;;
	  *) perm_rpath="$perm_rpath $libdir" ;;
	  esac
	fi
3702
	case $host in
3703
	*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
3704
	  case :$dllsearchpath: in
3705 3706 3707 3708 3709
	  *":$libdir:"*) ;;
	  *) dllsearchpath="$dllsearchpath:$libdir";;
	  esac
	  ;;
	esac
3710 3711 3712 3713 3714 3715
      done
      # Substitute the hardcoded libdirs into the rpath.
      if test -n "$hardcode_libdir_separator" &&
	 test -n "$hardcode_libdirs"; then
	libdir="$hardcode_libdirs"
	eval rpath=\" $hardcode_libdir_flag_spec\"
#  
Jeff Law committed
3716
      fi
3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727
      compile_rpath="$rpath"

      rpath=
      hardcode_libdirs=
      for libdir in $finalize_rpath; do
	if test -n "$hardcode_libdir_flag_spec"; then
	  if test -n "$hardcode_libdir_separator"; then
	    if test -z "$hardcode_libdirs"; then
	      hardcode_libdirs="$libdir"
	    else
	      # Just accumulate the unique libdirs.
3728
	      case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751
	      *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
		;;
	      *)
		hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
		;;
	      esac
	    fi
	  else
	    eval flag=\"$hardcode_libdir_flag_spec\"
	    rpath="$rpath $flag"
	  fi
	elif test -n "$runpath_var"; then
	  case "$finalize_perm_rpath " in
	  *" $libdir "*) ;;
	  *) finalize_perm_rpath="$finalize_perm_rpath $libdir" ;;
	  esac
	fi
      done
      # Substitute the hardcoded libdirs into the rpath.
      if test -n "$hardcode_libdir_separator" &&
	 test -n "$hardcode_libdirs"; then
	libdir="$hardcode_libdirs"
	eval rpath=\" $hardcode_libdir_flag_spec\"
#  
Jeff Law committed
3752
      fi
3753
      finalize_rpath="$rpath"
#  
Jeff Law committed
3754

3755
      dlsyms=
Jason Merrill committed
3756
      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
3757 3758
	if test -n "$NM" && test -n "$global_symbol_pipe"; then
	  dlsyms="${outputname}S.c"
#  
Jeff Law committed
3759
	else
3760
	  $echo "$modename: not configured to extract global symbols from dlpreopened files" 1>&2
Jason Merrill committed
3761
	fi
3762
      fi
#  
Jeff Law committed
3763

3764
      if test -n "$dlsyms"; then
3765
	case $dlsyms in
3766 3767 3768
	"") ;;
	*.c)
	  # Discover the nlist of each of the dlfiles.
Jason Merrill committed
3769
	  nlist="$output_objdir/${outputname}.nm"
3770

Jason Merrill committed
3771 3772
	  $show "$rm $nlist ${nlist}S ${nlist}T"
	  $run $rm "$nlist" "${nlist}S" "${nlist}T"
#  
Jeff Law committed
3773

3774
	  # Parse the name list into a source file.
Jason Merrill committed
3775
	  $show "creating $output_objdir/$dlsyms"
3776

Jason Merrill committed
3777
	  test -z "$run" && $echo > "$output_objdir/$dlsyms" "\
3778 3779
/* $dlsyms - symbol resolution table for \`$outputname' dlsym emulation. */
/* Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP */
#  
Jeff Law committed
3780 3781 3782 3783 3784 3785

#ifdef __cplusplus
extern \"C\" {
#endif

/* Prevent the only kind of declaration conflicts we can make. */
3786
#define lt_preloaded_symbols some_other_symbol
#  
Jeff Law committed
3787 3788 3789 3790

/* External symbol declarations for the compiler. */\
"

3791 3792 3793
	  if test "$dlself" = yes; then
	    $show "generating symbol list for \`$output'"

Jason Merrill committed
3794
	    test -z "$run" && $echo ': @PROGRAM@ ' > "$nlist"
3795 3796

	    # Add our own program objects to the symbol list.
3797
	    progfiles="$objs$old_deplibs"
3798 3799 3800 3801 3802 3803 3804 3805 3806
	    for arg in $progfiles; do
	      $show "extracting global C symbols from \`$arg'"
	      $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'"
	    done

	    if test -n "$exclude_expsyms"; then
	      $run eval 'egrep -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T'
	      $run eval '$mv "$nlist"T "$nlist"'
	    fi
3807

3808 3809 3810 3811 3812 3813 3814
	    if test -n "$export_symbols_regex"; then
	      $run eval 'egrep -e "$export_symbols_regex" "$nlist" > "$nlist"T'
	      $run eval '$mv "$nlist"T "$nlist"'
	    fi

	    # Prepare the list of exported symbols
	    if test -z "$export_symbols"; then
Jason Merrill committed
3815
	      export_symbols="$output_objdir/$output.exp"
3816 3817 3818
	      $run $rm $export_symbols
	      $run eval "sed -n -e '/^: @PROGRAM@$/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"'
	    else
Jason Merrill committed
3819 3820
	      $run eval "sed -e 's/\([][.*^$]\)/\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$output.exp"'
	      $run eval 'grep -f "$output_objdir/$output.exp" < "$nlist" > "$nlist"T'
3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841
	      $run eval 'mv "$nlist"T "$nlist"'
	    fi
	  fi

	  for arg in $dlprefiles; do
	    $show "extracting global C symbols from \`$arg'"
	    name=`echo "$arg" | sed -e 's%^.*/%%'`
	    $run eval 'echo ": $name " >> "$nlist"'
	    $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'"
	  done

	  if test -z "$run"; then
	    # Make sure we have at least an empty file.
	    test -f "$nlist" || : > "$nlist"

	    if test -n "$exclude_expsyms"; then
	      egrep -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T
	      $mv "$nlist"T "$nlist"
	    fi

	    # Try sorting and uniquifying the output.
3842 3843 3844 3845 3846 3847 3848
	    if grep -v "^: " < "$nlist" |
		if sort -k 3 </dev/null >/dev/null 2>&1; then
		  sort -k 3
		else
		  sort +2
		fi |
		uniq > "$nlist"S; then
3849 3850 3851 3852 3853 3854 3855
	      :
	    else
	      grep -v "^: " < "$nlist" > "$nlist"S
	    fi

	    if test -f "$nlist"S; then
	      eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$dlsyms"'
#  
Jeff Law committed
3856
	    else
3857
	      echo '/* NONE */' >> "$output_objdir/$dlsyms"
#  
Jeff Law committed
3858 3859
	    fi

3860
	    $echo >> "$output_objdir/$dlsyms" "\
#  
Jeff Law committed
3861

3862
#undef lt_preloaded_symbols
#  
Jeff Law committed
3863 3864

#if defined (__STDC__) && __STDC__
3865
# define lt_ptr_t void *
#  
Jeff Law committed
3866
#else
3867 3868
# define lt_ptr_t char *
# define const
#  
Jeff Law committed
3869 3870 3871
#endif

/* The mapping between symbol names and symbols. */
3872 3873 3874
const struct {
  const char *name;
  lt_ptr_t address;
#  
Jeff Law committed
3875
}
3876
lt_preloaded_symbols[] =
#  
Jeff Law committed
3877 3878 3879
{\
"

3880 3881 3882
	    sed -n -e 's/^: \([^ ]*\) $/  {\"\1\", (lt_ptr_t) 0},/p' \
		-e 's/^. \([^ ]*\) \([^ ]*\)$/  {"\2", (lt_ptr_t) \&\2},/p' \
		  < "$nlist" >> "$output_objdir/$dlsyms"
#  
Jeff Law committed
3883

3884 3885
	    $echo >> "$output_objdir/$dlsyms" "\
  {0, (lt_ptr_t) 0}
#  
Jeff Law committed
3886 3887
};

3888 3889 3890 3891 3892 3893 3894
/* This works around a problem in FreeBSD linker */
#ifdef FREEBSD_WORKAROUND
static const void *lt_preloaded_setup() {
  return lt_preloaded_symbols;
}
#endif

#  
Jeff Law committed
3895 3896 3897 3898
#ifdef __cplusplus
}
#endif\
"
3899
	  fi
#  
Jeff Law committed
3900

3901
	  pic_flag_for_symtable=
3902
	  case $host in
3903 3904 3905 3906 3907
	  # compiling the symbol table file with pic_flag works around
	  # a FreeBSD bug that causes programs to crash when -lm is
	  # linked before any other PIC object.  But we must not use
	  # pic_flag when linking with -static.  The problem exists in
	  # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1.
3908
	  *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)
3909 3910
	    case "$compile_command " in
	    *" -static "*) ;;
3911
	    *) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND";;
Jason Merrill committed
3912 3913 3914 3915
	    esac;;
	  *-*-hpux*)
	    case "$compile_command " in
	    *" -static "*) ;;
3916
	    *) pic_flag_for_symtable=" $pic_flag";;
3917
	    esac
#  
Jeff Law committed
3918 3919
	  esac

3920
	  # Now compile the dynamic symbol file.
3921 3922
	  $show "(cd $output_objdir && $LTCC -c$no_builtin_flag$pic_flag_for_symtable \"$dlsyms\")"
	  $run eval '(cd $output_objdir && $LTCC -c$no_builtin_flag$pic_flag_for_symtable "$dlsyms")' || exit $?
Jason Merrill committed
3923 3924 3925 3926

	  # Clean up the generated files.
	  $show "$rm $output_objdir/$dlsyms $nlist ${nlist}S ${nlist}T"
	  $run $rm "$output_objdir/$dlsyms" "$nlist" "${nlist}S" "${nlist}T"
#  
Jeff Law committed
3927

3928
	  # Transform the symbol file into the correct name.
Jason Merrill committed
3929 3930
	  compile_command=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
	  finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
3931 3932 3933 3934 3935 3936
	  ;;
	*)
	  $echo "$modename: unknown suffix for \`$dlsyms'" 1>&2
	  exit 1
	  ;;
	esac
#  
Jeff Law committed
3937
      else
3938 3939 3940
	# We keep going just in case the user didn't refer to
	# lt_preloaded_symbols.  The linker will fail if global_symbol_pipe
	# really was required.
#  
Jeff Law committed
3941

3942 3943 3944
	# Nullify the symbol file.
	compile_command=`$echo "X$compile_command" | $Xsed -e "s% @SYMFILE@%%"`
	finalize_command=`$echo "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"`
#  
Jeff Law committed
3945 3946
      fi

3947
      if test $need_relink = no || test "$build_libtool_libs" != yes; then
3948 3949 3950 3951 3952 3953 3954
	# Replace the output file specification.
	compile_command=`$echo "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
	link_command="$compile_command$compile_rpath"

	# We have no uninstalled library dependencies, so finalize right now.
	$show "$link_command"
	$run eval "$link_command"
Jason Merrill committed
3955
	status=$?
3956

Jason Merrill committed
3957 3958 3959 3960 3961 3962 3963
	# Delete the generated files.
	if test -n "$dlsyms"; then
	  $show "$rm $output_objdir/${outputname}S.${objext}"
	  $run $rm "$output_objdir/${outputname}S.${objext}"
	fi

	exit $status
Jason Merrill committed
3964 3965 3966
      fi

      if test -n "$shlibpath_var"; then
3967 3968 3969
	# We should set the shlibpath_var
	rpath=
	for dir in $temp_rpath; do
3970
	  case $dir in
Jason Merrill committed
3971
	  [\\/]* | [A-Za-z]:[\\/]*)
3972 3973 3974 3975 3976 3977 3978 3979 3980 3981
	    # Absolute path.
	    rpath="$rpath$dir:"
	    ;;
	  *)
	    # Relative path: add a thisdir entry.
	    rpath="$rpath\$thisdir/$dir:"
	    ;;
	  esac
	done
	temp_rpath="$rpath"
Jason Merrill committed
3982 3983
      fi

3984 3985
      if test -n "$compile_shlibpath$finalize_shlibpath"; then
	compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command"
Jason Merrill committed
3986 3987
      fi
      if test -n "$finalize_shlibpath"; then
3988
	finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command"
Jason Merrill committed
3989 3990
      fi

3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009
      compile_var=
      finalize_var=
      if test -n "$runpath_var"; then
	if test -n "$perm_rpath"; then
	  # We should set the runpath_var.
	  rpath=
	  for dir in $perm_rpath; do
	    rpath="$rpath$dir:"
	  done
	  compile_var="$runpath_var=\"$rpath\$$runpath_var\" "
	fi
	if test -n "$finalize_perm_rpath"; then
	  # We should set the runpath_var.
	  rpath=
	  for dir in $finalize_perm_rpath; do
	    rpath="$rpath$dir:"
	  done
	  finalize_var="$runpath_var=\"$rpath\$$runpath_var\" "
	fi
Jason Merrill committed
4010 4011
      fi

4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024
      if test "$no_install" = yes; then
	# We don't need to create a wrapper script.
	link_command="$compile_var$compile_command$compile_rpath"
	# Replace the output file specification.
	link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
	# Delete the old output file.
	$run $rm $output
	# Link the executable and exit
	$show "$link_command"
	$run eval "$link_command" || exit $?
	exit 0
      fi

4025
      if test "$hardcode_action" = relink; then
4026 4027 4028
	# Fast installation is not supported
	link_command="$compile_var$compile_command$compile_rpath"
	relink_command="$finalize_var$finalize_command$finalize_rpath"
4029

4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048
	$echo "$modename: warning: this platform does not like uninstalled shared libraries" 1>&2
	$echo "$modename: \`$output' will be relinked during installation" 1>&2
      else
	if test "$fast_install" != no; then
	  link_command="$finalize_var$compile_command$finalize_rpath"
	  if test "$fast_install" = yes; then
	    relink_command=`$echo "X$compile_var$compile_command$compile_rpath" | $Xsed -e 's%@OUTPUT@%\$progdir/\$file%g'`
	  else
	    # fast_install is set to needless
	    relink_command=
	  fi
	else
	  link_command="$compile_var$compile_command$compile_rpath"
	  relink_command="$finalize_var$finalize_command$finalize_rpath"
	fi
      fi

      # Replace the output file specification.
      link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'`
4049

Jason Merrill committed
4050
      # Delete the old output files.
4051 4052 4053 4054
      $run $rm $output $output_objdir/$outputname $output_objdir/lt-$outputname

      $show "$link_command"
      $run eval "$link_command" || exit $?
Jason Merrill committed
4055 4056

      # Now create the wrapper script.
#  
Jeff Law committed
4057 4058
      $show "creating $output"

4059 4060
      # Quote the relink command for shipping.
      if test -n "$relink_command"; then
4061
	# Preserve any variables that may affect compiler behavior
Jason Merrill committed
4062
	for var in $variables_saved_for_relink; do
4063 4064 4065 4066 4067 4068 4069 4070
	  if eval test -z \"\${$var+set}\"; then
	    relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command"
	  elif eval var_value=\$$var; test -z "$var_value"; then
	    relink_command="$var=; export $var; $relink_command"
	  else
	    var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
	    relink_command="$var=\"$var_value\"; export $var; $relink_command"
	  fi
Jason Merrill committed
4071
	done
4072
	relink_command="cd `pwd`; $relink_command"
4073 4074
	relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
      fi
#  
Jeff Law committed
4075 4076

      # Quote $echo for shipping.
4077
      if test "X$echo" = "X$SHELL $0 --fallback-echo"; then
4078
	case $0 in
Jason Merrill committed
4079
	[\\/]* | [A-Za-z]:[\\/]*) qecho="$SHELL $0 --fallback-echo";;
4080 4081 4082 4083 4084 4085
	*) qecho="$SHELL `pwd`/$0 --fallback-echo";;
	esac
	qecho=`$echo "X$qecho" | $Xsed -e "$sed_quote_subst"`
      else
	qecho=`$echo "X$echo" | $Xsed -e "$sed_quote_subst"`
      fi
Jason Merrill committed
4086 4087 4088

      # Only actually do things if our run command is non-null.
      if test -z "$run"; then
4089 4090 4091 4092 4093
	# win32 will think the script is a binary if it has
	# a .exe suffix, so we strip it off here.
	case $output in
	  *.exe) output=`echo $output|sed 's,.exe$,,'` ;;
	esac
4094 4095 4096 4097 4098
	# test for cygwin because mv fails w/o .exe extensions
	case $host in
	  *cygwin*) exeext=.exe ;;
	  *) exeext= ;;
	esac
4099 4100
	$rm $output
	trap "$rm $output; exit 1" 1 2 15
Jason Merrill committed
4101

4102
	$echo > $output "\
#  
Jeff Law committed
4103
#! $SHELL
Jason Merrill committed
4104

4105 4106
# $output - temporary wrapper script for $objdir/$outputname
# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
Jason Merrill committed
4107 4108 4109 4110
#
# The $output program cannot be directly executed until all the libtool
# libraries that it depends on are installed.
#
4111
# This wrapper script should never be moved out of the build directory.
Jason Merrill committed
4112 4113
# If it is, it will not operate correctly.

#  
Jeff Law committed
4114 4115
# Sed substitution that helps us do robust quoting.  It backslashifies
# metacharacters that are still active within double-quoted strings.
4116
Xsed='sed -e 1s/^X//'
#  
Jeff Law committed
4117 4118 4119 4120
sed_quote_subst='$sed_quote_subst'

# The HP-UX ksh and POSIX shell print the target directory to stdout
# if CDPATH is set.
Jason Merrill committed
4121
if test \"\${CDPATH+set}\" = set; then CDPATH=:; export CDPATH; fi
#  
Jeff Law committed
4122

4123 4124
relink_command=\"$relink_command\"

Jason Merrill committed
4125
# This environment variable determines our operation mode.
#  
Jeff Law committed
4126
if test \"\$libtool_install_magic\" = \"$magic\"; then
4127
  # install mode needs the following variable:
4128
  notinst_deplibs='$notinst_deplibs'
Jason Merrill committed
4129
else
#  
Jeff Law committed
4130
  # When we are sourced in execute mode, \$file and \$echo are already set.
4131
  if test \"\$libtool_execute_magic\" != \"$magic\"; then
#  
Jeff Law committed
4132 4133
    echo=\"$qecho\"
    file=\"\$0\"
4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144
    # Make sure echo works.
    if test \"X\$1\" = X--no-reexec; then
      # Discard the --no-reexec flag, and continue.
      shift
    elif test \"X\`(\$echo '\t') 2>/dev/null\`\" = 'X\t'; then
      # Yippee, \$echo works!
      :
    else
      # Restart under the correct shell, and then maybe \$echo will work.
      exec $SHELL \"\$0\" --no-reexec \${1+\"\$@\"}
    fi
#  
Jeff Law committed
4145 4146
  fi\
"
4147
	$echo >> $output "\
Jason Merrill committed
4148

#  
Jeff Law committed
4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160
  # Find the directory that this script lives in.
  thisdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\`
  test \"x\$thisdir\" = \"x\$file\" && thisdir=.

  # Follow symbolic links until we get to the real thisdir.
  file=\`ls -ld \"\$file\" | sed -n 's/.*-> //p'\`
  while test -n \"\$file\"; do
    destdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\`

    # If there was a directory component, then change thisdir.
    if test \"x\$destdir\" != \"x\$file\"; then
      case \"\$destdir\" in
4161
      [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;;
#  
Jeff Law committed
4162 4163 4164
      *) thisdir=\"\$thisdir/\$destdir\" ;;
      esac
    fi
Jason Merrill committed
4165

#  
Jeff Law committed
4166 4167 4168
    file=\`\$echo \"X\$file\" | \$Xsed -e 's%^.*/%%'\`
    file=\`ls -ld \"\$thisdir/\$file\" | sed -n 's/.*-> //p'\`
  done
Jason Merrill committed
4169

#  
Jeff Law committed
4170 4171 4172
  # Try to get the absolute directory name.
  absdir=\`cd \"\$thisdir\" && pwd\`
  test -n \"\$absdir\" && thisdir=\"\$absdir\"
4173
"
Jason Merrill committed
4174

4175 4176
	if test "$fast_install" = yes; then
	  echo >> $output "\
4177
  program=lt-'$outputname'$exeext
#  
Jeff Law committed
4178
  progdir=\"\$thisdir/$objdir\"
4179

4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195
  if test ! -f \"\$progdir/\$program\" || \\
     { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | sed 1q\`; \\
       test \"X\$file\" != \"X\$progdir/\$program\"; }; then

    file=\"\$\$-\$program\"

    if test ! -d \"\$progdir\"; then
      $mkdir \"\$progdir\"
    else
      $rm \"\$progdir/\$file\"
    fi"

	  echo >> $output "\

    # relink executable if necessary
    if test -n \"\$relink_command\"; then
4196
      if relink_command_output=\`eval \$relink_command 2>&1\`; then :
4197
      else
4198
        $echo \"\$relink_command_output\" >&2
4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216
	$rm \"\$progdir/\$file\"
	exit 1
      fi
    fi

    $mv \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null ||
    { $rm \"\$progdir/\$program\";
      $mv \"\$progdir/\$file\" \"\$progdir/\$program\"; }
    $rm \"\$progdir/\$file\"
  fi"
	else
	  echo >> $output "\
  program='$outputname'
  progdir=\"\$thisdir/$objdir\"
"
	fi

	echo >> $output "\
Jason Merrill committed
4217

#  
Jeff Law committed
4218
  if test -f \"\$progdir/\$program\"; then"
Jason Merrill committed
4219

4220 4221 4222
	# Export our shlibpath_var if we have one.
	if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
	  $echo >> $output "\
Jason Merrill committed
4223
    # Add our own library path to $shlibpath_var
#  
Jeff Law committed
4224
    $shlibpath_var=\"$temp_rpath\$$shlibpath_var\"
Jason Merrill committed
4225 4226

    # Some systems cannot cope with colon-terminated $shlibpath_var
4227 4228
    # The second colon is a workaround for a bug in BeOS R4 sed
    $shlibpath_var=\`\$echo \"X\$$shlibpath_var\" | \$Xsed -e 's/::*\$//'\`
Jason Merrill committed
4229 4230

    export $shlibpath_var
#  
Jeff Law committed
4231
"
4232 4233 4234 4235 4236 4237 4238 4239 4240
	fi

	# fixup the dll searchpath if we need to.
	if test -n "$dllsearchpath"; then
	  $echo >> $output "\
    # Add the dll search path components to the executable PATH
    PATH=$dllsearchpath:\$PATH
"
	fi
Jason Merrill committed
4241

4242
	$echo >> $output "\
#  
Jeff Law committed
4243 4244
    if test \"\$libtool_execute_magic\" != \"$magic\"; then
      # Run the actual program with our arguments.
4245 4246
"
	case $host in
4247 4248
	# win32 systems need to use the prog path for dll
	# lookup to work
4249
	*-*-cygwin* | *-*-pw32*)
4250 4251 4252 4253 4254 4255 4256
	  $echo >> $output "\
      exec \$progdir/\$program \${1+\"\$@\"}
"
	  ;;

	# Backslashes separate directories on plain windows
	*-*-mingw | *-*-os2*)
4257 4258 4259 4260
	  $echo >> $output "\
      exec \$progdir\\\\\$program \${1+\"\$@\"}
"
	  ;;
4261

4262 4263
	*)
	  $echo >> $output "\
#  
Jeff Law committed
4264 4265 4266
      # Export the path to the program.
      PATH=\"\$progdir:\$PATH\"
      export PATH
Jason Merrill committed
4267

#  
Jeff Law committed
4268
      exec \$program \${1+\"\$@\"}
4269 4270 4271 4272
"
	  ;;
	esac
	$echo >> $output "\
#  
Jeff Law committed
4273 4274 4275
      \$echo \"\$0: cannot exec \$program \${1+\"\$@\"}\"
      exit 1
    fi
Jason Merrill committed
4276 4277
  else
    # The program doesn't exist.
#  
Jeff Law committed
4278 4279 4280
    \$echo \"\$0: error: \$progdir/\$program does not exist\" 1>&2
    \$echo \"This script is just a wrapper for \$program.\" 1>&2
    echo \"See the $PACKAGE documentation for more information.\" 1>&2
Jason Merrill committed
4281 4282
    exit 1
  fi
#  
Jeff Law committed
4283 4284
fi\
"
4285
	chmod +x $output
Jason Merrill committed
4286 4287 4288 4289 4290 4291
      fi
      exit 0
      ;;
    esac

    # See if we need to build an old-fashioned archive.
4292 4293 4294
    for oldlib in $oldlibs; do

      if test "$build_libtool_libs" = convenience; then
4295
	oldobjs="$libobjs_save"
4296 4297 4298
	addlibs="$convenience"
	build_libtool_libs=no
      else
4299 4300 4301 4302
	if test "$build_libtool_libs" = module; then
	  oldobjs="$libobjs_save"
	  build_libtool_libs=no
	else
4303
	  oldobjs="$objs$old_deplibs $non_pic_objects"
4304
	fi
4305 4306 4307
	addlibs="$old_convenience"
      fi

Jason Merrill committed
4308 4309 4310 4311
      if test -n "$addlibs"; then
	gentop="$output_objdir/${outputname}x"
	$show "${rm}r $gentop"
	$run ${rm}r "$gentop"
4312 4313
	$show "$mkdir $gentop"
	$run $mkdir "$gentop"
4314
	status=$?
Jason Merrill committed
4315
	if test $status -ne 0 && test ! -d "$gentop"; then
4316 4317
	  exit $status
	fi
Jason Merrill committed
4318
	generated="$generated $gentop"
4319

Jason Merrill committed
4320 4321 4322
	# Add in members from convenience archives.
	for xlib in $addlibs; do
	  # Extract the objects.
4323
	  case $xlib in
Jason Merrill committed
4324 4325 4326 4327 4328
	  [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;;
	  *) xabs=`pwd`"/$xlib" ;;
	  esac
	  xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
	  xdir="$gentop/$xlib"
4329

Jason Merrill committed
4330 4331
	  $show "${rm}r $xdir"
	  $run ${rm}r "$xdir"
4332 4333
	  $show "$mkdir $xdir"
	  $run $mkdir "$xdir"
Jason Merrill committed
4334 4335 4336 4337 4338 4339 4340
	  status=$?
	  if test $status -ne 0 && test ! -d "$xdir"; then
	    exit $status
	  fi
	  $show "(cd $xdir && $AR x $xabs)"
	  $run eval "(cd \$xdir && $AR x \$xabs)" || exit $?

4341
	  oldobjs="$oldobjs "`find $xdir -name \*.${objext} -print | $NL2SP`
Jason Merrill committed
4342 4343
	done
      fi
Jason Merrill committed
4344

#  
Jeff Law committed
4345 4346 4347
      # Do each command in the archive commands.
      if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then
	eval cmds=\"$old_archive_from_new_cmds\"
Jason Merrill committed
4348
      else
4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365
#	# Ensure that we have .o objects in place in case we decided
#	# not to build a shared library, and have fallen back to building
#	# static libs even though --disable-static was passed!
#	for oldobj in $oldobjs; do
#	  if test ! -f $oldobj; then
#	    xdir=`$echo "X$oldobj" | $Xsed -e 's%/[^/]*$%%'`
#	    if test "X$xdir" = "X$oldobj"; then
#	      xdir="."
#	    else
#	      xdir="$xdir"
#	    fi
#	    baseobj=`$echo "X$oldobj" | $Xsed -e 's%^.*/%%'`
#	    obj=`$echo "X$baseobj" | $Xsed -e "$o2lo"`
#	    $show "(cd $xdir && ${LN_S} $obj $baseobj)"
#	    $run eval '(cd $xdir && ${LN_S} $obj $baseobj)' || exit $?
#	  fi
#	done
Jason Merrill committed
4366

4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423
	# POSIX demands no paths to be encoded in archives.  We have
	# to avoid creating archives with duplicate basenames if we
	# might have to extract them afterwards, e.g., when creating a
	# static archive out of a convenience library, or when linking
	# the entirety of a libtool archive into another (currently
	# not supported by libtool).
        if (for obj in $oldobjs
	    do
	      $echo "X$obj" | $Xsed -e 's%^.*/%%'
	    done | sort | sort -uc >/dev/null 2>&1); then
	  :
	else
	  $echo "copying selected object files to avoid basename conflicts..."

	  if test -z "$gentop"; then
	    gentop="$output_objdir/${outputname}x"

	    $show "${rm}r $gentop"
	    $run ${rm}r "$gentop"
	    $show "$mkdir $gentop"
	    $run $mkdir "$gentop"
	    status=$?
	    if test $status -ne 0 && test ! -d "$gentop"; then
	      exit $status
	    fi
	    generated="$generated $gentop"
	  fi

	  save_oldobjs=$oldobjs
	  oldobjs=
	  counter=1
	  for obj in $save_oldobjs
	  do
	    objbase=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`
	    case " $oldobjs " in
	    " ") oldobjs=$obj ;;
	    *[\ /]"$objbase "*)
	      while :; do
		# Make sure we don't pick an alternate name that also
		# overlaps.
	        newobj=lt$counter-$objbase
	        counter=`expr $counter + 1`
		case " $oldobjs " in
		*[\ /]"$newobj "*) ;;
		*) if test ! -f "$gentop/$newobj"; then break; fi ;;
		esac
	      done
	      $show "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj"
	      $run ln "$obj" "$gentop/$newobj" ||
	      $run cp "$obj" "$gentop/$newobj"
	      oldobjs="$oldobjs $gentop/$newobj"
	      ;;
	    *) oldobjs="$oldobjs $obj" ;;
	    esac
	  done
	fi

4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436
        eval cmds=\"$old_archive_cmds\"

        if len=`expr "X$cmds" : ".*"` &&
             test $len -le $max_cmd_len; then
          :
        else
          # the command line is too long to link in one step, link in parts
          $echo "using piecewise archive linking..."
	  save_RANLIB=$RANLIB
	  RANLIB=:
          objlist=
          concat_cmds=
          save_oldobjs=$oldobjs
4437

4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457
          for obj in $save_oldobjs
          do
            oldobjs="$objlist $obj"
            objlist="$objlist $obj"
            eval test_cmds=\"$old_archive_cmds\"
            if len=`expr "X$test_cmds" : ".*"` &&
               test $len -le $max_cmd_len; then
              :
            else
              # the above command should be used before it gets too long
              oldobjs=$objlist
	      test -z "$concat_cmds" || concat_cmds=$concat_cmds~
              eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\"
              objlist=
            fi
          done
	  RANLIB=$save_RANLIB
          oldobjs=$objlist
          eval cmds=\"\$concat_cmds~$old_archive_cmds\"
        fi
Jason Merrill committed
4458
      fi
4459
      IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
Jason Merrill committed
4460
      for cmd in $cmds; do
4461 4462 4463
	IFS="$save_ifs"
	$show "$cmd"
	$run eval "$cmd" || exit $?
Jason Merrill committed
4464 4465
      done
      IFS="$save_ifs"
4466 4467 4468 4469 4470
    done

    if test -n "$generated"; then
      $show "${rm}r$generated"
      $run ${rm}r$generated
Jason Merrill committed
4471 4472 4473
    fi

    # Now create the libtool archive.
4474
    case $output in
Jason Merrill committed
4475 4476
    *.la)
      old_library=
4477
      test "$build_old_libs" = yes && old_library="$libname.$libext"
#  
Jeff Law committed
4478
      $show "creating $output"
Jason Merrill committed
4479

4480 4481
      # Preserve any variables that may affect compiler behavior
      for var in $variables_saved_for_relink; do
4482 4483 4484 4485 4486 4487 4488 4489
	if eval test -z \"\${$var+set}\"; then
	  relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command"
	elif eval var_value=\$$var; test -z "$var_value"; then
	  relink_command="$var=; export $var; $relink_command"
	else
	  var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
	  relink_command="$var=\"$var_value\"; export $var; $relink_command"
	fi
4490 4491
      done
      # Quote the link command for shipping.
4492 4493 4494 4495
      tagopts=
      for tag in $taglist; do
        tagopts="$tagopts --tag $tag"
      done
4496
      relink_command="(cd `pwd`; $SHELL $0$tagopts --mode=relink $libtool_args @inst_prefix_dir@)"
4497
      relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
4498

Jason Merrill committed
4499 4500
      # Only create the output if not a dry run.
      if test -z "$run"; then
Jason Merrill committed
4501 4502 4503 4504 4505 4506
	for installed in no yes; do
	  if test "$installed" = yes; then
	    if test -z "$install_libdir"; then
	      break
	    fi
	    output="$output_objdir/$outputname"i
4507 4508 4509
	    # Replace all uninstalled libtool libraries with the installed ones
	    newdependency_libs=
	    for deplib in $dependency_libs; do
4510
	      case $deplib in
4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545
	      *.la)
		name=`$echo "X$deplib" | $Xsed -e 's%^.*/%%'`
		eval libdir=`sed -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
		if test -z "$libdir"; then
		  $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2
		  exit 1
		fi
		newdependency_libs="$newdependency_libs $libdir/$name"
		;;
	      *) newdependency_libs="$newdependency_libs $deplib" ;;
	      esac
	    done
	    dependency_libs="$newdependency_libs"
	    newdlfiles=
	    for lib in $dlfiles; do
	      name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
	      eval libdir=`sed -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
	      if test -z "$libdir"; then
		$echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
		exit 1
	      fi
	      newdlfiles="$newdlfiles $libdir/$name"
	    done
	    dlfiles="$newdlfiles"
	    newdlprefiles=
	    for lib in $dlprefiles; do
	      name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
	      eval libdir=`sed -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
	      if test -z "$libdir"; then
		$echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
		exit 1
	      fi
	      newdlprefiles="$newdlprefiles $libdir/$name"
	    done
	    dlprefiles="$newdlprefiles"
Jason Merrill committed
4546 4547
	  fi
	  $rm $output
4548 4549 4550 4551 4552
	  # place dlname in correct position for cygwin
	  tdlname=$dlname
	  case $host,$output,$installed,$module,$dlname in
	    *cygwin*,*lai,yes,no,*.dll) tdlname=../bin/$dlname ;;
	  esac
Jason Merrill committed
4553 4554
	  $echo > $output "\
# $outputname - a libtool library file
4555
# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
Jason Merrill committed
4556 4557 4558
#
# Please DO NOT delete this file!
# It is necessary for linking the library.
Jason Merrill committed
4559 4560

# The name that we can dlopen(3).
4561
dlname='$tdlname'
Jason Merrill committed
4562 4563 4564 4565 4566 4567 4568

# Names of this library.
library_names='$library_names'

# The name of the static archive.
old_library='$old_library'

#  
Jeff Law committed
4569 4570 4571
# Libraries that this one depends upon.
dependency_libs='$dependency_libs'

Jason Merrill committed
4572 4573 4574 4575 4576
# Version information for $libname.
current=$current
age=$age
revision=$revision

4577
# Is this an already installed library?
Jason Merrill committed
4578
installed=$installed
4579

4580 4581 4582 4583
# Files to dlopen/dlpreopen
dlopen='$dlfiles'
dlpreopen='$dlprefiles'

Jason Merrill committed
4584
# Directory that this library needs to be installed in:
4585
libdir='$install_libdir'"
4586
	  if test "$installed" = no && test $need_relink = yes; then
4587 4588 4589
	    $echo >> $output "\
relink_command=\"$relink_command\""
	  fi
Jason Merrill committed
4590
	done
Jason Merrill committed
4591 4592 4593 4594
      fi

      # Do a symbolic link so that the libtool archive can be found in
      # LD_LIBRARY_PATH before the program is installed.
4595
      $show "(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)"
4596
      $run eval '(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)' || exit $?
Jason Merrill committed
4597 4598 4599 4600 4601 4602 4603
      ;;
    esac
    exit 0
    ;;

  # libtool install mode
  install)
#  
Jeff Law committed
4604
    modename="$modename: install"
Jason Merrill committed
4605

#  
Jeff Law committed
4606 4607
    # There may be an optional sh(1) argument at the beginning of
    # install_prog (especially on Windows NT).
4608 4609
    if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh ||
       # Allow the use of GNU shtool's install command.
4610
       $echo "X$nonopt" | $Xsed | grep shtool > /dev/null; then
#  
Jeff Law committed
4611 4612
      # Aesthetically quote it.
      arg=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"`
4613
      case $arg in
#  
Jeff Law committed
4614 4615 4616 4617 4618 4619
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*)
	arg="\"$arg\""
	;;
      esac
      install_prog="$arg "
      arg="$1"
Jason Merrill committed
4620
      shift
#  
Jeff Law committed
4621 4622 4623
    else
      install_prog=
      arg="$nonopt"
Jason Merrill committed
4624 4625
    fi

#  
Jeff Law committed
4626 4627 4628
    # The real first argument should be the name of the installation program.
    # Aesthetically quote it.
    arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
4629
    case $arg in
#  
Jeff Law committed
4630 4631 4632 4633 4634 4635
    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*)
      arg="\"$arg\""
      ;;
    esac
    install_prog="$install_prog$arg"

Jason Merrill committed
4636 4637 4638 4639 4640 4641
    # We need to accept at least all the BSD install flags.
    dest=
    files=
    opts=
    prev=
    install_type=
#  
Jeff Law committed
4642
    isdir=no
Jason Merrill committed
4643 4644 4645 4646
    stripme=
    for arg
    do
      if test -n "$dest"; then
4647 4648 4649
	files="$files $dest"
	dest="$arg"
	continue
Jason Merrill committed
4650 4651
      fi

4652
      case $arg in
Jason Merrill committed
4653 4654 4655 4656 4657 4658
      -d) isdir=yes ;;
      -f) prev="-f" ;;
      -g) prev="-g" ;;
      -m) prev="-m" ;;
      -o) prev="-o" ;;
      -s)
4659 4660 4661
	stripme=" -s"
	continue
	;;
Jason Merrill committed
4662 4663 4664
      -*) ;;

      *)
4665 4666 4667 4668 4669 4670 4671 4672
	# If the previous option needed an argument, then skip it.
	if test -n "$prev"; then
	  prev=
	else
	  dest="$arg"
	  continue
	fi
	;;
Jason Merrill committed
4673
      esac
#  
Jeff Law committed
4674 4675 4676

      # Aesthetically quote the argument.
      arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
4677
      case $arg in
#  
Jeff Law committed
4678 4679 4680 4681
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*)
	arg="\"$arg\""
	;;
      esac
Jason Merrill committed
4682 4683 4684 4685
      install_prog="$install_prog $arg"
    done

    if test -z "$install_prog"; then
#  
Jeff Law committed
4686 4687
      $echo "$modename: you must specify an install program" 1>&2
      $echo "$help" 1>&2
Jason Merrill committed
4688 4689 4690 4691
      exit 1
    fi

    if test -n "$prev"; then
#  
Jeff Law committed
4692 4693
      $echo "$modename: the \`$prev' option requires an argument" 1>&2
      $echo "$help" 1>&2
Jason Merrill committed
4694 4695 4696 4697 4698
      exit 1
    fi

    if test -z "$files"; then
      if test -z "$dest"; then
4699
	$echo "$modename: no file or destination specified" 1>&2
Jason Merrill committed
4700
      else
4701
	$echo "$modename: you must specify a destination" 1>&2
Jason Merrill committed
4702
      fi
#  
Jeff Law committed
4703
      $echo "$help" 1>&2
Jason Merrill committed
4704 4705 4706 4707
      exit 1
    fi

    # Strip any trailing slash from the destination.
#  
Jeff Law committed
4708
    dest=`$echo "X$dest" | $Xsed -e 's%/$%%'`
Jason Merrill committed
4709 4710 4711

    # Check to see that the destination is a directory.
    test -d "$dest" && isdir=yes
#  
Jeff Law committed
4712
    if test "$isdir" = yes; then
Jason Merrill committed
4713 4714 4715
      destdir="$dest"
      destname=
    else
#  
Jeff Law committed
4716 4717 4718
      destdir=`$echo "X$dest" | $Xsed -e 's%/[^/]*$%%'`
      test "X$destdir" = "X$dest" && destdir=.
      destname=`$echo "X$dest" | $Xsed -e 's%^.*/%%'`
Jason Merrill committed
4719 4720 4721 4722

      # Not a directory, so check to see that there is only one file specified.
      set dummy $files
      if test $# -gt 2; then
4723 4724 4725
	$echo "$modename: \`$dest' is not a directory" 1>&2
	$echo "$help" 1>&2
	exit 1
Jason Merrill committed
4726 4727
      fi
    fi
4728
    case $destdir in
Jason Merrill committed
4729
    [\\/]* | [A-Za-z]:[\\/]*) ;;
Jason Merrill committed
4730 4731
    *)
      for file in $files; do
4732
	case $file in
4733 4734 4735 4736 4737 4738 4739
	*.lo) ;;
	*)
	  $echo "$modename: \`$destdir' must be an absolute directory name" 1>&2
	  $echo "$help" 1>&2
	  exit 1
	  ;;
	esac
Jason Merrill committed
4740 4741 4742 4743
      done
      ;;
    esac

#  
Jeff Law committed
4744 4745 4746 4747
    # This variable tells wrapper scripts just to set variables rather
    # than running their programs.
    libtool_install_magic="$magic"

Jason Merrill committed
4748 4749 4750 4751 4752 4753
    staticlibs=
    future_libdirs=
    current_libdirs=
    for file in $files; do

      # Do each installation.
4754
      case $file in
4755
      *.$libext)
4756 4757 4758
	# Do the static libraries later.
	staticlibs="$staticlibs $file"
	;;
Jason Merrill committed
4759 4760

      *.la)
4761 4762 4763 4764 4765 4766 4767 4768 4769 4770
	# Check to see that this really is a libtool archive.
	if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
	else
	  $echo "$modename: \`$file' is not a valid libtool archive" 1>&2
	  $echo "$help" 1>&2
	  exit 1
	fi

	library_names=
	old_library=
4771
	relink_command=
4772
	# If there is no directory component, then add one.
4773
	case $file in
4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791
	*/* | *\\*) . $file ;;
	*) . ./$file ;;
	esac

	# Add the libdir to current_libdirs if it is the destination.
	if test "X$destdir" = "X$libdir"; then
	  case "$current_libdirs " in
	  *" $libdir "*) ;;
	  *) current_libdirs="$current_libdirs $libdir" ;;
	  esac
	else
	  # Note the libdir as a future libdir.
	  case "$future_libdirs " in
	  *" $libdir "*) ;;
	  *) future_libdirs="$future_libdirs $libdir" ;;
	  esac
	fi

4792
	dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`/
4793 4794 4795
	test "X$dir" = "X$file/" && dir=
	dir="$dir$objdir"

4796
	if test -n "$relink_command"; then
4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807
	  # Determine the prefix the user has applied to our future dir.
	  inst_prefix_dir=`$echo "$destdir" | sed "s%$libdir\$%%"`

	  # Don't allow the user to place us outside of our expected
	  # location b/c this prevents finding dependent libraries that
	  # are installed to the same prefix.
	  # At present, this check doesn't affect windows .dll's that
	  # are installed into $libdir/../bin (currently, that works fine)
	  # but it's something to keep an eye on.
	  if test "$inst_prefix_dir" = "$destdir"; then
	    $echo "$modename: error: cannot install \`$file' to a directory not ending in $libdir" 1>&2
Andreas Schwab committed
4808
	    exit 1
4809 4810 4811 4812 4813 4814 4815 4816 4817
	  fi

	  if test -n "$inst_prefix_dir"; then
	    # Stick the inst_prefix_dir data into the link command.
	    relink_command=`$echo "$relink_command" | sed "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"`
	  else
	    relink_command=`$echo "$relink_command" | sed "s%@inst_prefix_dir@%%"`
	  fi

4818 4819 4820 4821 4822
	  $echo "$modename: warning: relinking \`$file'" 1>&2
	  $show "$relink_command"
	  if $run eval "$relink_command"; then :
	  else
	    $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2
4823
	    exit 1
4824 4825 4826
	  fi
	fi

4827 4828 4829 4830 4831 4832 4833
	# See the names of the shared library.
	set dummy $library_names
	if test -n "$2"; then
	  realname="$2"
	  shift
	  shift

4834
	  srcname="$realname"
4835
	  test -n "$relink_command" && srcname="$realname"T
4836

4837
	  # Install the shared library and build the symlinks.
4838 4839 4840 4841 4842 4843
	  $show "$install_prog $dir/$srcname $destdir/$realname"
	  $run eval "$install_prog $dir/$srcname $destdir/$realname" || exit $?
	  if test -n "$stripme" && test -n "$striplib"; then
	    $show "$striplib $destdir/$realname"
	    $run eval "$striplib $destdir/$realname" || exit $?
	  fi
4844 4845 4846 4847 4848 4849 4850 4851

	  if test $# -gt 0; then
	    # Delete the old symlinks, and create new ones.
	    for linkname
	    do
	      if test "$linkname" != "$realname"; then
		$show "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)"
		$run eval "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)"
4852
	      fi
4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876
	    done
	  fi

	  # Do each command in the postinstall commands.
	  lib="$destdir/$realname"
	  eval cmds=\"$postinstall_cmds\"
	  IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
	  for cmd in $cmds; do
	    IFS="$save_ifs"
	    $show "$cmd"
	    $run eval "$cmd" || exit $?
	  done
	  IFS="$save_ifs"
	fi

	# Install the pseudo-library for information purposes.
	name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
	instname="$dir/$name"i
	$show "$install_prog $instname $destdir/$name"
	$run eval "$install_prog $instname $destdir/$name" || exit $?

	# Maybe install the static library, too.
	test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
	;;
Jason Merrill committed
4877 4878

      *.lo)
4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889
	# Install (i.e. copy) a libtool object.

	# Figure out destination file name, if it wasn't already specified.
	if test -n "$destname"; then
	  destfile="$destdir/$destname"
	else
	  destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
	  destfile="$destdir/$destfile"
	fi

	# Deduce the name of the destination old-style object file.
4890
	case $destfile in
4891 4892 4893
	*.lo)
	  staticdest=`$echo "X$destfile" | $Xsed -e "$lo2o"`
	  ;;
4894
	*.$objext)
4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920
	  staticdest="$destfile"
	  destfile=
	  ;;
	*)
	  $echo "$modename: cannot copy a libtool object to \`$destfile'" 1>&2
	  $echo "$help" 1>&2
	  exit 1
	  ;;
	esac

	# Install the libtool object if requested.
	if test -n "$destfile"; then
	  $show "$install_prog $file $destfile"
	  $run eval "$install_prog $file $destfile" || exit $?
	fi

	# Install the old object if enabled.
	if test "$build_old_libs" = yes; then
	  # Deduce the name of the old-style object file.
	  staticobj=`$echo "X$file" | $Xsed -e "$lo2o"`

	  $show "$install_prog $staticobj $staticdest"
	  $run eval "$install_prog \$staticobj \$staticdest" || exit $?
	fi
	exit 0
	;;
Jason Merrill committed
4921 4922

      *)
4923 4924 4925 4926 4927 4928 4929 4930 4931 4932
	# Figure out destination file name, if it wasn't already specified.
	if test -n "$destname"; then
	  destfile="$destdir/$destname"
	else
	  destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
	  destfile="$destdir/$destfile"
	fi

	# Do a test to see if this is really a libtool program.
	if (sed -e '4q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
4933
	  notinst_deplibs=
4934 4935 4936
	  relink_command=

	  # If there is no directory component, then add one.
4937
	  case $file in
4938 4939 4940 4941 4942
	  */* | *\\*) . $file ;;
	  *) . ./$file ;;
	  esac

	  # Check the variables that should have been set.
4943
	  if test -z "$notinst_deplibs"; then
4944 4945 4946 4947 4948
	    $echo "$modename: invalid libtool wrapper script \`$file'" 1>&2
	    exit 1
	  fi

	  finalize=yes
4949
	  for lib in $notinst_deplibs; do
4950 4951 4952 4953
	    # Check to see that each library is installed.
	    libdir=
	    if test -f "$lib"; then
	      # If there is no directory component, then add one.
4954
	      case $lib in
4955 4956 4957 4958
	      */* | *\\*) . $lib ;;
	      *) . ./$lib ;;
	      esac
	    fi
4959
	    libfile="$libdir/"`$echo "X$lib" | $Xsed -e 's%^.*/%%g'` ### testsuite: skip nested quoting test
4960 4961 4962 4963 4964 4965
	    if test -n "$libdir" && test ! -f "$libfile"; then
	      $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2
	      finalize=no
	    fi
	  done

4966 4967
	  relink_command=
	  # If there is no directory component, then add one.
4968
	  case $file in
4969 4970 4971 4972
	  */* | *\\*) . $file ;;
	  *) . ./$file ;;
	  esac

4973 4974
	  outputname=
	  if test "$fast_install" = no && test -n "$relink_command"; then
Jason Merrill committed
4975 4976 4977 4978 4979 4980 4981 4982 4983
	    if test "$finalize" = yes && test -z "$run"; then
	      tmpdir="/tmp"
	      test -n "$TMPDIR" && tmpdir="$TMPDIR"
	      tmpdir="$tmpdir/libtool-$$"
	      if $mkdir -p "$tmpdir" && chmod 700 "$tmpdir"; then :
	      else
		$echo "$modename: error: cannot create temporary directory \`$tmpdir'" 1>&2
		continue
	      fi
4984
	      file=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
Jason Merrill committed
4985
	      outputname="$tmpdir/$file"
4986 4987 4988 4989 4990 4991 4992
	      # Replace the output file specification.
	      relink_command=`$echo "X$relink_command" | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g'`

	      $show "$relink_command"
	      if $run eval "$relink_command"; then :
	      else
		$echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2
Jason Merrill committed
4993
		${rm}r "$tmpdir"
4994 4995 4996 4997
		continue
	      fi
	      file="$outputname"
	    else
Jason Merrill committed
4998
	      $echo "$modename: warning: cannot relink \`$file'" 1>&2
4999 5000 5001
	    fi
	  else
	    # Install the binary that we compiled earlier.
#  
Jeff Law committed
5002
	    file=`$echo "X$file" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"`
5003 5004
	  fi
	fi
Jason Merrill committed
5005

5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024

	# remove .exe since cygwin /usr/bin/install will append another
	# one anyways
	case $install_prog,$host in
	*/usr/bin/install*,*cygwin*)
	  case $file:$destfile in
	  *.exe:*.exe)
	    # this is ok
	    ;;
	  *.exe:*)
	    destfile=$destfile.exe
	    ;;
	  *:*.exe)
	    destfile=`echo $destfile | sed -e 's,.exe$,,'`
	    ;;
	  esac
	  ;;
	esac

5025 5026
	$show "$install_prog$stripme $file $destfile"
	$run eval "$install_prog\$stripme \$file \$destfile" || exit $?
Jason Merrill committed
5027
	test -n "$outputname" && ${rm}r "$tmpdir"
5028
	;;
Jason Merrill committed
5029 5030 5031 5032
      esac
    done

    for file in $staticlibs; do
#  
Jeff Law committed
5033
      name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
Jason Merrill committed
5034 5035 5036 5037 5038

      # Set up the ranlib parameters.
      oldlib="$destdir/$name"

      $show "$install_prog $file $oldlib"
#  
Jeff Law committed
5039
      $run eval "$install_prog \$file \$oldlib" || exit $?
Jason Merrill committed
5040

5041 5042 5043 5044 5045
      if test -n "$stripme" && test -n "$striplib"; then
	$show "$old_striplib $oldlib"
	$run eval "$old_striplib $oldlib" || exit $?
      fi

Jason Merrill committed
5046
      # Do each command in the postinstall commands.
#  
Jeff Law committed
5047
      eval cmds=\"$old_postinstall_cmds\"
5048
      IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
Jason Merrill committed
5049
      for cmd in $cmds; do
5050 5051 5052
	IFS="$save_ifs"
	$show "$cmd"
	$run eval "$cmd" || exit $?
Jason Merrill committed
5053 5054 5055 5056 5057
      done
      IFS="$save_ifs"
    done

    if test -n "$future_libdirs"; then
#  
Jeff Law committed
5058
      $echo "$modename: warning: remember to run \`$progname --finish$future_libdirs'" 1>&2
Jason Merrill committed
5059 5060 5061 5062 5063
    fi

    if test -n "$current_libdirs"; then
      # Maybe just do a dry run.
      test -n "$run" && current_libdirs=" -n$current_libdirs"
5064 5065 5066
      exec_cmd='$SHELL $0 --finish$current_libdirs'
    else
      exit 0
Jason Merrill committed
5067 5068 5069
    fi
    ;;

#  
Jeff Law committed
5070 5071 5072 5073 5074 5075 5076 5077 5078
  # libtool finish mode
  finish)
    modename="$modename: finish"
    libdirs="$nonopt"
    admincmds=

    if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
      for dir
      do
5079
	libdirs="$libdirs $dir"
#  
Jeff Law committed
5080 5081 5082 5083 5084 5085
      done

      for libdir in $libdirs; do
	if test -n "$finish_cmds"; then
	  # Do each command in the finish commands.
	  eval cmds=\"$finish_cmds\"
5086 5087 5088 5089 5090
	  IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
	  for cmd in $cmds; do
	    IFS="$save_ifs"
	    $show "$cmd"
	    $run eval "$cmd" || admincmds="$admincmds
#  
Jeff Law committed
5091
       $cmd"
5092 5093
	  done
	  IFS="$save_ifs"
#  
Jeff Law committed
5094 5095 5096 5097 5098 5099 5100 5101 5102 5103
	fi
	if test -n "$finish_eval"; then
	  # Do the single finish_eval.
	  eval cmds=\"$finish_eval\"
	  $run eval "$cmds" || admincmds="$admincmds
       $cmds"
	fi
      done
    fi

5104
    # Exit here if they wanted silent mode.
5105
    test "$show" = ":" && exit 0
5106

#  
Jeff Law committed
5107 5108 5109 5110
    echo "----------------------------------------------------------------------"
    echo "Libraries have been installed in:"
    for libdir in $libdirs; do
      echo "   $libdir"
Jason Merrill committed
5111
    done
#  
Jeff Law committed
5112
    echo
5113 5114
    echo "If you ever happen to want to link against installed libraries"
    echo "in a given directory, LIBDIR, you must either use libtool, and"
5115
    echo "specify the full pathname of the library, or use the \`-LLIBDIR'"
5116
    echo "flag during linking and do at least one of the following:"
#  
Jeff Law committed
5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127
    if test -n "$shlibpath_var"; then
      echo "   - add LIBDIR to the \`$shlibpath_var' environment variable"
      echo "     during execution"
    fi
    if test -n "$runpath_var"; then
      echo "   - add LIBDIR to the \`$runpath_var' environment variable"
      echo "     during linking"
    fi
    if test -n "$hardcode_libdir_flag_spec"; then
      libdir=LIBDIR
      eval flag=\"$hardcode_libdir_flag_spec\"
Jason Merrill committed
5128

#  
Jeff Law committed
5129
      echo "   - use the \`$flag' linker flag"
Jason Merrill committed
5130
    fi
#  
Jeff Law committed
5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142
    if test -n "$admincmds"; then
      echo "   - have your system administrator run these commands:$admincmds"
    fi
    if test -f /etc/ld.so.conf; then
      echo "   - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
    fi
    echo
    echo "See any operating system documentation about shared libraries for"
    echo "more information, such as the ld(1) and ld.so(8) manual pages."
    echo "----------------------------------------------------------------------"
    exit 0
    ;;
Jason Merrill committed
5143

#  
Jeff Law committed
5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154
  # libtool execute mode
  execute)
    modename="$modename: execute"

    # The first argument is the command name.
    cmd="$nonopt"
    if test -z "$cmd"; then
      $echo "$modename: you must specify a COMMAND" 1>&2
      $echo "$help"
      exit 1
    fi
Jason Merrill committed
5155

#  
Jeff Law committed
5156 5157
    # Handle -dlopen flags immediately.
    for file in $execute_dlfiles; do
5158
      if test ! -f "$file"; then
#  
Jeff Law committed
5159 5160 5161
	$echo "$modename: \`$file' is not a file" 1>&2
	$echo "$help" 1>&2
	exit 1
Jason Merrill committed
5162 5163
      fi

#  
Jeff Law committed
5164
      dir=
5165
      case $file in
#  
Jeff Law committed
5166
      *.la)
5167 5168 5169 5170 5171 5172 5173
	# Check to see that this really is a libtool archive.
	if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
	else
	  $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
	  $echo "$help" 1>&2
	  exit 1
	fi
#  
Jeff Law committed
5174 5175 5176 5177 5178

	# Read the libtool library.
	dlname=
	library_names=

5179
	# If there is no directory component, then add one.
5180
	case $file in
#  
Jeff Law committed
5181
	*/* | *\\*) . $file ;;
5182
	*) . ./$file ;;
#  
Jeff Law committed
5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210
	esac

	# Skip this library if it cannot be dlopened.
	if test -z "$dlname"; then
	  # Warn if it was a shared library.
	  test -n "$library_names" && $echo "$modename: warning: \`$file' was not linked with \`-export-dynamic'"
	  continue
	fi

	dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
	test "X$dir" = "X$file" && dir=.

	if test -f "$dir/$objdir/$dlname"; then
	  dir="$dir/$objdir"
	else
	  $echo "$modename: cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" 1>&2
	  exit 1
	fi
	;;

      *.lo)
	# Just add the directory containing the .lo file.
	dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
	test "X$dir" = "X$file" && dir=.
	;;

      *)
	$echo "$modename: warning \`-dlopen' is ignored for non-libtool libraries and objects" 1>&2
5211
	continue
#  
Jeff Law committed
5212
	;;
Jason Merrill committed
5213 5214
      esac

#  
Jeff Law committed
5215 5216 5217 5218 5219 5220 5221
      # Get the absolute pathname.
      absdir=`cd "$dir" && pwd`
      test -n "$absdir" && dir="$absdir"

      # Now add the directory to shlibpath_var.
      if eval "test -z \"\$$shlibpath_var\""; then
	eval "$shlibpath_var=\"\$dir\""
Jason Merrill committed
5222
      else
#  
Jeff Law committed
5223
	eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\""
Jason Merrill committed
5224 5225 5226
      fi
    done

#  
Jeff Law committed
5227 5228 5229
    # This variable tells wrapper scripts just to set shlibpath_var
    # rather than running their programs.
    libtool_execute_magic="$magic"
Jason Merrill committed
5230

#  
Jeff Law committed
5231 5232 5233 5234
    # Check if any of the arguments is a wrapper script.
    args=
    for file
    do
5235
      case $file in
#  
Jeff Law committed
5236 5237
      -*) ;;
      *)
5238 5239
	# Do a test to see if this is really a libtool program.
	if (sed -e '4q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
#  
Jeff Law committed
5240
	  # If there is no directory component, then add one.
5241
	  case $file in
#  
Jeff Law committed
5242 5243 5244
	  */* | *\\*) . $file ;;
	  *) . ./$file ;;
	  esac
Jason Merrill committed
5245

#  
Jeff Law committed
5246 5247 5248
	  # Transform arg to wrapped name.
	  file="$progdir/$program"
	fi
5249
	;;
#  
Jeff Law committed
5250 5251 5252 5253 5254
      esac
      # Quote arguments (to preserve shell metacharacters).
      file=`$echo "X$file" | $Xsed -e "$sed_quote_subst"`
      args="$args \"$file\""
    done
Jason Merrill committed
5255

#  
Jeff Law committed
5256
    if test -z "$run"; then
Jason Merrill committed
5257
      if test -n "$shlibpath_var"; then
5258 5259
	# Export the shlibpath_var.
	eval "export $shlibpath_var"
Jason Merrill committed
5260
      fi
#  
Jeff Law committed
5261

5262 5263
      # Restore saved enviroment variables
      if test "${save_LC_ALL+set}" = set; then
5264
	LC_ALL="$save_LC_ALL"; export LC_ALL
5265 5266
      fi
      if test "${save_LANG+set}" = set; then
5267
	LANG="$save_LANG"; export LANG
5268 5269
      fi

5270 5271
      # Now prepare to actually exec the command.
      exec_cmd='"$cmd"$args'
#  
Jeff Law committed
5272 5273
    else
      # Display what would be done.
Jason Merrill committed
5274
      if test -n "$shlibpath_var"; then
5275 5276
	eval "\$echo \"\$shlibpath_var=\$$shlibpath_var\""
	$echo "export $shlibpath_var"
Jason Merrill committed
5277
      fi
#  
Jeff Law committed
5278 5279
      $echo "$cmd$args"
      exit 0
Jason Merrill committed
5280 5281 5282
    fi
    ;;

5283 5284 5285
  # libtool clean and uninstall mode
  clean | uninstall)
    modename="$modename: $mode"
Jason Merrill committed
5286 5287
    rm="$nonopt"
    files=
5288 5289
    rmforce=
    exit_status=0
Jason Merrill committed
5290

5291 5292 5293 5294
    # This variable tells wrapper scripts just to set variables rather
    # than running their programs.
    libtool_install_magic="$magic"

Jason Merrill committed
5295 5296
    for arg
    do
5297
      case $arg in
5298
      -f) rm="$rm $arg"; rmforce=yes ;;
Jason Merrill committed
5299 5300 5301 5302 5303 5304
      -*) rm="$rm $arg" ;;
      *) files="$files $arg" ;;
      esac
    done

    if test -z "$rm"; then
#  
Jeff Law committed
5305 5306
      $echo "$modename: you must specify an RM program" 1>&2
      $echo "$help" 1>&2
Jason Merrill committed
5307 5308 5309
      exit 1
    fi

5310 5311
    rmdirs=

Jason Merrill committed
5312
    for file in $files; do
#  
Jeff Law committed
5313
      dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
5314 5315 5316 5317 5318 5319
      if test "X$dir" = "X$file"; then
	dir=.
	objdir="$objdir"
      else
	objdir="$dir/$objdir"
      fi
#  
Jeff Law committed
5320
      name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
5321
      test $mode = uninstall && objdir="$dir"
Jason Merrill committed
5322

5323 5324
      # Remember objdir for removal later, being careful to avoid duplicates
      if test $mode = clean; then
5325
	case " $rmdirs " in
5326 5327 5328 5329
	  *" $objdir "*) ;;
	  *) rmdirs="$rmdirs $objdir" ;;
	esac
      fi
5330

5331
      # Don't error if the file doesn't exist and rm -f was used.
5332 5333 5334
      if (test -L "$file") >/dev/null 2>&1 \
        || (test -h "$file") >/dev/null 2>&1 \
	|| test -f "$file"; then
5335 5336 5337 5338 5339 5340 5341
        :
      elif test -d "$file"; then
        exit_status=1
	continue
      elif test "$rmforce" = yes; then
        continue
      fi
5342

Jason Merrill committed
5343 5344
      rmfiles="$file"

5345
      case $name in
Jason Merrill committed
5346
      *.la)
5347 5348 5349 5350 5351 5352
	# Possibly a libtool archive, so verify it.
	if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
	  . $dir/$name

	  # Delete the libtool libraries and symlinks.
	  for n in $library_names; do
5353
	    rmfiles="$rmfiles $objdir/$n"
5354
	  done
5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366
	  test -n "$old_library" && rmfiles="$rmfiles $objdir/$old_library"
	  test $mode = clean && rmfiles="$rmfiles $objdir/$name $objdir/${name}i"

	  if test $mode = uninstall; then
	    if test -n "$library_names"; then
	      # Do each command in the postuninstall commands.
	      eval cmds=\"$postuninstall_cmds\"
	      IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
	      for cmd in $cmds; do
		IFS="$save_ifs"
		$show "$cmd"
		$run eval "$cmd"
5367 5368 5369
		if test $? != 0 && test "$rmforce" != yes; then
		  exit_status=1
		fi
5370
	      done
#  
Jeff Law committed
5371
	      IFS="$save_ifs"
5372
	    fi
Jason Merrill committed
5373

5374 5375 5376 5377 5378 5379 5380 5381
	    if test -n "$old_library"; then
	      # Do each command in the old_postuninstall commands.
	      eval cmds=\"$old_postuninstall_cmds\"
	      IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
	      for cmd in $cmds; do
		IFS="$save_ifs"
		$show "$cmd"
		$run eval "$cmd"
5382 5383 5384
		if test $? != 0 && test "$rmforce" != yes; then
		  exit_status=1
		fi
5385
	      done
#  
Jeff Law committed
5386
	      IFS="$save_ifs"
5387 5388
	    fi
	    # FIXME: should reinstall the best remaining shared library.
#  
Jeff Law committed
5389
	  fi
5390 5391
	fi
	;;
Jason Merrill committed
5392 5393

      *.lo)
5394
	# Possibly a libtool object, so verify it.
5395
	if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
5396 5397

          # Read the .lo file
5398
          . $dir/$name
5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410

	  # Add PIC object to the list of files to remove.
          if test -n "$pic_object" \
             && test "$pic_object" != none; then
	    rmfiles="$rmfiles $dir/$pic_object"
          fi

	  # Add non-PIC object to the list of files to remove.
          if test -n "$non_pic_object" \
             && test "$non_pic_object" != none; then
	    rmfiles="$rmfiles $dir/$non_pic_object"
          fi
5411 5412
	fi
	;;
Jason Merrill committed
5413

#  
Jeff Law committed
5414
      *)
5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425
	# Do a test to see if this is a libtool program.
	if test $mode = clean &&
	   (sed -e '4q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
	  relink_command=
	  . $dir/$file

	  rmfiles="$rmfiles $objdir/$name $objdir/${name}S.${objext}"
	  if test "$fast_install" = yes && test -n "$relink_command"; then
	    rmfiles="$rmfiles $objdir/lt-$name"
	  fi
	fi
#  
Jeff Law committed
5426 5427
	;;
      esac
5428
      $show "$rm $rmfiles"
5429
      $run $rm $rmfiles || exit_status=1
Jason Merrill committed
5430
    done
5431 5432 5433 5434

    # Try to remove the ${objdir}s in the directories where we deleted files
    for dir in $rmdirs; do
      if test -d "$dir"; then
5435 5436
	$show "rmdir $dir"
	$run rmdir $dir >/dev/null 2>&1
5437 5438 5439
      fi
    done

5440
    exit $exit_status
Jason Merrill committed
5441 5442
    ;;

#  
Jeff Law committed
5443 5444 5445
  "")
    $echo "$modename: you must specify a MODE" 1>&2
    $echo "$generic_help" 1>&2
Jason Merrill committed
5446 5447 5448 5449
    exit 1
    ;;
  esac

5450 5451 5452 5453 5454
  if test -z "$exec_cmd"; then
    $echo "$modename: invalid operation mode \`$mode'" 1>&2
    $echo "$generic_help" 1>&2
    exit 1
  fi
Jason Merrill committed
5455 5456
fi # test -z "$show_help"

5457 5458 5459 5460 5461
if test -n "$exec_cmd"; then
  eval exec $exec_cmd
  exit 1
fi

Jason Merrill committed
5462
# We need to display help for each of the modes.
5463
case $mode in
#  
Jeff Law committed
5464 5465
"") $echo \
"Usage: $modename [OPTION]... [MODE-ARG]...
Jason Merrill committed
5466 5467 5468

Provide generalized library-building support services.

#  
Jeff Law committed
5469 5470
    --config          show all configuration variables
    --debug           enable verbose shell tracing
Jason Merrill committed
5471
-n, --dry-run         display commands without modifying any files
#  
Jeff Law committed
5472
    --features        display basic configuration information and exit
Jason Merrill committed
5473 5474 5475
    --finish          same as \`--mode=finish'
    --help            display this help message and exit
    --mode=MODE       use operation mode MODE [default=inferred from MODE-ARGS]
#  
Jeff Law committed
5476 5477
    --quiet           same as \`--silent'
    --silent          don't print informational messages
5478
    --tag=TAG         use configuration variables from tag TAG
Jason Merrill committed
5479 5480 5481 5482
    --version         print version information

MODE must be one of the following:

5483
      clean           remove files from the build directory
Jason Merrill committed
5484
      compile         compile a source file into a libtool object
#  
Jeff Law committed
5485
      execute         automatically set library path, then run a program
Jason Merrill committed
5486 5487 5488 5489 5490
      finish          complete the installation of libtool libraries
      install         install libraries or executables
      link            create a library or an executable
      uninstall       remove libraries from an installed directory

#  
Jeff Law committed
5491 5492 5493
MODE-ARGS vary depending on the MODE.  Try \`$modename --help --mode=MODE' for
a more detailed description of MODE."
  exit 0
Jason Merrill committed
5494 5495
  ;;

5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509
clean)
  $echo \
"Usage: $modename [OPTION]... --mode=clean RM [RM-OPTION]... FILE...

Remove files from the build directory.

RM is the name of the program to use to delete files associated with each FILE
(typically \`/bin/rm').  RM-OPTIONS are options (such as \`-f') to be passed
to RM.

If FILE is a libtool library, object or program, all the files associated
with it are deleted. Otherwise, only FILE itself is deleted using RM."
  ;;

Jason Merrill committed
5510
compile)
#  
Jeff Law committed
5511 5512
  $echo \
"Usage: $modename [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE
Jason Merrill committed
5513 5514 5515

Compile a source file into a libtool library object.

5516 5517
This mode accepts the following additional options:

5518
  -o OUTPUT-FILE    set the output file name to OUTPUT-FILE
5519 5520
  -prefer-pic       try to building PIC objects only
  -prefer-non-pic   try to building non-PIC objects only
5521 5522
  -static           always build a \`.o' file suitable for static linking

Jason Merrill committed
5523 5524 5525 5526 5527
COMPILE-COMMAND is a command to be used in creating a \`standard' object file
from the given SOURCEFILE.

The output file name is determined by removing the directory component from
SOURCEFILE, then substituting the C source code suffix \`.c' with the
#  
Jeff Law committed
5528
library object suffix, \`.lo'."
Jason Merrill committed
5529 5530
  ;;

#  
Jeff Law committed
5531 5532 5533 5534 5535 5536 5537
execute)
  $echo \
"Usage: $modename [OPTION]... --mode=execute COMMAND [ARGS]...

Automatically set library path, then run a program.

This mode accepts the following additional options:
Jason Merrill committed
5538

#  
Jeff Law committed
5539
  -dlopen FILE      add the directory containing FILE to the library path
Jason Merrill committed
5540

#  
Jeff Law committed
5541 5542
This mode sets the library path environment variable according to \`-dlopen'
flags.
Jason Merrill committed
5543

#  
Jeff Law committed
5544 5545 5546 5547 5548
If any of the ARGS are libtool executable wrappers, then they are translated
into their corresponding uninstalled binary, and any of their required library
directories are added to the library path.

Then, COMMAND is executed, with ARGS as arguments."
Jason Merrill committed
5549 5550 5551
  ;;

finish)
#  
Jeff Law committed
5552 5553
  $echo \
"Usage: $modename [OPTION]... --mode=finish [LIBDIR]...
Jason Merrill committed
5554 5555 5556 5557 5558 5559

Complete the installation of libtool libraries.

Each LIBDIR is a directory that contains libtool libraries.

The commands that this mode executes may require superuser privileges.  Use
#  
Jeff Law committed
5560
the \`--dry-run' option if you just want to see what would be executed."
Jason Merrill committed
5561 5562 5563
  ;;

install)
#  
Jeff Law committed
5564 5565
  $echo \
"Usage: $modename [OPTION]... --mode=install INSTALL-COMMAND...
Jason Merrill committed
5566 5567 5568 5569 5570 5571 5572

Install executables or libraries.

INSTALL-COMMAND is the installation command.  The first component should be
either the \`install' or \`cp' program.

The rest of the components are interpreted as arguments to that command (only
#  
Jeff Law committed
5573
BSD-compatible install options are recognized)."
Jason Merrill committed
5574 5575 5576
  ;;

link)
#  
Jeff Law committed
5577 5578
  $echo \
"Usage: $modename [OPTION]... --mode=link LINK-COMMAND...
Jason Merrill committed
5579 5580 5581 5582 5583 5584 5585 5586 5587

Link object files or libraries together to form another library, or to
create an executable program.

LINK-COMMAND is a command using the C compiler that you would use to create
a program from several object files.

The following components of LINK-COMMAND are treated specially:

#  
Jeff Law committed
5588
  -all-static       do not do any dynamic linking at all
5589
  -avoid-version    do not add a version suffix if possible
#  
Jeff Law committed
5590
  -dlopen FILE      \`-dlpreopen' FILE if it cannot be dlopened at runtime
5591
  -dlpreopen FILE   link in FILE and add its symbols to lt_preloaded_symbols
Jason Merrill committed
5592
  -export-dynamic   allow symbols from OUTPUT-FILE to be resolved with dlsym(3)
5593 5594
  -export-symbols SYMFILE
		    try to export only the symbols listed in SYMFILE
Jason Merrill committed
5595 5596
  -export-symbols-regex REGEX
		    try to export only the symbols matching REGEX
Jason Merrill committed
5597 5598
  -LLIBDIR          search LIBDIR for required installed libraries
  -lNAME            OUTPUT-FILE requires the installed library libNAME
5599
  -module           build a library that can dlopened
5600 5601
  -no-fast-install  disable the fast-install mode
  -no-install       link a not-installable executable
#  
Jeff Law committed
5602
  -no-undefined     declare that a library does not refer to external symbols
Jason Merrill committed
5603
  -o OUTPUT-FILE    create OUTPUT-FILE from the specified objects
5604
  -objectlist FILE  Use a list of object files found in FILE to specify objects
#  
Jeff Law committed
5605
  -release RELEASE  specify package release information
Jason Merrill committed
5606
  -rpath LIBDIR     the created library will eventually be installed in LIBDIR
5607
  -R[ ]LIBDIR       add LIBDIR to the runtime path of programs and libraries
#  
Jeff Law committed
5608
  -static           do not do any dynamic linking of libtool libraries
Jason Merrill committed
5609
  -version-info CURRENT[:REVISION[:AGE]]
5610
		    specify library version info [each variable defaults to 0]
Jason Merrill committed
5611 5612 5613 5614 5615 5616 5617

All other options (arguments beginning with \`-') are ignored.

Every other argument is treated as a filename.  Files ending in \`.la' are
treated as uninstalled libtool libraries, other files are standard or library
object files.

5618 5619 5620
If the OUTPUT-FILE ends in \`.la', then a libtool library is created,
only library objects (\`.lo' files) may be specified, and \`-rpath' is
required, except when creating a convenience library.
Jason Merrill committed
5621

5622
If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created
5623
using \`ar' and \`ranlib', or on Windows using \`lib'.
Jason Merrill committed
5624

5625 5626
If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file
is created, otherwise an executable program is created."
Jason Merrill committed
5627 5628 5629
  ;;

uninstall)
Jason Merrill committed
5630
  $echo \
#  
Jeff Law committed
5631
"Usage: $modename [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...
Jason Merrill committed
5632 5633 5634 5635 5636 5637 5638 5639

Remove libraries from an installation directory.

RM is the name of the program to use to delete files associated with each FILE
(typically \`/bin/rm').  RM-OPTIONS are options (such as \`-f') to be passed
to RM.

If FILE is a libtool library, all the files associated with it are deleted.
#  
Jeff Law committed
5640
Otherwise, only FILE itself is deleted using RM."
Jason Merrill committed
5641 5642 5643
  ;;

*)
#  
Jeff Law committed
5644 5645
  $echo "$modename: invalid operation mode \`$mode'" 1>&2
  $echo "$help" 1>&2
Jason Merrill committed
5646 5647 5648 5649
  exit 1
  ;;
esac

#  
Jeff Law committed
5650 5651
echo
$echo "Try \`$modename --help' for more information about other modes."
Jason Merrill committed
5652 5653 5654

exit 0

5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665
# The TAGs below are defined such that we never get into a situation
# in which we disable both kinds of libraries.  Given conflicting
# choices, we go for a static library, that is the most portable,
# since we can't tell whether shared libraries were disabled because
# the user asked for that or because the platform doesn't support
# them.  This is particularly important on AIX, because we don't
# support having both static and shared libraries enabled at the same
# time on that platform, so we default to a shared-only configuration.
# If a disable-shared tag is given, we'll fallback to a static-only
# configuration.  But we'll never go from static-only to shared-only.

5666 5667
### BEGIN LIBTOOL TAG CONFIG: disable-shared
build_libtool_libs=no
5668
build_old_libs=yes
5669 5670 5671
### END LIBTOOL TAG CONFIG: disable-shared

### BEGIN LIBTOOL TAG CONFIG: disable-static
5672
build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac`
5673 5674
### END LIBTOOL TAG CONFIG: disable-static

Jason Merrill committed
5675 5676 5677 5678
# Local Variables:
# mode:shell-script
# sh-indentation:2
# End: