diff options
author | Keith Packard <keithp@keithp.com> | 2013-11-03 09:56:02 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-11-04 18:53:36 -0800 |
commit | aaf0e29619196a283fee7ead2020a91032d84f48 (patch) | |
tree | 5adc6b736ccc25686f909df8eeafcedb9160450d /Xext/sync.c | |
parent | 33c85beed521c9db140cadd8c5aa9992398ee1fe (diff) |
Disable DRI3 and sync fence FD functions if xshmfence isn't available
Make sure the server can build when the xshmfence library isn't present
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'Xext/sync.c')
-rw-r--r-- | Xext/sync.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Xext/sync.c b/Xext/sync.c index a04c38388..dd18cdebd 100644 --- a/Xext/sync.c +++ b/Xext/sync.c @@ -919,6 +919,7 @@ SyncCreate(ClientPtr client, XID id, unsigned char type) int SyncCreateFenceFromFD(ClientPtr client, DrawablePtr pDraw, XID id, int fd, BOOL initially_triggered) { +#if HAVE_XSHMFENCE SyncFence *pFence; int status; @@ -936,12 +937,19 @@ SyncCreateFenceFromFD(ClientPtr client, DrawablePtr pDraw, XID id, int fd, BOOL return BadAlloc; return Success; +#else + return BadImplementation; +#endif } int SyncFDFromFence(ClientPtr client, DrawablePtr pDraw, SyncFence *pFence) { +#if HAVE_XSHMFENCE return miSyncFDFromFence(pDraw, pFence); +#else + return BadImplementation; +#endif } static SyncCounter * |