* Update to last devhelp * devhelp now uses Mozilla to render HTML contents
Responsible Changed From-To: freebsd-ports-bugs->vs I'll handle this one.
Everything builds fine, but on running the tool on -STABLE, I get: devhelp@menelaos [23:00:22]> devhelp /usr/libexec/ld-elf.so.1: Shared object "libgtkembedmoz.so" not found Using LD_PRELOAD_PATH it seems to work, i.e. the error doesn't occur, but I'm on remote X atm. Is this a fault of my setup or a general problem of this port? Regards, Volker
On Wed, 2004-04-14 at 22:05, Volker Stolz wrote: > Everything builds fine, but on running the tool on -STABLE, I get: > > devhelp@menelaos [23:00:22]> devhelp > /usr/libexec/ld-elf.so.1: Shared object "libgtkembedmoz.so" not found > > Using LD_PRELOAD_PATH it seems to work, i.e. the error doesn't occur, > but I'm on remote X atm. Is this a fault of my setup or a general > problem of this port? The PR Makefile has this patch: post-patch: - @${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} \ - ${REINPLACE_CMD} -e 's|-DG[TD]K_DISABLE_DEPRECATED||g' + @${REINPLACE_CMD} -E 's,^(LD_),export \1,g' ${WRKSRC}/devhelp.in this should take care of this problem. This is a problem with the devhelp launch script that is shipped with devhelp, they forgot to export the LD_LIBRARY_PATH env var (see http://cvs.gnome.org/viewcvs/devhelp/devhelp.in?r1=1.1&r2=1.2). Regards, Rui Lopes
State Changed From-To: open->closed Committed, thanks.