Re: pthreads in libtool'd shared library...

2004-11-02 Thread Ralf Wildenhues
* Chris Bowlby wrote on Mon, Nov 01, 2004 at 05:37:33PM CET: At 02:44 PM 10/31/2004, Ralf Wildenhues wrote: Try adding -no-undefined. Should fail at library link time then. This had no effect on the compiler, it still managed to compile with out issue. This seems to be a separate issue.

Re: GNU Automake 1.9.3 released

2004-11-02 Thread Peter Breitenlohner
On Mon, 1 Nov 2004, Alexandre Duret-Lutz wrote: We're pleased to announce the release of Automake 1.9.3. This is a bug-fix release, the list of bugs fixed is appended. Hi, I just fetched and built automake-1.9.3. During make check I got the same three unexpected FAIL's as for 1.9.2. Tho output is

Libtool, You have new postcard! id=pzQHEomtwq

2004-11-02 Thread jhiggins
Title: A Digital Postcards(R) Greeting from Me waiting for you at POSTCARDS.COM! A Digital Postcards(R) Greeting from honey waiting for you at POSTCARDS.COM! If you have a modern e-mail program, you can go directly to your card by clicking:

Re: Building all static

2004-11-02 Thread Gary V. Vaughan
Hi Bill, Bill Moseley wrote: Sorry for the cross post, not sure which is the correct list. My project builds a library and then builds a binary and links to that library. Someone has asked how to build a completely static binary. $ libtool --help --mode=link | grep static -all-static

tag-option

2004-11-02 Thread Christoph Wellner
Hi, in our project, we mainly use C++-Code. But for speeding-up things, sometimes we need to compile assembler-code too. In the past, we used libtool 1.4.2a on debian woody. We had no problems. But with the new debian sarge, with libtool 1.5.6, we can't compile our software anymore. When I

Re: Building all static

2004-11-02 Thread Bill Moseley
On Tue, Nov 02, 2004 at 12:39:10PM +, Gary V. Vaughan wrote: $ libtool --help --mode=link | grep static -all-static do not do any dynamic linking at all -static do not do any dynamic linking of libtool libraries And that seems to work if I place those in my Makefile.am

Re: Building all static

2004-11-02 Thread Bob Friesenhahn
On Tue, 2 Nov 2004, Gary V. Vaughan wrote: Unless someone shouts me down, then according to the principle of least surprise, I'm inclined to change the semantics to: -static do not do any dynamic linking at all -lt-staticdo not do any dynamic linking of libtool libraries (We can keep

Re: tag-option

2004-11-02 Thread Bob Friesenhahn
On Tue, 2 Nov 2004, Christoph Wellner wrote: in our project, we mainly use C++-Code. But for speeding-up things, sometimes we need to compile assembler-code too. In the past, we used libtool 1.4.2a on debian woody. We had no problems. But with the new debian sarge, with libtool 1.5.6, we can't

Re: Building all static

2004-11-02 Thread Bill Moseley
On Tue, Nov 02, 2004 at 08:35:27AM -0600, Bob Friesenhahn wrote: The main purpose of building a completely static program is to satisfy security or system bootstrap requirements (/usr partition not mounted). It is not always possible to build a completely static program. It is not usually

Re: Building all static

2004-11-02 Thread Bob Friesenhahn
On Tue, 2 Nov 2004, Bill Moseley wrote: On Tue, Nov 02, 2004 at 08:35:27AM -0600, Bob Friesenhahn wrote: The main purpose of building a completely static program is to satisfy security or system bootstrap requirements (/usr partition not mounted). It is not always possible to build a completely

Re: Building all static

2004-11-02 Thread Gary V. Vaughan
Hi Bob! Bob Friesenhahn wrote: On Tue, 2 Nov 2004, Gary V. Vaughan wrote: Unless someone shouts me down, then according to the principle of least surprise, I'm inclined to change the semantics to: -static do not do any dynamic linking at all -lt-staticdo not do any dynamic

Re: Building all static

2004-11-02 Thread Bob Friesenhahn
On Tue, 2 Nov 2004, Gary V. Vaughan wrote: This seems like a particularly bad idea to me. What is the value of changing existing documented libtool behavior? Consistency, and user expectation. Looking through the archives I see the repeated question of why -static still links shared libraries

Re: Building all static

