diff options
author | Jamey Sharp <jamey@minilop.net> | 2006-09-25 04:13:01 -0700 |
---|---|---|
committer | Jamey Sharp <jamey@minilop.net> | 2006-09-25 04:13:01 -0700 |
commit | 7413b7781257815f13eba9bc0567dd208fadfeaa (patch) | |
tree | 767a84d861b46739f84b564e722cc8e444c672db /image | |
parent | a76558d985a2a0172e452e705249c37c5dafae0b (diff) |
libxcb now installs header files in <xcb>, not <X11/XCB>.
Diffstat (limited to 'image')
-rw-r--r-- | image/test_formats.c | 2 | ||||
-rw-r--r-- | image/test_xcb_image.c | 2 | ||||
-rw-r--r-- | image/test_xcb_image_shm.c | 4 | ||||
-rw-r--r-- | image/xcb_image.c | 4 | ||||
-rw-r--r-- | image/xcb_image.h | 4 |
5 files changed, 8 insertions, 8 deletions
diff --git a/image/test_formats.c b/image/test_formats.c index 3b97978..1176a79 100644 --- a/image/test_formats.c +++ b/image/test_formats.c @@ -1,4 +1,4 @@ -#include <X11/XCB/xcb.h> +#include <xcb/xcb.h> #include "xcb_image.h" #include "xcb_aux.h" #include <stdio.h> diff --git a/image/test_xcb_image.c b/image/test_xcb_image.c index 23ce236..d482634 100644 --- a/image/test_xcb_image.c +++ b/image/test_xcb_image.c @@ -3,7 +3,7 @@ #include <stdlib.h> #include <stdio.h> -#include <X11/XCB/xcb.h> +#include <xcb/xcb.h> #include "xcb_aux.h" #include "xcb_image.h" diff --git a/image/test_xcb_image_shm.c b/image/test_xcb_image_shm.c index a886daf..1046e5a 100644 --- a/image/test_xcb_image_shm.c +++ b/image/test_xcb_image_shm.c @@ -4,8 +4,8 @@ #include <sys/ipc.h> #include <sys/shm.h> -#include <X11/XCB/xcb.h> -#include <X11/XCB/shm.h> +#include <xcb/xcb.h> +#include <xcb/shm.h> #include "xcb_aux.h" #include "xcb_image.h" diff --git a/image/xcb_image.c b/image/xcb_image.c index 75be4da..dc30e27 100644 --- a/image/xcb_image.c +++ b/image/xcb_image.c @@ -4,8 +4,8 @@ #include <stdio.h> #include <string.h> -#include <X11/XCB/xcb.h> -#include <X11/XCB/shm.h> +#include <xcb/xcb.h> +#include <xcb/shm.h> #include "xcb_image.h" diff --git a/image/xcb_image.h b/image/xcb_image.h index 751f361..26bfbc5 100644 --- a/image/xcb_image.h +++ b/image/xcb_image.h @@ -1,8 +1,8 @@ #ifndef __XCB_IMAGE_H__ #define __XCB_IMAGE_H__ -#include <X11/XCB/xcb.h> -#include <X11/XCB/shm.h> +#include <xcb/xcb.h> +#include <xcb/shm.h> #ifdef __cplusplus |