ltmain.sh 156 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 20 21 22 23 24 25 26
#
# 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
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
# 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 833

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

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

#  
Jeff Law committed
884 885 886 887
    # 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.
888 889
    while test $# -gt 0; do
      arg="$1"
890
      base_compile="$base_compile $arg"
891
      shift
892
      case $arg in
893 894 895 896 897 898
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
	qarg=\"`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`\" ### testsuite: skip nested quoting test
	;;
      *) qarg=$arg ;;
      esac
      libtool_args="$libtool_args $qarg"
899

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

909
	case $prev in
910 911 912 913 914 915 916
	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
917
	  case $arg in
918
	  *.la | *.lo) ;;  # We handle these cases below.
Jason Merrill committed
919 920 921 922 923 924 925 926
	  force)
	    if test "$dlself" = no; then
	      dlself=needless
	      export_dynamic=yes
	    fi
	    prev=
	    continue
	    ;;
927 928 929 930 931
	  self)
	    if test "$prev" = dlprefiles; then
	      dlself=yes
	    elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then
	      dlself=yes
Jason Merrill committed
932 933 934
	    else
	      dlself=needless
	      export_dynamic=yes
935 936 937 938 939
	    fi
	    prev=
	    continue
	    ;;
	  *)
Jason Merrill committed
940 941 942 943 944
	    if test "$prev" = dlfiles; then
	      dlfiles="$dlfiles $arg"
	    else
	      dlprefiles="$dlprefiles $arg"
	    fi
945
	    prev=
946
	    continue
947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963
	    ;;
	  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
	  ;;
#  
Jeff Law committed
964 965 966 967 968
	release)
	  release="-$arg"
	  prev=
	  continue
	  ;;
969 970 971 972 973 974 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
	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
1044 1045 1046 1047 1048
		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"
1049 1050 1051 1052 1053 1054 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
                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
1081 1082
	rpath | xrpath)
	  # We need an absolute path.
1083
	  case $arg in
Jason Merrill committed
1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100
	  [\\/]* | [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
1101 1102 1103
	  prev=
	  continue
	  ;;
1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118
	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
	  ;;
1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131
	framework)
	  case $host in
	   *-*-darwin*)
	     case "$deplibs " in
	       *" $qarg.framework "*) ;;
	       *) deplibs="$deplibs $qarg.framework" # this is fixed later
		  ;;
	     esac
	     ;;
	  esac
	  prev=
	  continue
	  ;;
1132 1133 1134 1135 1136 1137
	*)
	  eval "$prev=\"\$arg\""
	  prev=
	  continue
	  ;;
	esac
1138
      fi # test -n $prev
Jason Merrill committed
1139 1140 1141

      prevarg="$arg"

1142
      case $arg in
#  
Jeff Law committed
1143 1144
      -all-static)
	if test -n "$link_static_flag"; then
1145
	  compile_command="$compile_command $link_static_flag"
#  
Jeff Law committed
1146
	  finalize_command="$finalize_command $link_static_flag"
1147 1148
	fi
	continue
#  
Jeff Law committed
1149
	;;
Jason Merrill committed
1150

#  
Jeff Law committed
1151 1152 1153
      -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
1154 1155 1156
	continue
	;;

1157 1158 1159 1160 1161
      -avoid-version)
	avoid_version=yes
	continue
	;;

#  
Jeff Law committed
1162
      -dlopen)
1163 1164 1165
	prev=dlfiles
	continue
	;;
Jason Merrill committed
1166

#  
Jeff Law committed
1167
      -dlpreopen)
1168 1169 1170
	prev=dlprefiles
	continue
	;;
Jason Merrill committed
1171

#  
Jeff Law committed
1172
      -export-dynamic)
Jason Merrill committed
1173 1174
	export_dynamic=yes
	continue
1175
	;;
Jason Merrill committed
1176

1177 1178
      -export-symbols | -export-symbols-regex)
	if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
1179
	  $echo "$modename: more than one -exported-symbols argument is not allowed"
1180 1181
	  exit 1
	fi
Jason Merrill committed
1182
	if test "X$arg" = "X-export-symbols"; then
1183 1184 1185 1186 1187 1188
	  prev=expsyms
	else
	  prev=expsyms_regex
	fi
	continue
	;;
Jason Merrill committed
1189

1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200
      # 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
	;;
1201

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

1234
      -l*)
1235
	if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then
1236
	  case $host in
1237
	  *-*-cygwin* | *-*-pw32* | *-*-beos*)
1238
	    # These systems don't actually have a C or math library (as such)
Jason Merrill committed
1239 1240
	    continue
	    ;;
1241 1242 1243
	  *-*-mingw* | *-*-os2*)
	    # These systems don't actually have a C library (as such)
	    test "X$arg" = "X-lc" && continue
1244
	    ;;
Jason Merrill committed
1245 1246
	  esac
	fi
1247
	deplibs="$deplibs $arg"
1248
	continue
1249
	;;
Jason Merrill committed
1250

1251
      -module)
Jason Merrill committed
1252 1253
	module=yes
	continue
1254
	;;
Jason Merrill committed
1255

1256 1257 1258 1259 1260 1261
      -no-fast-install)
	fast_install=no
	continue
	;;

      -no-install)
1262
	case $host in
1263
	*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
1264 1265 1266 1267 1268 1269
	  # 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
	  ;;
1270
	*) no_install=yes ;;
1271 1272 1273 1274
	esac
	continue
	;;

#  
Jeff Law committed
1275 1276
      -no-undefined)
	allow_undefined=no
Jason Merrill committed
1277 1278 1279
	continue
	;;

1280 1281 1282 1283 1284
      -objectlist)
	prev=objectlist
	continue
	;;

#  
Jeff Law committed
1285
      -o) prev=output ;;
Jason Merrill committed
1286

#  
Jeff Law committed
1287 1288 1289
      -release)
	prev=release
	continue
Jason Merrill committed
1290 1291
	;;

#  
Jeff Law committed
1292
      -rpath)
1293 1294 1295 1296 1297 1298 1299 1300 1301 1302
	prev=rpath
	continue
	;;

      -R)
	prev=xrpath
	continue
	;;

      -R*)
Jason Merrill committed
1303 1304
	dir=`$echo "X$arg" | $Xsed -e 's/^-R//'`
	# We need an absolute path.
1305
	case $dir in
Jason Merrill committed
1306 1307 1308 1309 1310 1311 1312 1313 1314 1315
	[\\/]* | [A-Za-z]:[\\/]*) ;;
	*)
	  $echo "$modename: only absolute run-paths are allowed" 1>&2
	  exit 1
	  ;;
	esac
	case "$xrpath " in
	*" $dir "*) ;;
	*) xrpath="$xrpath $dir" ;;
	esac
1316 1317
	continue
	;;
Jason Merrill committed
1318

#  
Jeff Law committed
1319
      -static)
1320
	# The effects of -static are defined in a previous loop.
1321 1322 1323 1324
	# 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.
1325 1326 1327 1328 1329
	continue
	;;

      -thread-safe)
	thread_safe=yes
#  
Jeff Law committed
1330
	continue
Jason Merrill committed
1331 1332
	;;

#  
Jeff Law committed
1333
      -version-info)
1334 1335 1336
	prev=vinfo
	continue
	;;
Jason Merrill committed
1337

1338 1339 1340 1341 1342 1343
      -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"
1344
	  case $flag in
1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361
	    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
	    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"
1362
	  case $flag in
1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383
	    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
	    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
	;;
1384 1385 1386 1387
      -framework)
	prev=framework
	continue
	;;
1388

#  
Jeff Law committed
1389 1390 1391 1392 1393
      # 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"`
1394
	case $arg in
1395
	*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
#  
Jeff Law committed
1396 1397 1398
	  arg="\"$arg\""
	  ;;
	esac
1399
	;;
Jason Merrill committed
1400

1401
      *.$objext)
1402 1403 1404
	# A standard object.
	objs="$objs $arg"
	;;
Jason Merrill committed
1405

#  
Jeff Law committed
1406
      *.lo)
1407 1408 1409 1410 1411 1412 1413 1414 1415
	# 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.
1416
          case $arg in
1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432
          */* | *\\*) . $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
1433
	  else
1434
	    xdir="$xdir/"
#  
Jeff Law committed
1435
	  fi
Jason Merrill committed
1436

1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 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
          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
1474 1475 1476 1477 1478
	  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"
1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500
          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
1501
	fi
1502 1503 1504 1505 1506 1507 1508
	;;

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

#  
Jeff Law committed
1511
      *.la)
1512 1513
	# A libtool-controlled library.

1514 1515 1516 1517 1518 1519 1520 1521
	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=
1522
	else
1523
	  deplibs="$deplibs $arg"
1524
	fi
1525 1526
	continue
	;;
1527

1528 1529 1530 1531 1532
      # 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"`
1533
	case $arg in
1534 1535 1536
	*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
	  arg="\"$arg\""
	  ;;
1537
	esac
1538
	;;
1539
      esac # arg
1540

1541 1542 1543 1544 1545
      # Now actually substitute the argument into the commands.
      if test -n "$arg"; then
	compile_command="$compile_command $arg"
	finalize_command="$finalize_command $arg"
      fi
1546
    done # argument parsing loop
1547

1548 1549 1550 1551 1552
    if test -n "$prev"; then
      $echo "$modename: the \`$prevarg' option requires an argument" 1>&2
      $echo "$help" 1>&2
      exit 1
    fi
1553

1554 1555 1556 1557 1558 1559 1560 1561 1562
    # 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.
1563
      "`$echo $CC` "*) ;;
1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576
      *)
        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
	      ;;
1577
	    "`$echo $CC` "*)
1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 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
	      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
1634
    case $output in
1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658
    "")
      $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"
1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670

      # 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=
1671 1672 1673 1674 1675 1676
    fi

    deplibs=
    newdependency_libs=
    newlib_search_path=
    need_relink=no # whether we're linking any uninstalled libtool libraries
1677 1678
    notinst_deplibs= # not-installed libtool libraries
    notinst_path= # paths that contain not-installed libtool libraries
1679 1680 1681 1682
    case $linkmode in
    lib)
	passes="conv link"
	for file in $dlfiles $dlprefiles; do
1683
	  case $file in
1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699
	  *.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"
	;;
1700
    *)  passes="conv"
1701 1702 1703 1704
	;;
    esac
    for pass in $passes; do
      if test $linkmode = prog; then
1705
	# Determine which files to process
1706
	case $pass in
1707 1708 1709 1710 1711
	dlopen)
	  libs="$dlfiles"
	  save_deplibs="$deplibs" # Collect dlpreopened libraries
	  deplibs=
	  ;;
1712 1713 1714 1715 1716 1717 1718
	dlpreopen) libs="$dlprefiles" ;;
	link) libs="$deplibs %DEPLIBS% $dependency_libs" ;;
	esac
      fi
      for deplib in $libs; do
	lib=
	found=no
1719
	case $deplib in
1720
	-l*)
1721 1722
	  if test $linkmode = oldlib && test $linkmode = obj; then
	    $echo "$modename: warning: \`-l' is ignored for archives/objects: $deplib" 1>&2
1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738
	    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
1739
	    # deplib doesn't seem to be a libtool library
1740 1741 1742 1743 1744 1745 1746 1747 1748
	    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
1749
	  ;; # -l
1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771
	-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
	    ;;
	  *)
1772
	    $echo "$modename: warning: \`-L' is ignored for archives/objects: $deplib" 1>&2
1773
	    ;;
1774
	  esac # linkmode
1775
	  continue
1776
	  ;; # -L
1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 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
	-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
	    ;;
1820 1821
	  esac # linkmode
	  ;; # *.$libext
1822
	*.lo | *.$objext)
1823 1824 1825 1826 1827 1828 1829 1830
	  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"
1831
	  fi
1832 1833 1834 1835 1836 1837
	  continue
	  ;;
	%DEPLIBS%)
	  alldeplibs=yes
	  continue
	  ;;
1838
	esac # case $deplib
1839 1840 1841 1842
	if test $found = yes || test -f "$lib"; then :
	else
	  $echo "$modename: cannot find the library \`$lib'" 1>&2
	  exit 1
1843 1844
	fi

1845 1846 1847 1848 1849
	# 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
1850 1851
	fi

1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865
	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
1866
	case $lib in
1867 1868 1869 1870
	*/* | *\\*) . $lib ;;
	*) . ./$lib ;;
	esac

