wmbutton: Correct path for X11 libs

The X11 libraries are now in include/X11 folder, instead of include
folder. Now is possible to compile the application in new systems.

This patch changes the wmbutton version in the README file too.

Based on Christian Aichinger's patch.
This commit is contained in:
Rodolfo García Peñas (kix) 2012-08-20 10:11:25 +02:00 committed by Carlos R. Mafra
parent 6dcdbf0e6e
commit 2c6831ca68
2 changed files with 7 additions and 7 deletions

View file

@ -52,10 +52,10 @@ helping out, catching bugs in the code, etc.
INSTALLATION:
-------------
Untar the file:
tar xvzf wmbutton-0.5.tar.gz
tar xvzf wmbutton-0.6.1.tar.gz
CD to source directory:
cd wmbutton-0.5
cd wmbutton-0.6.1
Edit background xpm, and buttons.xpm to your preferences
There are icon files in ./icons to work from

View file

@ -2,11 +2,11 @@
/* Last Modified 3/27/04 */
/****** Include Files ***************************************************/
#include <Xlib.h>
#include <Xutil.h>
#include <xpm.h>
#include <extensions/shape.h>
#include <keysym.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/xpm.h>
#include <X11/extensions/shape.h>
#include <X11/keysym.h>
#include <math.h>
#include <stdlib.h>
#include <string.h>