views:

57

answers:

1

I have some code with the following headers for Xlib but don't know what to do to make it work...I can't find these headers.

#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xos.h>
#include <X11/Xatom.h>

Sorry new to this.. Okay so now I can view the headers in the foldrrs in my eclipse IDE. and i get the following errors.Thee is no problem with the source as friends have run it from the terminal,and i want to do it from eclipse ide:

In function main': /home/abbas/workspace/test3/Debug/../src/test3.cpp:51: undefined reference toXOpenDisplay'

and many other errors of the same type but the functions are different.

collect2: ld returned 1 exit status make: * [test3] Error 1

Plzz hellpp!!

A: 

You need to link in Xlib, which is part of a library called X11. I'll leave figuring out how to do that in Eclipse as an exercise for you.

Blrfl