Subject: Re: libglade problems
To: Emmanuel Dreyfus <manu@netbsd.org>
From: Dan Winship <danw@ximian.com>
List: tech-pkg
Date: 08/09/2001 17:29:52
> Trying to make a package for sodipodi (SVG based vector graphics
> application), I have problems because all glade signal handlers are not
> found at runtime.

You probably need to add "-export-dynamic" to sodipodi's LDFLAGS. (The
libtool docs say it's required if shared libraries are going to use
dlsym to resolve symbols in the main program, but it's a noop on Linux,
so people are always forgetting it...)

-- Dan