1871 1872 1873 1874 1875 1876 1877
	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

1878 1879
	if test "$linkmode,$pass" = "lib,link" ||
	   test "$linkmode,$pass" = "prog,scan" ||
1880 1881
	   { test $linkmode = oldlib && test $linkmode = obj; }; then
	   # Add dl[pre]opened files of deplib
1882 1883 1884 1885 1886
	  test -n "$dlopen" && dlfiles="$dlfiles $dlopen"
	  test -n "$dlpreopen" && dlprefiles="$dlprefiles $dlpreopen"
	fi

	if test $pass = conv; then
1887
	  # Only check for convenience libraries
1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908
	  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
1909
	  continue
1910
	fi # $pass = conv
1911

1912 1913 1914 1915 1916 1917 1918 1919 1920 1921
	# 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

1922
	# This library was specified with -dlopen.
1923 1924 1925 1926 1927 1928
	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
1929
	    # If there is no dlname, no dlopen support or we're linking
1930 1931
	    # statically, we need to preload.
	    dlprefiles="$dlprefiles $lib"
1932
	  else
1933 1934 1935
	    newdlfiles="$newdlfiles $lib"
	  fi
	  continue
1936
	fi # $pass = dlopen
1937 1938

	# We need an absolute path.
1939
	case $ladir in
1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961
	[\\/]* | [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"
1962
	  fi
1963 1964 1965 1966
	else
	  dir="$ladir/$objdir"
	  absdir="$abs_ladir/$objdir"
	  # Remove this search path later
1967 1968
	  notinst_path="$notinst_path $abs_ladir"
	fi # $installed = yes
1969
	name=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
1970

1971 1972 1973 1974 1975 1976
	# 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
1977 1978 1979
	  # Prefer using a static library (so that no silly _DYNAMIC symbols
	  # are required to link).
	  if test -n "$old_library"; then
1980
	    newdlprefiles="$newdlprefiles $dir/$old_library"
1981 1982 1983
	  # Otherwise, use the dlname, so that lt_dlopen finds it.
	  elif test -n "$dlname"; then
	    newdlprefiles="$newdlprefiles $dir/$dlname"
1984
	  else
1985
	    newdlprefiles="$newdlprefiles $dir/$linklib"
1986
	  fi
1987
	fi # $pass = dlpreopen
1988

1989
	if test -z "$libdir"; then
1990
	  # Link the convenience library
1991 1992 1993 1994 1995 1996
	  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
1997
	    deplibs="$lib $deplibs"
1998
	  fi
1999 2000
	  continue
	fi
#  
Jeff Law committed
2001

2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013
	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
2014
	    case $deplib in
2015 2016 2017 2018 2019 2020 2021 2022 2023
	    -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"
2024
	    fi
2025 2026 2027 2028
	    case "$tmp_libs " in
	    *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
	    esac
	    tmp_libs="$tmp_libs $deplib"
2029
	  done # for deplib
2030
	  continue
2031
	fi # $linkmode = prog...
2032

2033 2034 2035 2036
	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
2037

2038 2039
	  if test "$linkmode,$pass" = "prog,link" ||
	   { test $linkmode = lib && test $hardcode_into_libs = yes; }; then
2040 2041 2042 2043
	    # Hardcode the library path.
	    # Skip directories that are in the system default run-time
	    # search path.
	    case " $sys_lib_dlsearch_path " in
2044
	    *" $absdir "*) ;;
2045 2046 2047 2048 2049 2050
	    *)
	      case "$compile_rpath " in
	      *" $absdir "*) ;;
	      *) compile_rpath="$compile_rpath $absdir"
	      esac
	      ;;
2051
	    esac
2052
	    case " $sys_lib_dlsearch_path " in
2053
	    *" $libdir "*) ;;
2054 2055 2056 2057 2058 2059
	    *)
	      case "$finalize_rpath " in
	      *" $libdir "*) ;;
	      *) finalize_rpath="$finalize_rpath $libdir"
	      esac
	      ;;
2060
	    esac
2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072
	    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
2073

2074 2075 2076 2077 2078 2079 2080 2081 2082
	  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
2083
	    notinst_deplibs="$notinst_deplibs $lib"
2084 2085 2086 2087 2088 2089 2090 2091 2092
	    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\"`
2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103
	    # 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
2104 2105 2106 2107 2108 2109
	      eval soname=\"$soname_spec\"
	    else
	      soname="$realname"
	    fi

	    # Make a new name for the extract_expsyms_cmds to use
2110 2111
	    soroot="$soname"
	    soname=`echo $soroot | sed -e 's/^.*\///'`
2112 2113 2114 2115 2116 2117 2118
	    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='~'
2119
	      cmds=$extract_expsyms_cmds
2120 2121
	      for cmd in $cmds; do
		IFS="$save_ifs"
2122
		eval cmd=\"$cmd\"
2123 2124 2125 2126 2127 2128 2129 2130 2131 2132
		$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='~'
2133
	      cmds=$old_archive_from_expsyms_cmds
2134 2135
	      for cmd in $cmds; do
		IFS="$save_ifs"
2136
		eval cmd=\"$cmd\"
2137 2138 2139 2140 2141 2142 2143 2144
		$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
2145
	  fi # test -n $old_archive_from_expsyms_cmds
2146 2147 2148 2149 2150 2151

	  if test $linkmode = prog || test "$mode" != relink; then
	    add_shlibpath=
	    add_dir=
	    add=
	    lib_linked=yes
2152
	    case $hardcode_action in
2153 2154 2155 2156
	    immediate | unsupported)
	      if test "$hardcode_direct" = no; then
		add="$dir/$linklib"
	      elif test "$hardcode_minus_L" = no; then
2157
		case $host in
2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190
		*-*-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"
		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
2191
	      case :$compile_shlibpath: in
2192 2193
	      *":$add_shlibpath:"*) ;;
	      *) compile_shlibpath="$compile_shlibpath$add_shlibpath:" ;;
2194
	      esac
2195 2196 2197 2198
	    fi
	    if test $linkmode = prog; then
	      test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs"
	      test -n "$add" && compile_deplibs="$add $compile_deplibs"
2199
	    else
2200 2201 2202 2203 2204
	      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
2205
		case :$finalize_shlibpath: in
2206 2207 2208 2209
		*":$libdir:"*) ;;
		*) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;
		esac
	      fi
2210
	    fi
2211
	  fi
2212

2213 2214 2215 2216 2217
	  if test $linkmode = prog || test "$mode" = relink; then
	    add_shlibpath=
	    add_dir=
	    add=
	    # Finalize command for both is simple: just hardcode it.
2218
	    if test "$hardcode_direct" = yes; then
2219
	      add="$libdir/$linklib"
2220
	    elif test "$hardcode_minus_L" = yes; then
2221 2222
	      add_dir="-L$libdir"
	      add="-l$name"
2223
	    elif test "$hardcode_shlibpath_var" = yes; then
2224
	      case :$finalize_shlibpath: in
2225 2226
	      *":$libdir:"*) ;;
	      *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;
2227
	      esac
2228
	      add="-l$name"
2229
	    else
2230 2231 2232
	      # We cannot seem to hardcode it, guess we'll fake it.
	      add_dir="-L$libdir"
	      add="-l$name"
2233
	    fi
2234

2235 2236 2237 2238 2239 2240 2241
	    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
2242
	  fi
2243
	elif test $linkmode = prog; then
2244 2245 2246 2247 2248 2249 2250 2251 2252
	  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
2253 2254 2255 2256 2257
	  # 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"
2258 2259
	    compile_deplibs="$dir/$linklib $compile_deplibs"
	    finalize_deplibs="$dir/$linklib $finalize_deplibs"
#  
Jeff Law committed
2260
	  else
2261 2262 2263 2264 2265 2266 2267 2268
	    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.
2269

2270 2271 2272 2273 2274 2275 2276
	    # 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."
2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293
	    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
2294 2295 2296 2297 2298 2299
	  else
	    convenience="$convenience $dir/$old_library"
	    old_convenience="$old_convenience $dir/$old_library"
	    deplibs="$dir/$old_library $deplibs"
	    link_static=yes
	  fi
2300
	fi # link shared/static library?
2301 2302 2303

	if test $linkmode = lib; then
	  if test -n "$dependency_libs" &&
2304
	     { test $hardcode_into_libs != yes || test $build_old_libs = yes ||
2305 2306 2307 2308
	       test $link_static = yes; }; then
	    # Extract -R from dependency_libs
	    temp_deplibs=
	    for libdir in $dependency_libs; do
2309
	      case $libdir in
2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336
	      -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
2337
	      case $deplib in
2338 2339 2340 2341 2342
	      -L*) path="$deplib" ;;
	      *.la)
		dir=`$echo "X$deplib" | $Xsed -e 's%/[^/]*$%%'`
		test "X$dir" = "X$deplib" && dir="."
		# We need an absolute path.
2343
		case $dir in
2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373
		[\\/]* | [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
2374 2375 2376
	  fi # link_all_deplibs != no
	fi # linkmode = lib
      done # for deplib in $libs
2377 2378 2379 2380 2381 2382 2383
      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
2384
	test $pass != scan && dependency_libs="$newdependency_libs"
2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402
	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
2403
	  # Add libraries to $var in reverse order
2404 2405 2406
	  eval tmp_libs=\"\$$var\"
	  new_libs=
	  for deplib in $tmp_libs; do
2407
	    case $deplib in
2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420
	    -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
2421 2422 2423
	  done
	  tmp_libs=
	  for deplib in $new_libs; do
2424
	    case $deplib in
2425 2426 2427 2428 2429 2430 2431
	    -L*)
	      case " $tmp_libs " in
	      *" $deplib "*) ;;
	      *) tmp_libs="$tmp_libs $deplib" ;;
	      esac
	      ;;
	    *) tmp_libs="$tmp_libs $deplib" ;;
2432
	    esac
2433 2434
	  done
	  eval $var=\"$tmp_libs\"
