After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 130807 - configure fails to find Xi library
configure fails to find Xi library
Status: RESOLVED FIXED
Product: gok
Classification: Deprecated
Component: build
unspecified
Other Windows
: Normal normal
: ---
Assigned To: David Bolter
David Bolter
Depends on:
Blocks:
 
 
Reported: 2004-01-07 20:26 UTC by Matt Lavin
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: 2.5/2.6



Description Matt Lavin 2004-01-07 20:26:39 UTC
the configure script cannot find the Xi library when X has been installed
into a non standard location, ie /opt/XFree86-4.4RC2.  A fix for this
problem is to add the x library directory detected in the AC_PATH_XTRA
macro to the list of search directories.  

I changed line 64 of configure.in from 

for xinputpath in /usr/X11R6/lib /usr/openwin/lib; do

to

for xinputpath in $x_libraries /usr/X11R6/lib /usr/openwin/lib; do
Comment 1 David Bolter 2004-01-07 20:31:24 UTC
Thanks Matt, do you have cvs commit priviledges?
Comment 2 Matt Lavin 2004-01-07 20:35:24 UTC
I don't have commit priviledges
Comment 3 David Bolter 2004-01-07 20:43:06 UTC
I've made the change and will commit after a sanity check from gok's
comaintainer.

Bill?
Comment 4 bill.haneman 2004-01-07 23:47:29 UTC
looks good to me, please go ahead.  Thanks again Matt.
Comment 5 David Bolter 2004-01-12 14:47:37 UTC
Finally remembered to do this.  Fixed in cvs. Thanks again.