diff options
author | Sascha Schumann <sas@php.net> | 2000-06-11 10:26:24 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-06-11 10:26:24 +0000 |
commit | a2ad91df339e9267951bfda6d1b073d777780186 (patch) | |
tree | d970bbf2bf8815017394293ffe8d1940d70cc4f5 /ltmain.sh | |
parent | 164cbab7c6886504ce0c219c98c78aed31482fb5 (diff) | |
download | php-git-a2ad91df339e9267951bfda6d1b073d777780186.tar.gz |
Upgrade to Libtool 1.3.5.
Diffstat (limited to 'ltmain.sh')
-rw-r--r-- | ltmain.sh | 18 |
1 files changed, 15 insertions, 3 deletions
@@ -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. |