tags 500325 +patch
thanks

>It seems you have a mix of things you want to build shared and static,
>but that doesn't work.
It looks to me like the package builds a static library and then tries to use that static library to form part of a shared library. Unfortunately that static library is not getting built PIC

Since afaict no static libraries are included in the package the easiest soloution seems to be to force the entire package to be built with -fPIC .

to do this replace the following line in debian/rules

CFLAGS = -Wall -g

with

CFLAGS = -Wall -g -fPIC
CXXFLAGS += -fPIC





--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to