GNOME Bugzilla – Bug 583471
must link directly to libX11 on Solaris
Last modified: 2009-05-27 02:49:38 UTC
On Solaris, you have to explicitly link to libraries whose symbols you use. Simply linking against gtk which then links to X works on Linux, but not Solaris. The solution is to use AC_PATH_X or a PKG_CHECK_MODULES(X11, etc.) and substituting the appropriate variables.
I've added x11 to PKG_CHECK_MODULES. James, can you check whether this fixes the problem. Thanks.
That worked, thanks.