2435
	done # for var
#  
Jeff Law committed
2436
      fi
2437 2438 2439 2440 2441 2442
      if test "$pass" = "conv" &&
       { test "$linkmode" = "lib" || test "$linkmode" = "prog"; }; then
	libs="$deplibs" # reset libs
	deplibs=
      fi
    done # for pass
2443 2444 2445
    if test $linkmode = prog; then
      dlfiles="$newdlfiles"
      dlprefiles="$newdlprefiles"
Jason Merrill committed
2446 2447
    fi

2448 2449
    case $linkmode in
    oldlib)
Jason Merrill committed
2450
      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
2451
	$echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2
2452 2453 2454
      fi

      if test -n "$rpath"; then
2455 2456 2457 2458 2459
	$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
2460 2461 2462
      fi

      if test -n "$vinfo"; then
2463
	$echo "$modename: warning: \`-version-info' is ignored for archives" 1>&2
2464 2465 2466
      fi

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

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

#  
Jeff Law committed
2474 2475
      # Now set the variables for building old libraries.
      build_libtool_libs=no
2476
      oldlibs="$output"
2477
      objs="$objs$old_deplibs"
#  
Jeff Law committed
2478 2479
      ;;

2480
    lib)
#  
Jeff Law committed
2481
      # Make sure we only generate libraries of the form `libNAME.la'.
2482
      case $outputname in
2483 2484
      lib*)
	name=`$echo "X$outputname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
2485
	eval shared_ext=\"$shrext\"
2486 2487
	eval libname=\"$libname_spec\"
	;;
#  
Jeff Law committed
2488
      *)
2489 2490 2491 2492 2493 2494 2495 2496
	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$//'`
2497
	  eval shared_ext=\"$shrext\"
2498 2499 2500 2501
	  eval libname=\"$libname_spec\"
	else
	  libname=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
	fi
#  
Jeff Law committed
2502 2503 2504
	;;
      esac

Jason Merrill committed
2505
      if test -n "$objs"; then
2506 2507 2508 2509 2510 2511 2512 2513 2514
	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
2515 2516
      fi

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

#  
Jeff Law committed
2521 2522 2523
      set dummy $rpath
      if test $# -gt 2; then
	$echo "$modename: warning: ignoring multiple \`-rpath's for a libtool library" 1>&2
Jason Merrill committed
2524
      fi
#  
Jeff Law committed
2525
      install_libdir="$2"
Jason Merrill committed
2526

2527
      oldlibs=
2528
      if test -z "$rpath"; then
2529 2530
	if test "$build_libtool_libs" = yes; then
	  # Building a libtool convenience library.
2531 2532 2533
	  # Some compilers have problems with a `.al' extension so
          # convenience libraries should have the same extension an
          # archive normally would.
2534 2535 2536 2537
	  oldlibs="$output_objdir/$libname.$libext $oldlibs"
	  build_libtool_libs=convenience
	  build_old_libs=yes
	fi
2538 2539 2540 2541 2542 2543 2544 2545 2546

	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
2547

#  
Jeff Law committed
2548 2549
	# Parse the version information argument.
	IFS="${IFS= 	}"; save_ifs="$IFS"; IFS=':'
2550
	set dummy $vinfo 0 0 0
#  
Jeff Law committed
2551
	IFS="$save_ifs"
Jason Merrill committed
2552

2553
	if test -n "$8"; then
#  
Jeff Law committed
2554 2555 2556 2557
	  $echo "$modename: too many parameters to \`-version-info'" 1>&2
	  $echo "$help" 1>&2
	  exit 1
	fi
Jason Merrill committed
2558

2559 2560 2561
	current="$2"
	revision="$3"
	age="$4"
Jason Merrill committed
2562

#  
Jeff Law committed
2563
	# Check that each of the things are valid numbers.
2564
	case $current in
2565
	0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;;
#  
Jeff Law committed
2566 2567 2568 2569 2570 2571
	*)
	  $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
2572

2573
	case $revision in
2574
	0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;;
#  
Jeff Law committed
2575 2576 2577 2578 2579 2580
	*)
	  $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
2581

2582
	case $age in
2583
	0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;;
#  
Jeff Law committed
2584 2585 2586 2587 2588 2589
	*)
	  $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
2590

#  
Jeff Law committed
2591 2592 2593 2594 2595
	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
2596

#  
Jeff Law committed
2597
	# Calculate the version variables.
2598 2599 2600
	major=
	versuffix=
	verstring=
2601
	case $version_type in
#  
Jeff Law committed
2602
	none) ;;
Jason Merrill committed
2603

2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623
	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";
	  ;;

2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634
	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
2635 2636 2637 2638

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

#  
Jeff Law committed
2641 2642
	linux)
	  major=.`expr $current - $age`
2643
	  versuffix="$major.$age.$revision"
#  
Jeff Law committed
2644
	  ;;
Jason Merrill committed
2645

#  
Jeff Law committed
2646
	osf)
2647
	  major=.`expr $current - $age`
2648
	  versuffix=".$current.$age.$revision"
#  
Jeff Law committed
2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663
	  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)
2664 2665
	  major=".$current"
	  versuffix=".$current.$revision"
#  
Jeff Law committed
2666 2667 2668
	  ;;

	windows)
2669 2670
	  # Use '-' rather than '.', since we only want one
	  # extension on DOS 8.3 filesystems.
#  
Jeff Law committed
2671
	  major=`expr $current - $age`
2672
	  versuffix="-$major"
#  
Jeff Law committed
2673 2674 2675 2676 2677 2678 2679 2680 2681
	  ;;

	*)
	  $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

2682 2683
	# Clear the version info if we defaulted, and they specified a release.
	if test -z "$vinfo" && test -n "$release"; then
#  
Jeff Law committed
2684
	  major=
2685 2686 2687 2688 2689 2690 2691 2692 2693 2694
	  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
2695 2696 2697
	  if test "$need_version" = no; then
	    versuffix=
	  else
2698
	    versuffix=".0.0"
2699
	  fi
2700
	fi
#  
Jeff Law committed
2701

2702 2703 2704 2705 2706 2707
	# Remove version info from name if versioning should be avoided
	if test "$avoid_version" = yes && test "$need_version" = no; then
	  major=
	  versuffix=
	  verstring=""
	fi
2708

2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719
	# 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
2720
      fi
Jason Merrill committed
2721

2722 2723 2724 2725 2726 2727
      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
2728
          case $p in
2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740
            *.$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
2741 2742 2743 2744 2745 2746 2747 2748
      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
2749 2750
      fi

2751
      # Eliminate all temporary directories.
2752
      for path in $notinst_path; do
2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767
	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
2768
	if test $hardcode_into_libs != yes || test $build_old_libs = yes; then
2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792
	  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
2793
      if test "$build_libtool_libs" = yes; then
2794
	if test -n "$rpath"; then
2795
	  case $host in
2796
	  *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos*)
2797 2798
	    # these systems don't actually have a c library (as such)!
	    ;;
2799 2800 2801 2802
	  *-*-rhapsody* | *-*-darwin1.[012])
	    # Rhapsody C library is in the System framework
	    deplibs="$deplibs -framework System"
	    ;;
2803 2804 2805
	  *-*-netbsd*)
	    # Don't link with libc until the a.out ld.so is fixed.
	    ;;
2806
	  *)
2807 2808 2809 2810
	    # Add libc to deplibs on all other systems if necessary.
	    if test $build_libtool_need_lc = "yes"; then
	      deplibs="$deplibs -lc"
	    fi
2811 2812 2813 2814
	    ;;
	  esac
	fi

2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828
	# 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
2829
	case $deplibs_check_method in
2830
	pass_all)
Jason Merrill committed
2831 2832 2833 2834 2835
	  # 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.
2836
	  newdeplibs=$deplibs
Jason Merrill committed
2837
	  ;;
2838 2839 2840 2841 2842 2843 2844 2845 2846 2847
	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
2848
	  $LTCC -o conftest conftest.c $deplibs
2849 2850 2851 2852 2853
	  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.
2854
	      if test -n "$name" && test "$name" != "0"; then
2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878
		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.
2879
	      if test -n "$name" && test "$name" != "0"; then
2880
		$rm conftest
2881
		$LTCC -o conftest conftest.c $i
2882 2883 2884
		# Did it work?
		if test $? -eq 0 ; then
		  ldd_output=`ldd conftest`
Jason Merrill committed
2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898
		  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
2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914
		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
2915
	  file_magic_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
2916 2917 2918
	  for a_deplib in $deplibs; do
	    name="`expr $a_deplib : '-l\(.*\)'`"
	    # If $name is empty we are operating on a -L argument.
2919
	    if test -n "$name" && test "$name" != "0"; then
2920
	      libname=`eval \\$echo \"$libname_spec\"`
2921
	      for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
2922 2923 2924
		    potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
		    for potent_lib in $potential_libs; do
		      # Follow soft links.
Jason Merrill committed
2925
		      if ls -lLd "$potent_lib" 2>/dev/null \
2926
			 | grep " -> " >/dev/null; then
2927
			continue
2928 2929 2930 2931 2932 2933 2934 2935 2936
		      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/.* -> //'`
2937
			case $potliblink in
