libtool
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Fix: Interlibrary dependencies SCO Uw7


From: Matthew Schalit
Subject: Re: Fix: Interlibrary dependencies SCO Uw7
Date: Sat, 21 Apr 2001 13:36:40 -0700

"Gary V. Vaughan" wrote:
> 


> Well, I don't know which combinations of triplets we need to accept and
> reject for pass_all deplibs, so this could probably use some tweaking... but
> the attached patch is the sort of thing you are looking for I think.  Let me
> know asap so we can get this in before 1.4 tomorrow.
> 
> Cheers,
>         Gary.


Hi Gary, I gave your patch a try and it didn't work correctly in the
end, which was odd.  Here's what happened:

  gpatch < 2001-04-21-gvv-uw-deplibs-passall.patch
  patching file libtool.m4

Then I checked libtool.m4, and it was patched, and the
patch looked identical to what was in the .patch file.


Then I ran ./bootstrap.

Then I looked at configure, and the patch was corrupted.
The square brackets were missing:

case $host in
*-sco-sysv5uw78* | *-sco-sysv4*uw2*)
  lt_cv_deplibs_check_method=pass_all
  ;;
esac


I think that's a feature, though.

So you could fix yours.

Or I could suggest this patch, which bypasses the
square bracket problem.  This patch also would go in 
a different place than the one you suggested, up a few lines.


------------------------------------------------------------
--- libtool.m4.orig     Sat Apr 21 13:26:45 2001
+++ libtool.m4          Sat Apr 21 13:27:59 2001
@@ -3234,6 +3234,10 @@
   lt_cv_file_magic_test_file=/lib/libc.so
   ;;

+sysv5uw7* | sysv5uw8* | sysv4*uw2*)
+  lt_cv_deplibs_check_method=pass_all
+  ;;
+
 sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
   case $host_vendor in
   motorola)
-------------------------------------------------------------


Thanks again,
Matthew



reply via email to

[Prev in Thread] Current Thread [Next in Thread]