Problems in cvs-version of libtool.

2003-01-20 Thread Erik Assum
Hi, Trying to solve my problem with compiling C++ on Solaris, I downloaded and installed a newer of libtool version: /usr/bin/libtool --version ltmain.sh (GNU libtool) 1.4e (1.1178 2003/01/15 02:55:33) When compiling with: ./configure --with-omni=$HOME/omniorb --without-zlib --disable-static

Re: Problems in cvs-version of libtool.

2003-01-20 Thread Albert Chin
On Mon, Jan 20, 2003 at 03:27:25PM +0100, Erik Assum wrote: > ld: fatal: symbol `bool Tango::operator==(const Tango::BlackBoxElt&,const >Tango::BlackBoxElt&)' is multiply-defined: > (file .libs/tangoSK.o and file .libs/tangoDynSK.o); > ld: fatal: symbol `bool Tango::operator<(const Tango::

Re: Problems in cvs-version of libtool.

2003-01-20 Thread Erik Assum
* Albert Chin | On Mon, Jan 20, 2003 at 03:27:25PM +0100, Erik Assum wrote: | > ld: fatal: symbol `bool Tango::operator==(const Tango::BlackBoxElt&,const |Tango::BlackBoxElt&)' is multiply-defined: | > (file .libs/tangoSK.o and file .libs/tangoDynSK.o); | > ld: fatal: symbol `bool Tango::o

Re: Problems in cvs-version of libtool.

2003-01-20 Thread Albert Chin
On Mon, Jan 20, 2003 at 05:39:50PM +0100, Erik Assum wrote: > * Albert Chin > | On Mon, Jan 20, 2003 at 03:27:25PM +0100, Erik Assum wrote: > | > ld: fatal: symbol `bool Tango::operator==(const Tango::BlackBoxElt&,const >Tango::BlackBoxElt&)' is multiply-defined: > | > (file .libs/tangoSK.

Re: [Mingw-users] Re: Solving the "relink exe's" libtool problem[take 3]

2003-01-20 Thread Earnie Boyd
This patch passes my test. What do we need to do to get this accepted into libtool cvs HEAD? Earnie. Charles Wilson wrote: Okay, this version 1) puts lt-foo.c into .libs 2) "libtool --mode=clean" does the right thing --- cleans up foo, foo.exe, .libs/foo.exe, .libs/lt-foo.c, plus whatever el

Re: [Mingw-users] Re: Solving the "relink exe's" libtool problem[take3]

2003-01-20 Thread Bruce Korb
Earnie Boyd wrote: > > This patch passes my test. What do we need to do to get this accepted > into libtool cvs HEAD? > > + newargz[0] = xstrdup("/bin/sh"); This may not be the shell and there is no point allocating it. It is fine to use it from static memory. ___

Re: [Mingw-users] Re: Solving the "relink exe's" libtool problem[take3]

2003-01-20 Thread Charles Wilson
Bruce Korb wrote: Earnie Boyd wrote: This patch passes my test. What do we need to do to get this accepted into libtool cvs HEAD? + newargz[0] = xstrdup("/bin/sh"); This may not be the shell and there is no point allocating it. It is fine to use it from static memory. Okay, the secon

Re: [PATCH] Re: Problem on rs6000-ibm-aix4.3.2.0 (Fortran) -DPIC

2003-01-20 Thread Kevin Ryde
Robert Boehne <[EMAIL PROTECTED]> writes: > > All good ideas, and I don't really have a preference for any of them. > If you do, let me know or I'll just pick the one that looks easiest. I'd think an autoconf macro would be ok, to be used for instance AC_LIBTOOL_PICDEF([-DPIC]) AC

Re: [Mingw-users] Re: Solving the "relink exe's" libtoolproblem[take3]

2003-01-20 Thread Bruce Korb
Charles Wilson wrote: > > Bruce Korb wrote: > > Earnie Boyd wrote: > > > >>This patch passes my test. What do we need to do to get this accepted > >>into libtool cvs HEAD? > > > > > >>>+ newargz[0] = xstrdup("/bin/sh"); > >> > > > > This may not be the shell and there is no point allocating it.

Re: [PATCH] Re: Problem on rs6000-ibm-aix4.3.2.0 (Fortran) -DPIC

2003-01-20 Thread Albert Chin
On Tue, Jan 21, 2003 at 09:13:54AM +1000, Kevin Ryde wrote: > Robert Boehne <[EMAIL PROTECTED]> writes: > > > > All good ideas, and I don't really have a preference for any of them. > > If you do, let me know or I'll just pick the one that looks easiest. > > I'd think an autoconf macro would be ok