Jason Merrill committed
2938
			[\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";;
2939 2940 2941
			*) potlib=`$echo "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";;
			esac
		      done
Jason Merrill committed
2942
		      if eval $file_magic_cmd \"\$potlib\" 2>/dev/null \
2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964
			 | 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.
	  ;;
2965 2966 2967 2968 2969 2970
	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.
2971
	    if test -n "$name" && test "$name" != "0"; then
2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998
	      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
2999 3000
	none | unknown | *)
	  newdeplibs=""
3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020
	  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

3021 3022 3023 3024 3025 3026 3027
	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

3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052
	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."
3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067

	    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
3068 3069
	  fi
	fi
3070 3071 3072 3073 3074 3075 3076 3077
	# 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
3078 3079
	# Done checking deplibs!
	deplibs=$newdeplibs
3080 3081
      fi

Jason Merrill committed
3082 3083 3084 3085
      # All the library-specific variables (install_libdir is set above).
      library_names=
      old_library=
      dlname=
3086

Jason Merrill committed
3087
      # Test again, we may have decided not to build it any more
3088
      if test "$build_libtool_libs" = yes; then
3089
	if test $hardcode_into_libs = yes; then
3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101
	  # 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.
3102
		  case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143
		  *"$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

3144 3145
	# Get the real and link names of the library.
	eval library_names=\"$library_names_spec\"
3146
	eval shared_ext=\"$shrext\"
3147 3148 3149 3150 3151 3152 3153 3154 3155
	set dummy $library_names
	realname="$2"
	shift; shift

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

3158
	lib="$output_objdir/$realname"
Jason Merrill committed
3159 3160 3161 3162 3163
	for link
	do
	  linknames="$linknames $link"
	done

3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179
#	# 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
3180

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

3184 3185 3186 3187
	# 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
3188
	    export_symbols="$output_objdir/$libname.exp"
3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210
	    $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
3211 3212
	if test -n "$convenience"; then
	  if test -n "$whole_archive_flag_spec"; then
3213
	    save_libobjs=$libobjs
Jason Merrill committed
3214 3215 3216 3217 3218
	    eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
	  else
	    gentop="$output_objdir/${outputname}x"
	    $show "${rm}r $gentop"
	    $run ${rm}r "$gentop"
3219 3220
	    $show "$mkdir $gentop"
	    $run $mkdir "$gentop"
Jason Merrill committed
3221 3222 3223 3224 3225 3226 3227 3228
	    status=$?
	    if test $status -ne 0 && test ! -d "$gentop"; then
	      exit $status
	    fi
	    generated="$generated $gentop"

	    for xlib in $convenience; do
	      # Extract the objects.
3229
	      case $xlib in
Jason Merrill committed
3230 3231 3232 3233 3234 3235 3236 3237
	      [\\/]* | [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"
3238 3239
	      $show "$mkdir $xdir"
	      $run $mkdir "$xdir"
Jason Merrill committed
3240 3241 3242 3243 3244 3245 3246
	      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 $?

3247
	      libobjs="$libobjs "`find $xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP`
Jason Merrill committed
3248 3249 3250 3251 3252 3253
	    done
	  fi
	fi

	if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then
	  eval flag=\"$thread_safe_flag_spec\"
3254 3255 3256 3257
	  linker_flags="$linker_flags $flag"
	fi

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

3262
	# Do each of the archive commands.
3263
	if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
3264 3265
	  eval test_cmds=\"$archive_expsym_cmds\"
	  cmds=$archive_expsym_cmds
3266
	else
3267 3268
	  eval test_cmds=\"$archive_cmds\"
	  cmds=$archive_cmds
3269
	fi
3270
        if len=`expr "X$test_cmds" : ".*"` &&
3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345
           test $len -le $max_cmd_len; then
          :
        else
	  # The command line is too long to link in one step, link piecewise.
          $echo "creating reloadable object files..."

	  # 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

	  # Clear the reloadable object creation command queue and
	  # initialize k to one.
          test_cmds=
          concat_cmds=
          objlist=
          delfiles=
          last_robj=
          k=1
          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"
3346
	    eval cmd=\"$cmd\"
3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363
            $show "$cmd"
            $run eval "$cmd" || exit $?
          done
          IFS="$save_ifs"

          libobjs=$output
	  # Restore the value of output.
          output=$save_output

	  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
3364 3365 3366
	    cmds=$archive_expsym_cmds
	  else
	    cmds=$archive_cmds
3367 3368 3369 3370 3371 3372 3373 3374 3375
          fi

	  # Append the command to remove the reloadable object files
	  # to the just-reset $cmds.
          eval cmds=\"\$cmds~$rm $delfiles\"
        fi
        IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
        for cmd in $cmds; do
          IFS="$save_ifs"
3376
	  eval cmd=\"$cmd\"
3377 3378 3379 3380
          $show "$cmd"
          $run eval "$cmd" || exit $?
        done
        IFS="$save_ifs"
3381

3382
	# Restore the uninstalled library and exit
3383
	if test "$mode" = relink; then
3384 3385 3386 3387
	  $run eval '(cd $output_objdir && $rm ${realname}T && $mv $realname ${realname}T && $mv "$realname"U $realname)' || exit $?
	  exit 0
	fi

3388 3389
	# Create links to the real library.
	for linkname in $linknames; do
#  
Jeff Law committed
3390
	  if test "$realname" != "$linkname"; then
3391 3392
	    $show "(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)"
	    $run eval '(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)' || exit $?
3393 3394
	  fi
	done
Jason Merrill committed
3395

3396 3397
	# If -module or -export-dynamic was specified, set the dlname.
	if test "$module" = yes || test "$export_dynamic" = yes; then
3398 3399 3400
	  # On all known operating systems, these are identical.
	  dlname="$soname"
	fi
Jason Merrill committed
3401 3402 3403
      fi
      ;;

3404
    obj)
Jason Merrill committed
3405
      if test -n "$deplibs"; then
3406
	$echo "$modename: warning: \`-l' and \`-L' are ignored for objects" 1>&2
#  
Jeff Law committed
3407 3408
      fi

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

#  
Jeff Law committed
3413
      if test -n "$rpath"; then
3414 3415 3416 3417 3418
	$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
3419 3420 3421
      fi

      if test -n "$vinfo"; then
3422
	$echo "$modename: warning: \`-version-info' is ignored for objects" 1>&2
#  
Jeff Law committed
3423 3424 3425
      fi

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

3429
      case $output in
Jason Merrill committed
3430
      *.lo)
3431
	if test -n "$objs$old_deplibs"; then
3432 3433 3434 3435 3436 3437
	  $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
3438
      *)
3439 3440 3441
	libobj=
	obj="$output"
	;;
Jason Merrill committed
3442 3443 3444 3445 3446
      esac

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

Jason Merrill committed
3447 3448 3449 3450 3451 3452 3453 3454
      # 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
3455
      wl=
Jason Merrill committed
3456 3457 3458 3459 3460 3461 3462 3463

      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"
3464 3465
	  $show "$mkdir $gentop"
	  $run $mkdir "$gentop"
Jason Merrill committed
3466 3467 3468 3469 3470 3471 3472 3473
	  status=$?
	  if test $status -ne 0 && test ! -d "$gentop"; then
	    exit $status
	  fi
	  generated="$generated $gentop"

	  for xlib in $convenience; do
	    # Extract the objects.
3474
	    case $xlib in
Jason Merrill committed
3475 3476 3477 3478 3479 3480 3481 3482
	    [\\/]* | [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"
3483 3484
	    $show "$mkdir $xdir"
	    $run $mkdir "$xdir"
Jason Merrill committed
3485 3486 3487 3488 3489 3490 3491
	    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 $?

3492
	    reload_conv_objs="$reload_objs "`find $xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP`
Jason Merrill committed
3493 3494 3495 3496
	  done
	fi
      fi

Jason Merrill committed
3497
      # Create the old-style object.
3498
      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
3499 3500

      output="$obj"
#  
Jeff Law committed
3501
      eval cmds=\"$reload_cmds\"
3502
      IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
Jason Merrill committed
3503
      for cmd in $cmds; do
3504 3505 3506
	IFS="$save_ifs"
	$show "$cmd"
	$run eval "$cmd" || exit $?
Jason Merrill committed
3507 3508 3509 3510
      done
      IFS="$save_ifs"

      # Exit if we aren't doing a library object file.
Jason Merrill committed
3511 3512 3513 3514 3515 3516 3517 3518
      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
3519 3520

      if test "$build_libtool_libs" != yes; then
Jason Merrill committed
3521 3522 3523 3524 3525
	if test -n "$gentop"; then
	  $show "${rm}r $gentop"
	  $run ${rm}r $gentop
	fi

3526 3527
	# Create an invalid libtool object if no PIC, so that we don't
	# accidentally link it into a program.
3528 3529
	# $show "echo timestamp > $libobj"
	# $run eval "echo timestamp > $libobj" || exit $?
3530
	exit 0
Jason Merrill committed
3531 3532
      fi

3533
      if test -n "$pic_flag" || test "$pic_mode" != default; then
3534
	# Only do commands if we really have different PIC objects.
Jason Merrill committed
3535
	reload_objs="$libobjs $reload_conv_objs"
3536 3537 3538 3539 3540 3541 3542 3543 3544
	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"
3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558
#     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
3559 3560 3561 3562 3563
      fi

      if test -n "$gentop"; then
	$show "${rm}r $gentop"
	$run ${rm}r $gentop
Jason Merrill committed
3564 3565 3566 3567 3568
      fi

      exit 0
      ;;

3569
    prog)
3570
      case $host in
3571
	*cygwin*) output=`echo $output | sed -e 's,.exe$,,;s,$,.exe,'` ;;
3572
      esac
#  
Jeff Law committed
3573
      if test -n "$vinfo"; then
3574
	$echo "$modename: warning: \`-version-info' is ignored for programs" 1>&2
Jason Merrill committed
3575 3576
      fi

#  
Jeff Law committed
3577
      if test -n "$release"; then
3578
	$echo "$modename: warning: \`-release' is ignored for programs" 1>&2
Jason Merrill committed
3579 3580
      fi

3581
      if test "$preload" = yes; then
3582
	if test "$dlopen_support" = unknown && test "$dlopen_self" = unknown &&
3583 3584
	   test "$dlopen_self_static" = unknown; then
	  $echo "$modename: warning: \`AC_LIBTOOL_DLOPEN' not used. Assuming no dlopen support."
3585
	fi
3586
      fi
3587

3588 3589 3590 3591 3592 3593 3594 3595
      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

3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608
      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

3609 3610 3611
      compile_command="$compile_command $compile_deplibs"
      finalize_command="$finalize_command $finalize_deplibs"

3612
      if test -n "$rpath$xrpath"; then
#  
Jeff Law committed
3613
	# If the user specified any rpath flags, then add them.
3614 3615 3616 3617 3618 3619
	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
3620
	done
Jason Merrill committed
3621 3622
      fi

3623 3624 3625 3626 3627 3628 3629 3630 3631 3632
      # Now hardcode the library paths
      rpath=
      hardcode_libdirs=
      for libdir in $compile_rpath $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.
3633
	      case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650
	      *"$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
3651
	case $host in
3652
	*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
3653
	  case :$dllsearchpath: in
3654 3655 3656 3657 3658
	  *":$libdir:"*) ;;
	  *) dllsearchpath="$dllsearchpath:$libdir";;
	  esac
	  ;;
	esac
3659 3660 3661 3662 3663 3664
      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
3665
      fi
3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676
      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.
3677
	      case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700
	      *"$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
3701
      fi
3702
      finalize_rpath="$rpath"
#  
Jeff Law committed
3703

3704
      dlsyms=
Jason Merrill committed
3705
      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
3706 3707
	if test -n "$NM" && test -n "$global_symbol_pipe"; then
	  dlsyms="${outputname}S.c"
#  
Jeff Law committed
3708
	else
3709
	  $echo "$modename: not configured to extract global symbols from dlpreopened files" 1>&2
Jason Merrill committed
3710
	fi
3711
      fi
#  
Jeff Law committed
3712

3713
      if test -n "$dlsyms"; then
3714
	case $dlsyms in
3715 3716 3717
	"") ;;
	*.c)
	  # Discover the nlist of each of the dlfiles.
Jason Merrill committed
3718
	  nlist="$output_objdir/${outputname}.nm"
3719

Jason Merrill committed
3720 3721
	  $show "$rm $nlist ${nlist}S ${nlist}T"
	  $run $rm "$nlist" "${nlist}S" "${nlist}T"
#  
Jeff Law committed
3722

3723
	  # Parse the name list into a source file.
Jason Merrill committed
3724
	  $show "creating $output_objdir/$dlsyms"
3725

Jason Merrill committed
3726
	  test -z "$run" && $echo > "$output_objdir/$dlsyms" "\
3727 3728
/* $dlsyms - symbol resolution table for \`$outputname' dlsym emulation. */
/* Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP */
#  
Jeff Law committed
3729 3730 3731 3732 3733 3734

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

/* Prevent the only kind of declaration conflicts we can make. */
3735
#define lt_preloaded_symbols some_other_symbol
#  
Jeff Law committed
3736 3737 3738 3739

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

3740 3741 3742
	  if test "$dlself" = yes; then
	    $show "generating symbol list for \`$output'"

Jason Merrill committed
3743
	    test -z "$run" && $echo ': @PROGRAM@ ' > "$nlist"
3744 3745

	    # Add our own program objects to the symbol list.
3746
	    progfiles="$objs$old_deplibs"
3747 3748 3749 3750 3751 3752 3753 3754 3755
	    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
3756

3757 3758 3759 3760 3761 3762 3763
	    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
3764
	      export_symbols="$output_objdir/$output.exp"
3765 3766 3767
	      $run $rm $export_symbols
	      $run eval "sed -n -e '/^: @PROGRAM@$/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"'
	    else
Jason Merrill committed
3768 3769
	      $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'
3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798
	      $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.
	    if grep -v "^: " < "$nlist" | sort +2 | uniq > "$nlist"S; then
	      :
	    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
3799
	    else
3800
	      echo '/* NONE */' >> "$output_objdir/$dlsyms"
#  
Jeff Law committed
3801 3802
	    fi

3803
	    $echo >> "$output_objdir/$dlsyms" "\
#  
Jeff Law committed
3804

3805
#undef lt_preloaded_symbols
#  
Jeff Law committed
3806 3807

#if defined (__STDC__) && __STDC__
3808
# define lt_ptr_t void *
#  
Jeff Law committed
3809
#else
3810 3811
# define lt_ptr_t char *
# define const
#  
Jeff Law committed
3812 3813 3814
#endif

/* The mapping between symbol names and symbols. */
3815 3816 3817
const struct {
  const char *name;
  lt_ptr_t address;
#  
Jeff Law committed
3818
}
3819
lt_preloaded_symbols[] =
#  
Jeff Law committed
3820 3821 3822
{\
"

3823 3824 3825
	    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
3826

3827 3828
	    $echo >> "$output_objdir/$dlsyms" "\
  {0, (lt_ptr_t) 0}
#  
Jeff Law committed
3829 3830
};

3831 3832 3833 3834 3835 3836 3837
/* 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
3838 3839 3840 3841
#ifdef __cplusplus
}
#endif\
"
3842
	  fi
#  
Jeff Law committed
3843

3844
	  pic_flag_for_symtable=
3845
	  case $host in
3846 3847 3848 3849 3850
	  # 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.
3851
	  *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)
3852 3853
	    case "$compile_command " in
	    *" -static "*) ;;
3854
	    *) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND";;
Jason Merrill committed
3855 3856 3857 3858
	    esac;;
	  *-*-hpux*)
	    case "$compile_command " in
	    *" -static "*) ;;
3859
	    *) pic_flag_for_symtable=" $pic_flag";;
3860
	    esac
#  
Jeff Law committed
3861 3862
	  esac

3863
	  # Now compile the dynamic symbol file.
3864 3865
	  $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
3866 3867 3868 3869

	  # 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
3870

3871
	  # Transform the symbol file into the correct name.
Jason Merrill committed
3872 3873
	  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}%"`
