This is the ancient bug report about the Tru64 shell.

* Nicolas Joly wrote on Tue, Jun 07, 2005 at 12:10:47PM CEST:
> 
> In the mean time, i tested the solution where `print -r' and `ksh'
> tests are swapped (attached patch). It seems to go a little further
> (no more `print' error messages), but seems to fail in another ksh
> problem/bug :

> libtool: compile:  cc "-DHAVE_CONFIG_H=<config.h>" -DLTDL -I. -I. -I.. -I. 
> -I. -I./libltdl -g -c -MD loaders/dlopen.c -o dlopen.o >/dev/null 2>&1
> /bin/ksh ../libtool --tag=CC   --mode=link cc  -g -module -avoid-version  -o 
> dlopen.la  dlopen.lo  
> ../libtool[24]: invalid multibyte character
> ../libtool[6]: invalid multibyte character
> ../libtool[2312]: invalid multibyte character

The Tru64 shell does not like us to close stdin.  It will corrupt its
memory which will become apparent when FD operations are done the next
time.

I've applied the patch below to HEAD to finally fix this issue.
Gary helped me analyze it -- many thanks to everyone that provided
input to this!

Cheers,
Ralf

2005-08-28  Ralf Wildenhues  <[EMAIL PROTECTED]>,
            Gary V. Vaughan  <[EMAIL PROTECTED]>

        * libltdl/config/ltmain.m4sh (func_lalib_unsafe_p) [osf]:
        Save file descriptor to original STDIN, and restore after
        redirection.  Fixes memory corruption with Tru64 and OSF sh.
        Reported by Nicolas Joly <[EMAIL PROTECTED]>.

Index: libltdl/config/ltmain.m4sh
===================================================================
RCS file: /cvsroot/libtool/libtool/libltdl/config/ltmain.m4sh,v
retrieving revision 1.4
diff -u -r1.4 ltmain.m4sh
--- libltdl/config/ltmain.m4sh  24 Aug 2005 15:57:32 -0000      1.4
+++ libltdl/config/ltmain.m4sh  28 Aug 2005 15:28:37 -0000
@@ -603,7 +603,7 @@
 func_lalib_unsafe_p ()
 {
     lalib_p=no
-    if test -r "$1" && exec <"$1"; then
+    if test -r "$1" && exec 5<&1 <"$1"; then
        for lalib_p_l in 1 2 3 4
        do
            read lalib_p_line
@@ -611,7 +611,7 @@
                \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;;
            esac
        done
-       exec <&-
+       exec 1<&5 5<&-
     fi
     test "$lalib_p" = yes
 }


_______________________________________________
http://lists.gnu.org/mailman/listinfo/libtool

Reply via email to