codemax
codemax

Reputation: 457

Which package in ubuntu contains the header file X11.h?

Which package in ubuntu contains the header file X11.h?

Upvotes: 15

Views: 21483

Answers (4)

Pascal Thivent
Pascal Thivent

Reputation: 570365

Generally, if you look for file in packages you have not installed, use apt-file (sudo apt-get install apt-file if required).

Use it like this:

apt-file update
apt-file search X11/Xlib.h

PS: sorry for this stupid question but are you sure you're looking for x11.h?

Upvotes: 33

sohaibafifi
sohaibafifi

Reputation: 765

There is no supported package contain this header file

may be there is no header named x11.h at all or you want the x11/Xlib.h header that can be found on ivtools-dev, libx11-dev, tendra [not amd64], libroot5.18 or z88dk-data

Upvotes: -1

David Larochette
David Larochette

Reputation: 1220

try x-window-system-dev

Upvotes: 1

David Harris
David Harris

Reputation: 2340

As far as I can tell you'll need to install libx11-dev.

Upvotes: 18

Related Questions