3874 3875 3876 3877 3878 3879
	  ;;
	*)
	  $echo "$modename: unknown suffix for \`$dlsyms'" 1>&2
	  exit 1
	  ;;
	esac
#  
Jeff Law committed
3880
      else
3881 3882 3883
	# 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
3884

3885 3886 3887
	# 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
3888 3889
      fi

3890
      if test $need_relink = no || test "$build_libtool_libs" != yes; then
3891 3892 3893 3894 3895 3896 3897
	# 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
3898
	status=$?
3899

Jason Merrill committed
3900 3901 3902 3903 3904 3905 3906
	# 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
3907 3908 3909
      fi

      if test -n "$shlibpath_var"; then
3910 3911 3912
	# We should set the shlibpath_var
	rpath=
	for dir in $temp_rpath; do
3913
	  case $dir in
Jason Merrill committed
3914
	  [\\/]* | [A-Za-z]:[\\/]*)
3915 3916 3917 3918 3919 3920 3921 3922 3923 3924
	    # Absolute path.
	    rpath="$rpath$dir:"
	    ;;
	  *)
	    # Relative path: add a thisdir entry.
	    rpath="$rpath\$thisdir/$dir:"
	    ;;
	  esac
	done
	temp_rpath="$rpath"
Jason Merrill committed
3925 3926
      fi

3927 3928
      if test -n "$compile_shlibpath$finalize_shlibpath"; then
	compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command"
Jason Merrill committed
3929 3930
      fi
      if test -n "$finalize_shlibpath"; then
3931
	finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command"
Jason Merrill committed
3932 3933
      fi

3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952
      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
3953 3954
      fi

3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967
      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

3968
      if test "$hardcode_action" = relink; then
3969 3970 3971
	# Fast installation is not supported
	link_command="$compile_var$compile_command$compile_rpath"
	relink_command="$finalize_var$finalize_command$finalize_rpath"
3972

3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991
	$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'`
3992

Jason Merrill committed
3993
      # Delete the old output files.
3994 3995 3996 3997
      $run $rm $output $output_objdir/$outputname $output_objdir/lt-$outputname

      $show "$link_command"
      $run eval "$link_command" || exit $?
Jason Merrill committed
3998 3999

      # Now create the wrapper script.
#  
Jeff Law committed
4000 4001
      $show "creating $output"

4002 4003
      # Quote the relink command for shipping.
      if test -n "$relink_command"; then
4004
	# Preserve any variables that may affect compiler behavior
Jason Merrill committed
4005
	for var in $variables_saved_for_relink; do
4006 4007 4008 4009 4010 4011 4012 4013
	  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
4014
	done
4015
	relink_command="cd `pwd`; $relink_command"
4016 4017
	relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
      fi
#  
Jeff Law committed
4018 4019

      # Quote $echo for shipping.
4020
      if test "X$echo" = "X$SHELL $0 --fallback-echo"; then
4021
	case $0 in
Jason Merrill committed
4022
	[\\/]* | [A-Za-z]:[\\/]*) qecho="$SHELL $0 --fallback-echo";;
4023 4024 4025 4026 4027 4028
	*) 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
4029 4030 4031

      # Only actually do things if our run command is non-null.
      if test -z "$run"; then
4032 4033 4034 4035 4036
	# 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
4037 4038 4039 4040 4041
	# test for cygwin because mv fails w/o .exe extensions
	case $host in
	  *cygwin*) exeext=.exe ;;
	  *) exeext= ;;
	esac
4042 4043
	$rm $output
	trap "$rm $output; exit 1" 1 2 15
Jason Merrill committed
4044

4045
	$echo > $output "\
#  
Jeff Law committed
4046
#! $SHELL
Jason Merrill committed
4047

4048 4049
# $output - temporary wrapper script for $objdir/$outputname
# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
Jason Merrill committed
4050 4051 4052 4053
#
# The $output program cannot be directly executed until all the libtool
# libraries that it depends on are installed.
#
4054
# This wrapper script should never be moved out of the build directory.
Jason Merrill committed
4055 4056
# If it is, it will not operate correctly.

#  
Jeff Law committed
4057 4058
# Sed substitution that helps us do robust quoting.  It backslashifies
# metacharacters that are still active within double-quoted strings.
4059
Xsed='sed -e 1s/^X//'
#  
Jeff Law committed
4060 4061 4062 4063
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
4064
if test \"\${CDPATH+set}\" = set; then CDPATH=:; export CDPATH; fi
#  
Jeff Law committed
4065

4066 4067
relink_command=\"$relink_command\"

Jason Merrill committed
4068
# This environment variable determines our operation mode.
#  
Jeff Law committed
4069
if test \"\$libtool_install_magic\" = \"$magic\"; then
4070
  # install mode needs the following variable:
4071
  notinst_deplibs='$notinst_deplibs'
Jason Merrill committed
4072
else
#  
Jeff Law committed
4073
  # When we are sourced in execute mode, \$file and \$echo are already set.
4074
  if test \"\$libtool_execute_magic\" != \"$magic\"; then
#  
Jeff Law committed
4075 4076
    echo=\"$qecho\"
    file=\"\$0\"
4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087
    # 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
4088 4089
  fi\
"
4090
	$echo >> $output "\
Jason Merrill committed
4091

#  
Jeff Law committed
4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103
  # 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
4104
      [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;;
#  
Jeff Law committed
4105 4106 4107
      *) thisdir=\"\$thisdir/\$destdir\" ;;
      esac
    fi
Jason Merrill committed
4108

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