2004-11-02 Thread Gary V. Vaughan
Hi Bill, Bill Moseley wrote: $ grep -- -static src/Makefile.am libtest_LDFLAGS = -static (which maybe answers your question if anyone is using -static) Not really. See my other post to this thread. I'm not using AC_DISABLE_STATIC in configure -- and using --enable-static

Re: Building all static

2004-11-02 Thread Bill Moseley
On Tue, Nov 02, 2004 at 03:44:20PM +, Gary V. Vaughan wrote: $ ./configure --prefix=$HOME/static LD_FLAGS='-all-static' /dev/null make install /dev/null just LDFLAGS ^^^ It's one of those mornings. $ ./configure --prefix=$HOME/static LDFLAGS='-all-static'

Re: Building all static

2004-11-02 Thread Bob Friesenhahn
On Tue, 2 Nov 2004, Ralf Wildenhues wrote: Is that a mail-only typo? You used LD_FLAGS instead of LDFLAGS. But then, configure will most likely fail soon, before libtool is even involved -- the compiler will see -all-static and barf. There's been discussion about this on this list about

Re: Building all static

2004-11-02 Thread Ralf Wildenhues
* Gary V. Vaughan wrote on Tue, Nov 02, 2004 at 04:33:45PM CET: Bob Friesenhahn wrote: On Tue, 2 Nov 2004, Gary V. Vaughan wrote: This seems like a particularly bad idea to me. What is the value of changing existing documented libtool behavior? Consistency, and user expectation.

Re: Building all static

2004-11-02 Thread Bruce Korb
Gary V. Vaughan wrote: Are these assumptions good? i) people who specify -static to libtool don't want to link against any dynamic libraries, and are suprised that isn't actually the case. ii) the -static option is not used to mean `link static libtool libraries, and dynamic

Re: Building all static

2004-11-02 Thread Gary V. Vaughan
Replying to myself after reading more of the thread... Gary V. Vaughan wrote: Bob Friesenhahn wrote: The main purpose of building a completely static program is to satisfy security or system bootstrap requirements (/usr partition not mounted). It is not always possible to build a

Re: Building all static

2004-11-02 Thread Gary V. Vaughan
Hi Bob, Ralf! Bob Friesenhahn wrote: On Tue, 2 Nov 2004, Ralf Wildenhues wrote: Is that a mail-only typo? You used LD_FLAGS instead of LDFLAGS. But then, configure will most likely fail soon, before libtool is even involved -- the compiler will see -all-static and barf. There's been

Re: Building all static

2004-11-02 Thread Gary V. Vaughan
Hi Ralf, Ralf Wildenhues wrote: Besides, it's a clear change of published interface (this doesn't mean I'm for or against the change. Just needs to be marked VERY VERY big. Users of former Libtool-type `-static' will need to use libtool --version in order to differentiate old and new

Re: Building all static

2004-11-02 Thread Bob Friesenhahn
On Tue, 2 Nov 2004, Gary V. Vaughan wrote: Boiling down to: How do we sensibly figure out which libraries need to be linked dynamically in the face of -static? This would normally be the list of libraries that the C compiler provides by default when linking. Unfortunately, GCC 3 has confused

Re: Building all static

2004-11-02 Thread Gary V. Vaughan
Hey Bruce! Bruce Korb wrote: ``-static'' needs to imply the common and ordnary meaning of ``static''. libtool is a less common and ordinary command than either gcc or ld. It is not a directly obvious thing that you would need to add the qualifier all- to it in order to actually get static

Improves kidney function

2004-11-02 Thread tommie franklin
Discover...in the next few minutes... regardless of your age, sex, or current health status, how this common element can change the way you experience the next half of your life. Learn how to increase your quality of life We really have something here which may be able to reverse some of the

TUDO PARA CONCURSOS PUBLICOS EM CD-ROM WW ADVOGADOS ASSOCIADOS

2004-11-02 Thread MEGA CD-ROM CONCURSOS P�BLICOS
Caro(a) Colega Advogado, Estudante ou Concursando A WW Advogados Associados apresenta: MEGA CD-ROM CONCURSOS â É um produto preparado para profissionais, estudantes e concursandos nas áreas do direito, administração e contabilidade, alem de vários outros que pretendem prestar concursos

500+ Webcams -

2004-11-02 Thread Julio Jones
Title: Personals No More ___ Libtool mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/libtool