Re: question about CFLAGS modifiers to ./configure

2006-04-03 Thread Miriam Ruiz
Thanks for your help, I have the ideas quite much clearer now. It seems that libgnashserver depends on libgnashasobjs, and at the same time libgnashasobjs depends on libgnashserver too, which is something quite wierd. Is there a nice solution for this? I guess the right thing should be to tell

Re: question about CFLAGS modifiers to ./configure

2006-04-03 Thread Steve Langasek
On Mon, Apr 03, 2006 at 10:33:21PM +0200, Miriam Ruiz wrote: Thanks for your help, I have the ideas quite much clearer now. It seems that libgnashserver depends on libgnashasobjs, and at the same time libgnashasobjs depends on libgnashserver too, which is something quite wierd. Is there a

Re: question about CFLAGS modifiers to ./configure

2006-03-31 Thread Steve Langasek
On Fri, Mar 31, 2006 at 08:41:22AM +0200, Miriam Ruiz wrote: --- Steve Langasek [EMAIL PROTECTED] escribió: This is discussed in policy 10.2. If your libraries are failing to link when using -z,defs, that's a bug in those libraries; anything that references symbols from other libraries

Re: question about CFLAGS modifiers to ./configure

2006-03-31 Thread Miriam Ruiz
--- Steve Langasek [EMAIL PROTECTED] escribió: On Fri, Mar 31, 2006 at 08:41:22AM +0200, Miriam Ruiz wrote: --- Steve Langasek [EMAIL PROTECTED] escribió: This is discussed in policy 10.2. If your libraries are failing to link when using -z,defs, that's a bug in those libraries;

Re: question about CFLAGS modifiers to ./configure

2006-03-31 Thread Miriam Ruiz
It seems that the linker options: -Wl,-z,defs are neccesary (for policy), but if you don't add this linker flags, it compiles and builds without problems. With them, it's hell. I've managed to compile libbase and libgeometry adding AM_LDFLAGS to Makefile.am: libbase/Makefile.am: AM_LDFLAGS =

Re: question about CFLAGS modifiers to ./configure

2006-03-31 Thread Bernhard R. Link
* Miriam Ruiz [EMAIL PROTECTED] [060331 10:38]: I'm attaching the latest snapshot of my debian directory, as well as the .build file resulting from trying to build it. I'm getting tons of undefined references, some of which I don't seem to be able to get rid of. This looks like the prime

Re: question about CFLAGS modifiers to ./configure

2006-03-31 Thread Felipe Sateler
Bernhard R. Link wrote: Another problem your build log shows: grep -n rpath ../gnash_0.0.20060328-1_i386.build: 194:checking for rpath... yes [...] 591: [...] -Wl,--rpath -Wl,/home/inniyah/gnash/gnash/libbase/.libs [...] [...] 748: [...] -Wl,--rpath

question about CFLAGS modifiers to ./configure

2006-03-30 Thread Miriam Ruiz
Hi, DebHelper uses by default (in the pre-made templates) -Wl,-z,defs in CFLAGS when running ./configure CFLAGS=-Wall -g -O2 -Wl,-z,defs ./configure --host=$(DEB_HOST_GNU_TYPE) ... I'm packaging a program (with some libraries in it) that won't compile with them unless you explicitly modify

Re: question about CFLAGS modifiers to ./configure

2006-03-30 Thread Justin Pryzby
On Thu, Mar 30, 2006 at 06:23:38PM +0200, Miriam Ruiz wrote: Hi, DebHelper uses by default (in the pre-made templates) -Wl,-z,defs in CFLAGS when running ./configure CFLAGS=-Wall -g -O2 -Wl,-z,defs ./configure --host=$(DEB_HOST_GNU_TYPE) ... I'm packaging a program (with some libraries

Re: question about CFLAGS modifiers to ./configure

2006-03-30 Thread Darren Salt
I demand that Miriam Ruiz may or may not have written... DebHelper uses by default (in the pre-made templates) -Wl,-z,defs in CFLAGS when running ./configure CFLAGS=-Wall -g -O2 -Wl,-z,defs ./configure --host=$(DEB_HOST_GNU_TYPE) ... -Wl,-z,defs in CFLAGS causes warnings about unused linker

Re: question about CFLAGS modifiers to ./configure

2006-03-30 Thread Justin Pryzby
On Thu, Mar 30, 2006 at 08:23:38PM +0100, Darren Salt wrote: I demand that Miriam Ruiz may or may not have written... DebHelper uses by default (in the pre-made templates) -Wl,-z,defs in CFLAGS when running ./configure CFLAGS=-Wall -g -O2 -Wl,-z,defs ./configure

Re: question about CFLAGS modifiers to ./configure

2006-03-30 Thread Steve Langasek
On Thu, Mar 30, 2006 at 06:23:38PM +0200, Miriam Ruiz wrote: DebHelper uses by default (in the pre-made templates) -Wl,-z,defs in CFLAGS when running ./configure CFLAGS=-Wall -g -O2 -Wl,-z,defs ./configure --host=$(DEB_HOST_GNU_TYPE) ... I'm packaging a program (with some libraries in it)

Re: question about CFLAGS modifiers to ./configure

2006-03-30 Thread Miriam Ruiz
--- Steve Langasek [EMAIL PROTECTED] escribió: This is discussed in policy 10.2. If your libraries are failing to link when using -z,defs, that's a bug in those libraries; anything that references symbols from other libraries on the system needs to link against those libraries. Thanks, I