#  
Jeff Law committed
4113 4114 4115
  # Try to get the absolute directory name.
  absdir=\`cd \"\$thisdir\" && pwd\`
  test -n \"\$absdir\" && thisdir=\"\$absdir\"
4116
"
Jason Merrill committed
4117

4118 4119
	if test "$fast_install" = yes; then
	  echo >> $output "\
4120
  program=lt-'$outputname'$exeext
#  
Jeff Law committed
4121
  progdir=\"\$thisdir/$objdir\"
4122

4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138
  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
4139
      if relink_command_output=\`eval \$relink_command 2>&1\`; then :
4140
      else
4141
        $echo \"\$relink_command_output\" >&2
4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159
	$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
4160

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

4163 4164 4165
	# 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
4166
    # Add our own library path to $shlibpath_var
#  
Jeff Law committed
4167
    $shlibpath_var=\"$temp_rpath\$$shlibpath_var\"
Jason Merrill committed
4168 4169

    # Some systems cannot cope with colon-terminated $shlibpath_var
4170 4171
    # 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
4172 4173

    export $shlibpath_var
#  
Jeff Law committed
4174
"
4175 4176 4177 4178 4179 4180 4181 4182 4183
	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
4184

4185
	$echo >> $output "\
#  
Jeff Law committed
4186 4187
    if test \"\$libtool_execute_magic\" != \"$magic\"; then
      # Run the actual program with our arguments.
4188 4189
"
	case $host in
4190 4191
	# win32 systems need to use the prog path for dll
	# lookup to work
4192
	*-*-cygwin* | *-*-pw32*)
4193 4194 4195 4196 4197 4198 4199
	  $echo >> $output "\
      exec \$progdir/\$program \${1+\"\$@\"}
"
	  ;;

	# Backslashes separate directories on plain windows
	*-*-mingw | *-*-os2*)
4200 4201 4202 4203
	  $echo >> $output "\
      exec \$progdir\\\\\$program \${1+\"\$@\"}
"
	  ;;
4204

4205 4206
	*)
	  $echo >> $output "\
#  
Jeff Law committed
4207 4208 4209
      # Export the path to the program.
      PATH=\"\$progdir:\$PATH\"
      export PATH
Jason Merrill committed
4210

#  
Jeff Law committed
4211
      exec \$program \${1+\"\$@\"}
4212 4213 4214 4215
"
	  ;;
	esac
	$echo >> $output "\
#  
Jeff Law committed
4216 4217 4218
      \$echo \"\$0: cannot exec \$program \${1+\"\$@\"}\"
      exit 1
    fi
Jason Merrill committed
4219 4220
  else
    # The program doesn't exist.
#  
Jeff Law committed
4221 4222 4223
    \$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
4224 4225
    exit 1
  fi
#  
Jeff Law committed
4226 4227
fi\
"
4228
	chmod +x $output
Jason Merrill committed
4229 4230 4231 4232 4233 4234
      fi
      exit 0
      ;;
    esac

    # See if we need to build an old-fashioned archive.
4235 4236 4237
    for oldlib in $oldlibs; do

      if test "$build_libtool_libs" = convenience; then
4238
	oldobjs="$libobjs_save"
4239 4240 4241
	addlibs="$convenience"
	build_libtool_libs=no
      else
4242 4243 4244 4245
	if test "$build_libtool_libs" = module; then
	  oldobjs="$libobjs_save"
	  build_libtool_libs=no
	else
4246
	  oldobjs="$objs$old_deplibs $non_pic_objects"
4247
	fi
4248 4249 4250
	addlibs="$old_convenience"
      fi

Jason Merrill committed
4251 4252 4253 4254
      if test -n "$addlibs"; then
	gentop="$output_objdir/${outputname}x"
	$show "${rm}r $gentop"
	$run ${rm}r "$gentop"
4255 4256
	$show "$mkdir $gentop"
	$run $mkdir "$gentop"
4257
	status=$?
Jason Merrill committed
4258
	if test $status -ne 0 && test ! -d "$gentop"; then
4259 4260
	  exit $status
	fi
Jason Merrill committed
4261
	generated="$generated $gentop"
4262

Jason Merrill committed
4263 4264 4265
	# Add in members from convenience archives.
	for xlib in $addlibs; do
	  # Extract the objects.
4266
	  case $xlib in
Jason Merrill committed
4267 4268 4269 4270 4271
	  [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;;
	  *) xabs=`pwd`"/$xlib" ;;
	  esac
	  xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
	  xdir="$gentop/$xlib"
4272

Jason Merrill committed
4273 4274
	  $show "${rm}r $xdir"
	  $run ${rm}r "$xdir"
4275 4276
	  $show "$mkdir $xdir"
	  $run $mkdir "$xdir"
Jason Merrill committed
4277 4278 4279 4280 4281 4282 4283
	  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 $?

4284
	  oldobjs="$oldobjs "`find $xdir -name \*.${objext} -print | $NL2SP`
Jason Merrill committed
4285 4286
	done
      fi
Jason Merrill committed
4287

#  
Jeff Law committed
4288 4289 4290
      # 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
4291
      else
4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308
#	# 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
4309

4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366
	# 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

4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379
        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
4380

4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400
          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
4401
      fi
4402
      IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
Jason Merrill committed
4403
      for cmd in $cmds; do
4404 4405 4406
	IFS="$save_ifs"
	$show "$cmd"
	$run eval "$cmd" || exit $?
Jason Merrill committed
4407 4408
      done
      IFS="$save_ifs"
4409 4410 4411 4412 4413
    done

    if test -n "$generated"; then
      $show "${rm}r$generated"
      $run ${rm}r$generated
Jason Merrill committed
4414 4415 4416
    fi

    # Now create the libtool archive.
4417
    case $output in
Jason Merrill committed
4418 4419
    *.la)
      old_library=
4420
      test "$build_old_libs" = yes && old_library="$libname.$libext"
#  
Jeff Law committed
4421
      $show "creating $output"
Jason Merrill committed
4422

4423 4424
      # Preserve any variables that may affect compiler behavior
      for var in $variables_saved_for_relink; do
4425 4426 4427 4428 4429 4430 4431 4432
	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
4433 4434
      done
      # Quote the link command for shipping.
4435 4436 4437 4438
      tagopts=
      for tag in $taglist; do
        tagopts="$tagopts --tag $tag"
      done
4439
      relink_command="(cd `pwd`; $SHELL $0$tagopts --mode=relink $libtool_args)"
4440
      relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
4441

Jason Merrill committed
4442 4443
      # Only create the output if not a dry run.
      if test -z "$run"; then
Jason Merrill committed
4444 4445 4446 4447 4448 4449
	for installed in no yes; do
	  if test "$installed" = yes; then
	    if test -z "$install_libdir"; then
	      break
	    fi
	    output="$output_objdir/$outputname"i
4450 4451 4452
	    # Replace all uninstalled libtool libraries with the installed ones
	    newdependency_libs=
	    for deplib in $dependency_libs; do
4453
	      case $deplib in
4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488
	      *.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
4489 4490
	  fi
	  $rm $output
4491 4492 4493 4494 4495
	  # 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
4496 4497
	  $echo > $output "\
# $outputname - a libtool library file
4498
# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
Jason Merrill committed
4499 4500 4501
#
# Please DO NOT delete this file!
# It is necessary for linking the library.
Jason Merrill committed
4502 4503

# The name that we can dlopen(3).
4504
dlname='$tdlname'
Jason Merrill committed
4505 4506 4507 4508 4509 4510 4511

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

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

#  
Jeff Law committed
4512 4513 4514
# Libraries that this one depends upon.
dependency_libs='$dependency_libs'

Jason Merrill committed
4515 4516 4517 4518 4519
# Version information for $libname.
current=$current
age=$age
revision=$revision

4520
# Is this an already installed library?
Jason Merrill committed
4521
installed=$installed
4522

4523 4524 4525 4526
# Files to dlopen/dlpreopen
dlopen='$dlfiles'
dlpreopen='$dlprefiles'

Jason Merrill committed
4527
# Directory that this library needs to be installed in:
4528
libdir='$install_libdir'"
4529
	  if test "$installed" = no && test $need_relink = yes; then
4530 4531 4532
	    $echo >> $output "\
relink_command=\"$relink_command\""
	  fi
Jason Merrill committed
4533
	done
Jason Merrill committed
4534 4535 4536 4537
      fi

      # Do a symbolic link so that the libtool archive can be found in
      # LD_LIBRARY_PATH before the program is installed.
4538
      $show "(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)"
4539
      $run eval '(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)' || exit $?
Jason Merrill committed
4540 4541 4542 4543 4544 4545 4546
      ;;
    esac
    exit 0
    ;;

  # libtool install mode
  install)
#  
Jeff Law committed
4547
    modename="$modename: install"
Jason Merrill committed
4548

#  
Jeff Law committed
4549 4550
    # There may be an optional sh(1) argument at the beginning of
    # install_prog (especially on Windows NT).
4551 4552
    if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh ||
       # Allow the use of GNU shtool's install command.
4553
       $echo "X$nonopt" | $Xsed | grep shtool > /dev/null; then
#  
Jeff Law committed
4554 4555
      # Aesthetically quote it.
      arg=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"`
4556
      case $arg in
#  
Jeff Law committed
4557 4558 4559 4560 4561 4562
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*)
	arg="\"$arg\""
	;;
      esac
      install_prog="$arg "
      arg="$1"
Jason Merrill committed
4563
      shift
#  
Jeff Law committed
4564 4565 4566
    else
      install_prog=
      arg="$nonopt"
Jason Merrill committed
4567 4568
    fi

#  
Jeff Law committed
4569 4570 4571
    # The real first argument should be the name of the installation program.
    # Aesthetically quote it.
    arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
4572
    case $arg in
#  
Jeff Law committed
4573 4574 4575 4576 4577 4578
    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*)
      arg="\"$arg\""
      ;;
    esac
    install_prog="$install_prog$arg"

Jason Merrill committed
4579 4580 4581 4582 4583 4584
    # We need to accept at least all the BSD install flags.
    dest=
    files=
    opts=
    prev=
    install_type=
#  
Jeff Law committed
4585
    isdir=no
Jason Merrill committed
4586 4587 4588 4589
    stripme=
    for arg
    do
      if test -n "$dest"; then
4590 4591 4592
	files="$files $dest"
	dest="$arg"
	continue
Jason Merrill committed
4593 4594
      fi

4595
      case $arg in
Jason Merrill committed
4596 4597 4598 4599 4600 4601
      -d) isdir=yes ;;
      -f) prev="-f" ;;
      -g) prev="-g" ;;
      -m) prev="-m" ;;
      -o) prev="-o" ;;
      -s)
4602 4603 4604
	stripme=" -s"
	continue
	;;
Jason Merrill committed
4605 4606 4607
      -*) ;;

      *)
4608 4609 4610 4611 4612 4613 4614 4615
	# If the previous option needed an argument, then skip it.
	if test -n "$prev"; then
	  prev=
	else
	  dest="$arg"
	  continue
	fi
	;;
Jason Merrill committed
4616
      esac
#  
Jeff Law committed
4617 4618 4619

      # Aesthetically quote the argument.
      arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
4620
      case $arg in
#  
Jeff Law committed
4621 4622 4623 4624
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*)
	arg="\"$arg\""
	;;
      esac
Jason Merrill committed
4625 4626 4627 4628
      install_prog="$install_prog $arg"
    done

    if test -z "$install_prog"; then
#  
Jeff Law committed
4629 4630
      $echo "$modename: you must specify an install program" 1>&2
      $echo "$help" 1>&2
Jason Merrill committed
4631 4632 4633 4634
      exit 1
    fi

    if test -n "$prev"; then
#  
Jeff Law committed
4635 4636
      $echo "$modename: the \`$prev' option requires an argument" 1>&2
      $echo "$help" 1>&2
Jason Merrill committed
4637 4638 4639 4640 4641
      exit 1
    fi

    if test -z "$files"; then
      if test -z "$dest"; then
4642
	$echo "$modename: no file or destination specified" 1>&2
Jason Merrill committed
4643
      else
4644
	$echo "$modename: you must specify a destination" 1>&2
Jason Merrill committed
4645
      fi
#  
Jeff Law committed
4646
      $echo "$help" 1>&2
Jason Merrill committed
4647 4648 4649 4650
      exit 1
    fi

    # Strip any trailing slash from the destination.
#  
Jeff Law committed
4651
    dest=`$echo "X$dest" | $Xsed -e 's%/$%%'`
Jason Merrill committed
4652 4653 4654

    # Check to see that the destination is a directory.
    test -d "$dest" && isdir=yes
#  
Jeff Law committed
4655
    if test "$isdir" = yes; then
Jason Merrill committed
4656 4657 4658
      destdir="$dest"
      destname=
    else
#  
Jeff Law committed
4659 4660 4661
      destdir=`$echo "X$dest" | $Xsed -e 's%/[^/]*$%%'`
      test "X$destdir" = "X$dest" && destdir=.
      destname=`$echo "X$dest" | $Xsed -e 's%^.*/%%'`
Jason Merrill committed
4662 4663 4664 4665

      # Not a directory, so check to see that there is only one file specified.
      set dummy $files
      if test $# -gt 2; then
4666 4667 4668
	$echo "$modename: \`$dest' is not a directory" 1>&2
	$echo "$help" 1>&2
	exit 1
Jason Merrill committed
4669 4670
      fi
    fi
4671
    case $destdir in
Jason Merrill committed
4672
    [\\/]* | [A-Za-z]:[\\/]*) ;;
Jason Merrill committed
4673 4674
    *)
      for file in $files; do
4675
	case $file in
4676 4677 4678 4679 4680 4681 4682
	*.lo) ;;
	*)
	  $echo "$modename: \`$destdir' must be an absolute directory name" 1>&2
	  $echo "$help" 1>&2
	  exit 1
	  ;;
	esac
