|
From: Enrico M. <enr...@te...> - 2007-04-16 12:09:05
|
Marcos wrote: > I'm trying to build sipdht-tools-0.4.1 with libsipdht-0.7.0. I have > installed sofia-sip and libsipdht in a custom path (under my devel home > directory) and the configure from sipdht-tools is unable to find sipdht > library. > > I've tried setting the PKG_CONFIG_PATH variable without success, as it > has worked for building libsipdht against sofia-sip without problems. It is defenitely a bug in the configuration scripts; if you file a report in the bug tracking system, it will be fixed in the next release. In the meantime, you could explicitly set CPPFLAGS, LDFLAGS and LD_LIBRARY_PATH. For example, if libsipdht base dir was /tmp, sipdht-tools would need to be configured as follows: $ CPPFLAGS="-I/tmp/include" LDFLAGS="-L/tmp/lib" ./configure It would then compile, but still require LD_LIBRARY_PATH to point to /tmp/lib before executing. Hope this helps. -- Ciao, Enrico |