On 4/17/06, Anthony Campbell <[EMAIL PROTECTED]> wrote: > configure:2673: checking for X > configure:3532: checking if X11 header files can be found > configure:3543: gcc -c -g -O2 conftest.c 1>&5 > configure:3537:22: error: X11/Xlib.h: No such file or directory > > Perhaps it doesn't like xorg?
You're missing at least the X11 development headers. Install those. Debian shouldn't let you install the GTK headers without also having the X11 headers, so apt-getting the GTK headers should sort you out. For reference, Vim doesn't care if you're running Xorg, XFree86, or any other implementation of the X Protocol, it just sticks to the API. The headers all conform to the X11 API standard, and the communication they implement all conforms to the X11 protocol. This allows you to use any X11 application xhosted from any X11-compliant server to any X11 compliant client. HTH, Chris Allen