Jason Merrill committed
4683 4684 4685 4686
      done
      ;;
    esac

#  
Jeff Law committed
4687 4688 4689 4690
    # This variable tells wrapper scripts just to set variables rather
    # than running their programs.
    libtool_install_magic="$magic"

Jason Merrill committed
4691 4692 4693 4694 4695 4696
    staticlibs=
    future_libdirs=
    current_libdirs=
    for file in $files; do

      # Do each installation.
4697
      case $file in
4698
      *.$libext)
4699 4700 4701
	# Do the static libraries later.
	staticlibs="$staticlibs $file"
	;;
Jason Merrill committed
4702 4703

      *.la)
4704 4705 4706 4707 4708 4709 4710 4711 4712 4713
	# 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=
4714
	relink_command=
4715
	# If there is no directory component, then add one.
4716
	case $file in
4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734
	*/* | *\\*) . $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

4735
	dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`/
4736 4737 4738
	test "X$dir" = "X$file/" && dir=
	dir="$dir$objdir"

4739
	if test -n "$relink_command"; then
4740 4741 4742 4743 4744
	  $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
4745
	    exit 1
4746 4747 4748
	  fi
	fi

4749 4750 4751 4752 4753 4754 4755
	# See the names of the shared library.
	set dummy $library_names
	if test -n "$2"; then
	  realname="$2"
	  shift
	  shift

4756
	  srcname="$realname"
4757
	  test -n "$relink_command" && srcname="$realname"T
4758

4759
	  # Install the shared library and build the symlinks.
4760 4761 4762 4763 4764 4765
	  $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
4766 4767 4768 4769 4770 4771 4772 4773

	  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)"
4774
	      fi
4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798
	    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
4799 4800

      *.lo)
4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811
	# 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.
4812
	case $destfile in
4813 4814 4815
	*.lo)
	  staticdest=`$echo "X$destfile" | $Xsed -e "$lo2o"`
	  ;;
4816
	*.$objext)
4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842
	  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
4843 4844

      *)
4845 4846 4847 4848 4849 4850 4851 4852 4853 4854
	# 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
4855
	  notinst_deplibs=
4856 4857 4858
	  relink_command=

	  # If there is no directory component, then add one.
4859
	  case $file in
4860 4861 4862 4863 4864
	  */* | *\\*) . $file ;;
	  *) . ./$file ;;
	  esac

	  # Check the variables that should have been set.
4865
	  if test -z "$notinst_deplibs"; then
4866 4867 4868 4869 4870
	    $echo "$modename: invalid libtool wrapper script \`$file'" 1>&2
	    exit 1
	  fi

	  finalize=yes
4871
	  for lib in $notinst_deplibs; do
4872 4873 4874 4875
	    # Check to see that each library is installed.
	    libdir=
	    if test -f "$lib"; then
	      # If there is no directory component, then add one.
4876
	      case $lib in
4877 4878 4879 4880
	      */* | *\\*) . $lib ;;
	      *) . ./$lib ;;
	      esac
	    fi
4881
	    libfile="$libdir/"`$echo "X$lib" | $Xsed -e 's%^.*/%%g'` ### testsuite: skip nested quoting test
4882 4883 4884 4885 4886 4887
	    if test -n "$libdir" && test ! -f "$libfile"; then
	      $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2
	      finalize=no
	    fi
	  done

4888 4889
	  relink_command=
	  # If there is no directory component, then add one.
4890
	  case $file in
4891 4892 4893 4894
	  */* | *\\*) . $file ;;
	  *) . ./$file ;;
	  esac

4895 4896
	  outputname=
	  if test "$fast_install" = no && test -n "$relink_command"; then
Jason Merrill committed
4897 4898 4899 4900 4901 4902 4903 4904 4905
	    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
4906
	      file=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
Jason Merrill committed
4907
	      outputname="$tmpdir/$file"
4908 4909 4910 4911 4912 4913 4914
	      # 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
4915
		${rm}r "$tmpdir"
4916 4917 4918 4919
		continue
	      fi
	      file="$outputname"
	    else
Jason Merrill committed
4920
	      $echo "$modename: warning: cannot relink \`$file'" 1>&2
4921 4922 4923
	    fi
	  else
	    # Install the binary that we compiled earlier.
#  
Jeff Law committed
4924
	    file=`$echo "X$file" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"`
4925 4926
	  fi
	fi
Jason Merrill committed
4927

4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946

	# 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

4947 4948
	$show "$install_prog$stripme $file $destfile"
	$run eval "$install_prog\$stripme \$file \$destfile" || exit $?
Jason Merrill committed
4949
	test -n "$outputname" && ${rm}r "$tmpdir"
4950
	;;
Jason Merrill committed
4951 4952 4953 4954
      esac
    done

    for file in $staticlibs; do
#  
Jeff Law committed
4955
      name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
Jason Merrill committed
4956 4957 4958 4959 4960

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

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

4963 4964 4965 4966 4967
      if test -n "$stripme" && test -n "$striplib"; then
	$show "$old_striplib $oldlib"
	$run eval "$old_striplib $oldlib" || exit $?
      fi

Jason Merrill committed
4968
      # Do each command in the postinstall commands.
#  
Jeff Law committed
4969
      eval cmds=\"$old_postinstall_cmds\"
4970
      IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
Jason Merrill committed
4971
      for cmd in $cmds; do
4972 4973 4974
	IFS="$save_ifs"
	$show "$cmd"
	$run eval "$cmd" || exit $?
Jason Merrill committed
4975 4976 4977 4978 4979
      done
      IFS="$save_ifs"
    done

    if test -n "$future_libdirs"; then
#  
Jeff Law committed
4980
      $echo "$modename: warning: remember to run \`$progname --finish$future_libdirs'" 1>&2
Jason Merrill committed
4981 4982 4983 4984 4985
    fi

    if test -n "$current_libdirs"; then
      # Maybe just do a dry run.
      test -n "$run" && current_libdirs=" -n$current_libdirs"
4986 4987 4988
      exec_cmd='$SHELL $0 --finish$current_libdirs'
    else
      exit 0
Jason Merrill committed
4989 4990 4991
    fi
    ;;

#  
Jeff Law committed
4992 4993 4994 4995 4996 4997 4998 4999 5000
  # libtool finish mode
  finish)
    modename="$modename: finish"
    libdirs="$nonopt"
    admincmds=

    if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
      for dir
      do
5001
	libdirs="$libdirs $dir"
#  
Jeff Law committed
5002 5003 5004 5005 5006 5007
      done

      for libdir in $libdirs; do
	if test -n "$finish_cmds"; then
	  # Do each command in the finish commands.
	  eval cmds=\"$finish_cmds\"
5008 5009 5010 5011 5012
	  IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
	  for cmd in $cmds; do
	    IFS="$save_ifs"
	    $show "$cmd"
	    $run eval "$cmd" || admincmds="$admincmds
#  
Jeff Law committed
5013
       $cmd"
5014 5015
	  done
	  IFS="$save_ifs"
#  
Jeff Law committed
5016 5017 5018 5019 5020 5021 5022 5023 5024 5025
	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

5026
    # Exit here if they wanted silent mode.
5027
    test "$show" = ":" && exit 0
5028

#  
Jeff Law committed
5029 5030 5031 5032
    echo "----------------------------------------------------------------------"
    echo "Libraries have been installed in:"
    for libdir in $libdirs; do
      echo "   $libdir"
Jason Merrill committed
5033
    done
#  
Jeff Law committed
5034
    echo
5035 5036
    echo "If you ever happen to want to link against installed libraries"
    echo "in a given directory, LIBDIR, you must either use libtool, and"
5037
    echo "specify the full pathname of the library, or use the \`-LLIBDIR'"
5038
    echo "flag during linking and do at least one of the following:"
#  
Jeff Law committed
5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049
    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
5050

#  
Jeff Law committed
5051
      echo "   - use the \`$flag' linker flag"
Jason Merrill committed
5052
    fi
#  
Jeff Law committed
5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064
    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
5065

#  
Jeff Law committed
5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076
  # 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
5077

#  
Jeff Law committed
5078 5079
    # Handle -dlopen flags immediately.
    for file in $execute_dlfiles; do
5080
      if test ! -f "$file"; then
#  
Jeff Law committed
5081 5082 5083
	$echo "$modename: \`$file' is not a file" 1>&2
	$echo "$help" 1>&2
	exit 1
Jason Merrill committed
5084 5085
      fi

#  
Jeff Law committed
5086
      dir=
5087
      case $file in
#  
Jeff Law committed
5088
      *.la)
5089 5090 5091 5092 5093 5094 5095
	# 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
5096 5097 5098 5099 5100

	# Read the libtool library.
	dlname=
	library_names=

5101
	# If there is no directory component, then add one.
5102
	case $file in
#  
Jeff Law committed
5103
	*/* | *\\*) . $file ;;
5104
	*) . ./$file ;;
#  
Jeff Law committed
5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132
	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
5133
	continue
#  
Jeff Law committed
5134
	;;
Jason Merrill committed
5135 5136
      esac

#  
Jeff Law committed
5137 5138 5139 5140 5141 5142 5143
      # 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
5144
      else
#  
Jeff Law committed
5145
	eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\""
Jason Merrill committed
5146 5147 5148
      fi
    done

#  
Jeff Law committed
5149 5150 5151
    # This variable tells wrapper scripts just to set shlibpath_var
    # rather than running their programs.
    libtool_execute_magic="$magic"
Jason Merrill committed
5152

#  
Jeff Law committed
5153 5154 5155 5156
    # Check if any of the arguments is a wrapper script.
    args=
    for file
    do
5157
      case $file in
#  
Jeff Law committed
5158 5159
      -*) ;;
      *)
5160 5161
	# 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
5162
	  # If there is no directory component, then add one.
5163
	  case $file in
