diff options
author | Christian Linhart <chris@demorecorder.com> | 2017-01-20 20:14:57 +0100 |
---|---|---|
committer | Christian Linhart <chris@demorecorder.com> | 2017-03-11 10:51:33 +0100 |
commit | 0c2c5d50f8670da3e7601feb6a29b53509513da5 (patch) | |
tree | 357b6f56f930a069dcaf4729291977920c09a634 /src | |
parent | 9bce1f72e329cb407b7a95589b9675a08129b65d (diff) |
optionally build the GE extension
xcb contains an xml-definition for the GenericEvent extension
but this extension was neither generated nor built.
This patch enables optional building of the GenericEvent extension
with configure option --enable-ge
By default, the GenericEvent extension is not built.
Normally this is not needed by application programs
because there is implicit support for the GE-extension
for the specific events built with this extension.
But it may be useful for X-protocol analyzers and stuff like that.
Signed-off-by: Christian Linhart <chris@demorecorder.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index e06e70b..17b64a8 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -232,6 +232,13 @@ libxcb_xvmc_la_LIBADD = $(XCB_LIBS) nodist_libxcb_xvmc_la_SOURCES = xvmc.c xvmc.h endif +EXTSOURCES += ge.c +if BUILD_GE +lib_LTLIBRARIES += libxcb-ge.la +libxcb_ge_la_LDFLAGS = -version-info 0:0:0 -no-undefined @lt_enable_auto_import@ +libxcb_ge_la_LIBADD = $(XCB_LIBS) +nodist_libxcb_ge_la_SOURCES = ge.c ge.h +endif EXTHEADERS=$(EXTSOURCES:.c=.h) xcbinclude_HEADERS = xcb.h xcbext.h |