Re: Fix linking against uninstalled libs again (1/n)

2006-01-21 Thread Jacob Meuser
On Sat, Jan 21, 2006 at 09:37:27AM +0100, Ralf Wildenhues wrote: > I messed up pretty badly while trying to fix the "linking against > uninstalled deplibs" right before 1.5.22 -- guess that's what I get > for not testing extensively. Please accept my apologies. > > The changes applied to branch-1

Re: add myself as contributor

2006-01-21 Thread Ralf Wildenhues
Hi Eric, * Eric Blake wrote on Sat, Jan 21, 2006 at 03:24:29PM CET: > > My FSF paperwork finally cleared on Jan 18. I currently don't have commit > privileges, so either someone else can apply this, or (if you decide to > grant me commit rights) this patch could be an opportunity for me to check

Re: add myself as contributor

2006-01-21 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Ralf, According to Ralf Wildenhues on 1/21/2006 8:54 AM: > > Yes, you should be able to do that now. Please check this in for both > branch-1-5 and HEAD -- their THANKS files should stay in sync. OK. This was probably a good thing for me, anyw

Re: Bug#348558: libtool: No such file or directory when linking 2 .la files with the same name but from different directories

2006-01-21 Thread Bob Friesenhahn
On Sat, 21 Jan 2006, Ralf Wildenhues wrote: [ this is http://bugs.debian.org/348558 ] * Carlo Contavalli wrote on Wed, Jan 18, 2006 at 05:01:29PM CET: On Wed, Jan 18, 2006 at 03:52:33PM +0100, Ralf Wildenhues wrote: Try the patch at the end (not yet tested very much); it should not be system

Re: creating broken binaries..

2006-01-21 Thread Bob Friesenhahn
On Sat, 21 Jan 2006, Ralf Wildenhues wrote: HPUX cc apparently leaves a broken, but non-executable binary with this sequence (which causes fail.at to fail): | $ echo 'int not_main() { return 0;}' > a.c | $ cc -c a.c | $ cc -o a a.o; echo $? | ld: Unsatisfied symbol "main" in file | 1 errors. |

FYI: fix sed syntax

2006-01-21 Thread Ralf Wildenhues
See here for the rationale to this largish patch: http://article.gmane.org/gmane.comp.sysutils.autoconf.patches/2649 Applied to HEAD (the corresponding branch-1-5 patch will appear in a followup post). Gary, could you push the mailnotify/clcommit changes upstream? Thank you. Cheers, Ralf

add myself as contributor

2006-01-21 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 My FSF paperwork finally cleared on Jan 18. I currently don't have commit privileges, so either someone else can apply this, or (if you decide to grant me commit rights) this patch could be an opportunity for me to check my eventual setup for commits.

creating broken binaries..

2006-01-21 Thread Ralf Wildenhues
HPUX cc apparently leaves a broken, but non-executable binary with this sequence (which causes fail.at to fail): | $ echo 'int not_main() { return 0;}' > a.c | $ cc -c a.c | $ cc -o a a.o; echo $? | ld: Unsatisfied symbol "main" in file | 1 errors. | 1 | $ nm a | grep main | [60] |

win32/MSVC tidbits

2006-01-21 Thread Ralf Wildenhues
A couple more tidbits on the way of integrating the MSVC support patch. First, we need to transform `.obj' in the same way as we do `.o'. Second, for compilers with compiler_c_o=no, we don't detect the object name in this command line correctly: $libtool --mode=compile --tag=CC $CC $CFLAGS -c -o

Fix linking against uninstalled libs again (1/n)

2006-01-21 Thread Ralf Wildenhues
I messed up pretty badly while trying to fix the "linking against uninstalled deplibs" right before 1.5.22 -- guess that's what I get for not testing extensively. Please accept my apologies. The changes applied to branch-1-5 had two flaws (at least): a) They did not move all paths to uninstalled

Re: Bug#348558: libtool: No such file or directory when linking 2 .la files with the same name but from different directories

2006-01-21 Thread Ralf Wildenhues
[ this is http://bugs.debian.org/348558 ] * Carlo Contavalli wrote on Wed, Jan 18, 2006 at 05:01:29PM CET: > On Wed, Jan 18, 2006 at 03:52:33PM +0100, Ralf Wildenhues wrote: > > > Try the patch at the end (not yet tested very much); it should not be > > system-specific. > ok. just applied and tri