#  
Jeff Law committed
5164 5165 5166
	  */* | *\\*) . $file ;;
	  *) . ./$file ;;
	  esac
Jason Merrill committed
5167

#  
Jeff Law committed
5168 5169 5170
	  # Transform arg to wrapped name.
	  file="$progdir/$program"
	fi
5171
	;;
#  
Jeff Law committed
5172 5173 5174 5175 5176
      esac
      # Quote arguments (to preserve shell metacharacters).
      file=`$echo "X$file" | $Xsed -e "$sed_quote_subst"`
      args="$args \"$file\""
    done
Jason Merrill committed
5177

#  
Jeff Law committed
5178
    if test -z "$run"; then
Jason Merrill committed
5179
      if test -n "$shlibpath_var"; then
5180 5181
	# Export the shlibpath_var.
	eval "export $shlibpath_var"
Jason Merrill committed
5182
      fi
#  
Jeff Law committed
5183

5184 5185
      # Restore saved enviroment variables
      if test "${save_LC_ALL+set}" = set; then
5186
	LC_ALL="$save_LC_ALL"; export LC_ALL
5187 5188
      fi
      if test "${save_LANG+set}" = set; then
5189
	LANG="$save_LANG"; export LANG
5190 5191
      fi

5192 5193
      # Now prepare to actually exec the command.
      exec_cmd='"$cmd"$args'
#  
Jeff Law committed
5194 5195
    else
      # Display what would be done.
Jason Merrill committed
5196
      if test -n "$shlibpath_var"; then
5197 5198
	eval "\$echo \"\$shlibpath_var=\$$shlibpath_var\""
	$echo "export $shlibpath_var"
Jason Merrill committed
5199
      fi
#  
Jeff Law committed
5200 5201
      $echo "$cmd$args"
      exit 0
Jason Merrill committed
5202 5203 5204
    fi
    ;;

5205 5206 5207
  # libtool clean and uninstall mode
  clean | uninstall)
    modename="$modename: $mode"
Jason Merrill committed
5208 5209
    rm="$nonopt"
    files=
5210 5211
    rmforce=
    exit_status=0
Jason Merrill committed
5212

5213 5214 5215 5216
    # This variable tells wrapper scripts just to set variables rather
    # than running their programs.
    libtool_install_magic="$magic"

Jason Merrill committed
5217 5218
    for arg
    do
5219
      case $arg in
5220
      -f) rm="$rm $arg"; rmforce=yes ;;
Jason Merrill committed
5221 5222 5223 5224 5225 5226
      -*) rm="$rm $arg" ;;
      *) files="$files $arg" ;;
      esac
    done

    if test -z "$rm"; then
#  
Jeff Law committed
5227 5228
      $echo "$modename: you must specify an RM program" 1>&2
      $echo "$help" 1>&2
Jason Merrill committed
5229 5230 5231
      exit 1
    fi

5232 5233
    rmdirs=

Jason Merrill committed
5234
    for file in $files; do
#  
Jeff Law committed
5235
      dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
5236 5237 5238 5239 5240 5241
      if test "X$dir" = "X$file"; then
	dir=.
	objdir="$objdir"
      else
	objdir="$dir/$objdir"
      fi
#  
Jeff Law committed
5242
      name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
5243
      test $mode = uninstall && objdir="$dir"
Jason Merrill committed
5244

5245 5246
      # Remember objdir for removal later, being careful to avoid duplicates
      if test $mode = clean; then
5247
	case " $rmdirs " in
5248 5249 5250 5251
	  *" $objdir "*) ;;
	  *) rmdirs="$rmdirs $objdir" ;;
	esac
      fi
5252

5253
      # Don't error if the file doesn't exist and rm -f was used.
5254 5255 5256
      if (test -L "$file") >/dev/null 2>&1 \
        || (test -h "$file") >/dev/null 2>&1 \
	|| test -f "$file"; then
5257 5258 5259 5260 5261 5262 5263
        :
      elif test -d "$file"; then
        exit_status=1
	continue
      elif test "$rmforce" = yes; then
        continue
      fi
5264

Jason Merrill committed
5265 5266
      rmfiles="$file"

5267
      case $name in
Jason Merrill committed
5268
      *.la)
5269 5270 5271 5272 5273 5274
	# 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
5275
	    rmfiles="$rmfiles $objdir/$n"
5276
	  done
5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288
	  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"
5289 5290 5291
		if test $? != 0 && test "$rmforce" != yes; then
		  exit_status=1
		fi
5292
	      done
#  
Jeff Law committed
5293
	      IFS="$save_ifs"
5294
	    fi
Jason Merrill committed
5295

5296 5297 5298 5299 5300 5301 5302 5303
	    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"
5304 5305 5306
		if test $? != 0 && test "$rmforce" != yes; then
		  exit_status=1
		fi
5307
	      done
#  
Jeff Law committed
5308
	      IFS="$save_ifs"
5309 5310
	    fi
	    # FIXME: should reinstall the best remaining shared library.
#  
Jeff Law committed
5311
	  fi
5312 5313
	fi
	;;
Jason Merrill committed
5314 5315

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

          # Read the .lo file
5320
          . $dir/$name
5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332

	  # 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
5333 5334
	fi
	;;
Jason Merrill committed
5335

#  
Jeff Law committed
5336
      *)
5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347
	# 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
5348 5349
	;;
      esac
5350
      $show "$rm $rmfiles"
5351
      $run $rm $rmfiles || exit_status=1
Jason Merrill committed
5352
    done
5353 5354 5355 5356

    # Try to remove the ${objdir}s in the directories where we deleted files
    for dir in $rmdirs; do
      if test -d "$dir"; then
5357 5358
	$show "rmdir $dir"
	$run rmdir $dir >/dev/null 2>&1
5359 5360 5361
      fi
    done

5362
    exit $exit_status
Jason Merrill committed
5363 5364
    ;;

#  
Jeff Law committed
5365 5366 5367
  "")
    $echo "$modename: you must specify a MODE" 1>&2
    $echo "$generic_help" 1>&2
Jason Merrill committed
5368 5369 5370 5371
    exit 1
    ;;
  esac

5372 5373 5374 5375 5376
  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
5377 5378
fi # test -z "$show_help"

5379 5380 5381 5382 5383
if test -n "$exec_cmd"; then
  eval exec $exec_cmd
  exit 1
fi

Jason Merrill committed
5384
# We need to display help for each of the modes.
5385
case $mode in
#  
Jeff Law committed
5386 5387
"") $echo \
"Usage: $modename [OPTION]... [MODE-ARG]...
Jason Merrill committed
5388 5389 5390

Provide generalized library-building support services.

#  
Jeff Law committed
5391 5392
    --config          show all configuration variables
    --debug           enable verbose shell tracing
Jason Merrill committed
5393
-n, --dry-run         display commands without modifying any files
#  
Jeff Law committed
5394
    --features        display basic configuration information and exit
Jason Merrill committed
5395 5396 5397
    --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
5398 5399
    --quiet           same as \`--silent'
    --silent          don't print informational messages
5400
    --tag=TAG         use configuration variables from tag TAG
Jason Merrill committed
5401 5402 5403 5404
    --version         print version information

MODE must be one of the following:

5405
      clean           remove files from the build directory
Jason Merrill committed
5406
      compile         compile a source file into a libtool object
#  
Jeff Law committed
5407
      execute         automatically set library path, then run a program
Jason Merrill committed
5408 5409 5410 5411 5412
      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
5413 5414 5415
MODE-ARGS vary depending on the MODE.  Try \`$modename --help --mode=MODE' for
a more detailed description of MODE."
  exit 0
Jason Merrill committed
5416 5417
  ;;

5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431
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
5432
compile)
#  
Jeff Law committed
5433 5434
  $echo \
"Usage: $modename [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE
Jason Merrill committed
5435 5436 5437

Compile a source file into a libtool library object.

5438 5439
This mode accepts the following additional options:

5440
  -o OUTPUT-FILE    set the output file name to OUTPUT-FILE
5441 5442
  -prefer-pic       try to building PIC objects only
  -prefer-non-pic   try to building non-PIC objects only
5443 5444
  -static           always build a \`.o' file suitable for static linking

Jason Merrill committed
5445 5446 5447 5448 5449
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
5450
library object suffix, \`.lo'."
Jason Merrill committed
5451 5452
  ;;

#  
Jeff Law committed
5453 5454 5455 5456 5457 5458 5459
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
5460

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

#  
Jeff Law committed
5463 5464
This mode sets the library path environment variable according to \`-dlopen'
flags.
Jason Merrill committed
5465

#  
Jeff Law committed
5466 5467 5468 5469 5470
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
5471 5472 5473
  ;;

finish)
#  
Jeff Law committed
5474 5475
  $echo \
"Usage: $modename [OPTION]... --mode=finish [LIBDIR]...
Jason Merrill committed
5476 5477 5478 5479 5480 5481

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
5482
the \`--dry-run' option if you just want to see what would be executed."
Jason Merrill committed
5483 5484 5485
  ;;

install)
#  
Jeff Law committed
5486 5487
  $echo \
"Usage: $modename [OPTION]... --mode=install INSTALL-COMMAND...
Jason Merrill committed
5488 5489 5490 5491 5492 5493 5494

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
5495
BSD-compatible install options are recognized)."
Jason Merrill committed
5496 5497 5498
  ;;

link)
#  
Jeff Law committed
5499 5500
  $echo \
"Usage: $modename [OPTION]... --mode=link LINK-COMMAND...
Jason Merrill committed
5501 5502 5503 5504 5505 5506 5507 5508 5509

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
5510
  -all-static       do not do any dynamic linking at all
5511
  -avoid-version    do not add a version suffix if possible
#  
Jeff Law committed
5512
  -dlopen FILE      \`-dlpreopen' FILE if it cannot be dlopened at runtime
5513
  -dlpreopen FILE   link in FILE and add its symbols to lt_preloaded_symbols
Jason Merrill committed
5514
  -export-dynamic   allow symbols from OUTPUT-FILE to be resolved with dlsym(3)
5515 5516
  -export-symbols SYMFILE
		    try to export only the symbols listed in SYMFILE
Jason Merrill committed
5517 5518
  -export-symbols-regex REGEX
		    try to export only the symbols matching REGEX
Jason Merrill committed
5519 5520
  -LLIBDIR          search LIBDIR for required installed libraries
  -lNAME            OUTPUT-FILE requires the installed library libNAME
5521
  -module           build a library that can dlopened
5522 5523
  -no-fast-install  disable the fast-install mode
  -no-install       link a not-installable executable
#  
Jeff Law committed
5524
  -no-undefined     declare that a library does not refer to external symbols
Jason Merrill committed
5525
  -o OUTPUT-FILE    create OUTPUT-FILE from the specified objects
5526
  -objectlist FILE  Use a list of object files found in FILE to specify objects
#  
Jeff Law committed
5527
  -release RELEASE  specify package release information
Jason Merrill committed
5528
  -rpath LIBDIR     the created library will eventually be installed in LIBDIR
5529
  -R[ ]LIBDIR       add LIBDIR to the runtime path of programs and libraries
#  
Jeff Law committed
5530
  -static           do not do any dynamic linking of libtool libraries
Jason Merrill committed
5531
  -version-info CURRENT[:REVISION[:AGE]]
5532
		    specify library version info [each variable defaults to 0]
Jason Merrill committed
5533 5534 5535 5536 5537 5538 5539

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.

5540 5541 5542
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
5543

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

5547 5548
If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file
is created, otherwise an executable program is created."
Jason Merrill committed
5549 5550 5551
  ;;

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

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
5562
Otherwise, only FILE itself is deleted using RM."
Jason Merrill committed
5563 5564 5565
  ;;

*)
#  
Jeff Law committed
5566 5567
  $echo "$modename: invalid operation mode \`$mode'" 1>&2
  $echo "$help" 1>&2
Jason Merrill committed
5568 5569 5570 5571
  exit 1
  ;;
esac

#  
Jeff Law committed
5572 5573
echo
$echo "Try \`$modename --help' for more information about other modes."
Jason Merrill committed
5574 5575 5576

exit 0

5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587
# 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.

5588 5589
### BEGIN LIBTOOL TAG CONFIG: disable-shared
build_libtool_libs=no
5590
build_old_libs=yes
5591 5592 5593
### END LIBTOOL TAG CONFIG: disable-shared

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

Jason Merrill committed
5597 5598 5599 5600
# Local Variables:
# mode:shell-script
# sh-indentation:2
# End: