summaryrefslogtreecommitdiff
path: root/ltmain.sh
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2000-06-11 10:26:24 +0000
committerSascha Schumann <sas@php.net>2000-06-11 10:26:24 +0000
commita2ad91df339e9267951bfda6d1b073d777780186 (patch)
treed970bbf2bf8815017394293ffe8d1940d70cc4f5 /ltmain.sh
parent164cbab7c6886504ce0c219c98c78aed31482fb5 (diff)
downloadphp-git-a2ad91df339e9267951bfda6d1b073d777780186.tar.gz
Upgrade to Libtool 1.3.5.
Diffstat (limited to 'ltmain.sh')
-rw-r--r--ltmain.sh18
1 files changed, 15 insertions, 3 deletions
diff --git a/ltmain.sh b/ltmain.sh
index b6b9ce3f46..0c2595110b 100644
--- a/ltmain.sh
+++ b/ltmain.sh
@@ -54,8 +54,8 @@ modename="$progname"
# Constants.
PROGRAM=ltmain.sh
PACKAGE=libtool
-VERSION=1.3.4
-TIMESTAMP=" (1.385.2.196 1999/12/07 21:47:57)"
+VERSION=1.3.5
+TIMESTAMP=" (1.385.2.206 2000/05/27 11:12:27)"
default_mode=
help="Try \`$progname --help' for more information."
@@ -1795,6 +1795,10 @@ compiler."
*-*-cygwin* | *-*-mingw* | *-*-os2* | *-*-beos*)
# these systems don't actually have a c library (as such)!
;;
+ *-*-rhapsody*)
+ # rhapsody is a little odd...
+ deplibs="$deplibs -framework System"
+ ;;
*)
# Add libc to deplibs on all other systems.
deplibs="$deplibs -lc"
@@ -2922,13 +2926,21 @@ else
# Run the actual program with our arguments.
"
case $host in
- *-*-cygwin* | *-*-mingw | *-*-os2*)
# win32 systems need to use the prog path for dll
# lookup to work
+ *-*-cygwin*)
+ $echo >> $output "\
+ exec \$progdir/\$program \${1+\"\$@\"}
+"
+ ;;
+
+ # Backslashes separate directories on plain windows
+ *-*-mingw | *-*-os2*)
$echo >> $output "\
exec \$progdir\\\\\$program \${1+\"\$@\"}
"
;;
+
*)
$echo >> $output "\
# Export the path to the program.