diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2010-01-25 16:45:03 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2010-01-25 16:45:03 +0000 |
commit | 123bdb086ad9c5725a51791458d31309c69a3f41 (patch) | |
tree | c5ed0ea366d91292a9f35f14fcc3a6250eef0d99 /build/Makefile.win32.features-h | |
parent | e1b3330376c173633e146eb6cf578592d424e4d5 (diff) |
xcb: Make shm optional
Trying to build xcb on a system without SHM wrapped by xcb. The right
answer would be to build libxcb-shm. The quick answer is to compile out
shm support.
Diffstat (limited to 'build/Makefile.win32.features-h')
-rw-r--r-- | build/Makefile.win32.features-h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/build/Makefile.win32.features-h b/build/Makefile.win32.features-h index 95e9386d9..ca21aba26 100644 --- a/build/Makefile.win32.features-h +++ b/build/Makefile.win32.features-h @@ -17,6 +17,9 @@ endif ifeq ($(CAIRO_HAS_XLIB_XCB_FUNCTIONS),1) @echo "#define CAIRO_HAS_XLIB_XCB_FUNCTIONS 1" >> src/cairo-features.h endif +ifeq ($(CAIRO_HAS_XCB_SHM_FUNCTIONS),1) + @echo "#define CAIRO_HAS_XCB_SHM_FUNCTIONS 1" >> src/cairo-features.h +endif ifeq ($(CAIRO_HAS_QT_SURFACE),1) @echo "#define CAIRO_HAS_QT_SURFACE 1" >> src/cairo-features.h endif |