summaryrefslogtreecommitdiffstats
path: root/ltmain.sh
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2001-01-06 00:58:24 +0000
committerBruno Haible <bruno@clisp.org>2001-01-06 00:58:24 +0000
commitaf2efe4cab2f18e20d2f72c2bdf032741a7281fd (patch)
treee858b24ed9fe1f79bd9daa7def49c0ca96581feb /ltmain.sh
parent8f55ec9aa044245678355354fb34aac7b656791c (diff)
downloadexternal_gettext-af2efe4cab2f18e20d2f72c2bdf032741a7281fd.zip
external_gettext-af2efe4cab2f18e20d2f72c2bdf032741a7281fd.tar.gz
external_gettext-af2efe4cab2f18e20d2f72c2bdf032741a7281fd.tar.bz2
Update the autoconf/libtool infrastructure.
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 50515ad..766732d 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"
@@ -2927,13 +2931,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.