mirror of
https://github.com/gnustep/libs-back.git
synced 2025-04-22 07:21:02 +00:00
* Headers/x11/XWindowBuffer.h: Protect the usage of shm.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@34025 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
7b47045f4e
commit
7ea797e178
2 changed files with 11 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2011-10-18 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Headers/x11/XWindowBuffer.h: Protect the usage of shm.
|
||||
|
||||
2011-10-17 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* configure.ac: Test for X shape extension
|
||||
|
|
|
@ -25,8 +25,14 @@
|
|||
#ifndef XWindowBuffer_h
|
||||
#define XWindowBuffer_h
|
||||
|
||||
#include <X11/extensions/XShm.h>
|
||||
#include <config.h>
|
||||
|
||||
#ifdef XSHM
|
||||
#include <X11/extensions/XShm.h>
|
||||
#else
|
||||
// FIXME
|
||||
#define XShmSegmentInfo int
|
||||
#endif
|
||||
|
||||
struct XWindowBuffer_depth_info_s
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue