Re: libtool, Apache 2.0, AIX

2001-12-03 Thread Jeff Trawick
Robert Boehne <[EMAIL PROTECTED]> writes: > Jeff: > > I'm definitely amenable to making changes to libtool, but I would like > to understand why you get core dumps. I *thought* I understood shared > libs under AIX, and the only thing that prevents Libtool from doing > the "right thing" is that

Re: libtool, Apache 2.0, AIX

2001-12-03 Thread Robert Boehne
Jeff Trawick wrote: > > Robert Boehne <[EMAIL PROTECTED]> writes: > > > In Libtool we allow for either to be built, the latter being > > created when -Wl,-brtl is added to LDFLAGS during configure. > > From my perspective, I only get to choose we whether or not I do > run-time linking... I do

Re: libtool, Apache 2.0, AIX

2001-11-30 Thread Jeff Trawick
Robert Boehne <[EMAIL PROTECTED]> writes: > In Libtool we allow for either to be built, the latter being > created when -Wl,-brtl is added to LDFLAGS during configure. >From my perspective, I only get to choose we whether or not I do run-time linking... I don't get to choose what format shared

Re: libtool, Apache 2.0, AIX

2001-11-30 Thread Jeff Trawick
Robert Boehne <[EMAIL PROTECTED]> writes: > In Jeff's earier post his item #3 states he's got an unusable > library. We don't want that, but I don't have enough information > to determine why this is the case. Could you post enough for > me to reproduce it? I don't think you need to reproduce

Re: libtool, Apache 2.0, AIX

2001-11-30 Thread Robert Boehne
Hello, The native AIX way of handling shared libraries is to create a shared object and put it in an archive. I believe that this archive normally includes a shared object, and a static archive, then perhaps other pairs on a multilib system (32 bit, and 64 bit for instance). There is also the

Re: libtool, Apache 2.0, AIX

2001-11-30 Thread Jeff Trawick
Marc Stephenson <[EMAIL PROTECTED]> writes: > I do agree that it would be nice to have an option to disable the AIX > archiving feature. If this function were to be generically described, perhaps > it could be described as a non-library option. > > If you're building a shared library to be

Re: libtool, Apache 2.0, AIX

2001-11-30 Thread mcnichol
Jeff, You can change the behavior of libtool on AIX by adding a a flag to the LDFLAGS variable. Try this: export LDFLAGS="-Wl,-brtl" before doing configure and make. Dan > From: Jeff Trawick <[EMAIL PROTECTED]> > > Apache 2.0 uses libtool and has for some time now. > > On AIX we're trying

Re: libtool, Apache 2.0, AIX

2001-11-30 Thread Marc Stephenson
I do agree that it would be nice to have an option to disable the AIX archiving feature. If this function were to be generically described, perhaps it could be described as a non-library option. If you're building a shared library to be linked against on AIX, the normal way is to have an ar

libtool, Apache 2.0, AIX

2001-11-30 Thread Jeff Trawick
Apache 2.0 uses libtool and has for some time now. On AIX we're trying to use libtool 1.4.2 but are running into some issues that perhaps someone can shed some light on. background info: Apache 2.0 uses code in libapr and libaprutil, implicitly loaded with httpd. As always, Apache 2.0 do