ryu [mailto:[EMAIL PROTECTED]] wrote:
> Heres some ideas:
>
> for starters, look at config.log and get a more detailed look
> at how its
> failing.
Here is the last part of config.log:
(snip)
configure:2602: checking for XOpenDisplay in -lX11
configure:2621: gcc -o conftest -g -O2 -I/usr/X11R6/include
-L/usr/X11R6/lib -lSM -lICE conftest.c -lX11 -L/usr/X11R6/lib 1>&5
/usr/X11R6/lib/libX11.so: undefined reference to `[EMAIL PROTECTED]'
/usr/X11R6/lib/libX11.so: undefined reference to `[EMAIL PROTECTED]'
/usr/X11R6/lib/libX11.so: undefined reference to `[EMAIL PROTECTED]'
collect2: ld returned 1 exit status
configure: failed program was:
#line 2610 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
builtin and then its argument prototype would still apply. */
char XOpenDisplay();
int main() {
XOpenDisplay()
; return 0; }
> do a objdump -t /usr/X11/lib/libX11.so.6 |grep XOpenDisplay.
> It should be listed.
It is (but my path to it is /usr/X11R6/lib/libX11.so.6):
000256b0 g F .text 00000f84 XOpenDisplay
Jamin W. Collins