From 0b5f684eb0f8a8ad1887514568532037bb46020c Mon Sep 17 00:00:00 2001 From: Eamon Walsh Date: Thu, 24 Jan 2008 15:57:35 -0500 Subject: [PATCH] Add XInput extension support, disabled by default. --- Makefile.am | 3 +++ configure.ac | 4 +++- src/.gitignore | 1 + src/Makefile.am | 10 ++++++++++ xcb-xinput.pc.in | 11 +++++++++++ 5 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 xcb-xinput.pc.in diff --git a/Makefile.am b/Makefile.am index 2bf2102..a18ef5d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -54,6 +54,9 @@ endif if BUILD_XINERAMA pkgconfig_DATA += xcb-xinerama.pc endif +if BUILD_XINPUT +pkgconfig_DATA += xcb-xinput.pc +endif if BUILD_XPRINT pkgconfig_DATA += xcb-xprint.pc endif diff --git a/configure.ac b/configure.ac index 3edaa69..d411620 100644 --- a/configure.ac +++ b/configure.ac @@ -118,6 +118,8 @@ AC_ARG_ENABLE(xfixes, AS_HELP_STRING([--enable-xfixes], [Build XCB XFixes Extens AM_CONDITIONAL(BUILD_XFIXES, [test "x$BUILD_XFIXES" = xyes]) AC_ARG_ENABLE(xinerama, AS_HELP_STRING([--enable-xinerama], [Build XCB Xinerama Extension (default: yes)]), [BUILD_XINERAMA=$enableval], [BUILD_XINERAMA=yes]) AM_CONDITIONAL(BUILD_XINERAMA, [test "x$BUILD_XINERAMA" = xyes]) +AC_ARG_ENABLE(xinput, AS_HELP_STRING([--enable-xinput], [Build XCB XInput Extension (EXPERIMENTAL) (default: no)]), [BUILD_XINPUT=$enableval], [BUILD_XINPUT=no]) +AM_CONDITIONAL(BUILD_XINPUT, [test "x$BUILD_XINPUT" = xyes]) AC_ARG_ENABLE(xprint, AS_HELP_STRING([--enable-xprint], [Build XCB Xprint Extension (default: yes)]), [BUILD_XPRINT=$enableval], [BUILD_XPRINT=yes]) AM_CONDITIONAL(BUILD_XPRINT, [test "x$BUILD_XPRINT" = xyes]) AC_ARG_ENABLE(xtest, AS_HELP_STRING([--enable-xtest], [Build XCB XTEST Extension (default: yes)]), [BUILD_XTEST=$enableval], [BUILD_XTEST=yes]) @@ -129,7 +131,7 @@ AM_CONDITIONAL(BUILD_XVMC, [test "x$BUILD_XVMC" = xyes]) AC_CONFIG_FILES([Makefile src/Makefile tests/Makefile doc/Makefile]) -AC_CONFIG_FILES([xcb.pc xcb-xlib.pc xcb-composite.pc xcb-damage.pc xcb-dpms.pc xcb-glx.pc xcb-randr.pc xcb-record.pc xcb-render.pc xcb-res.pc xcb-screensaver.pc xcb-shape.pc xcb-shm.pc xcb-sync.pc xcb-xevie.pc xcb-xf86dri.pc xcb-xfixes.pc xcb-xinerama.pc xcb-xprint.pc xcb-xtest.pc xcb-xv.pc xcb-xvmc.pc]) +AC_CONFIG_FILES([xcb.pc xcb-xlib.pc xcb-composite.pc xcb-damage.pc xcb-dpms.pc xcb-glx.pc xcb-randr.pc xcb-record.pc xcb-render.pc xcb-res.pc xcb-screensaver.pc xcb-shape.pc xcb-shm.pc xcb-sync.pc xcb-xevie.pc xcb-xf86dri.pc xcb-xfixes.pc xcb-xinerama.pc xcb-xinput.pc xcb-xprint.pc xcb-xtest.pc xcb-xv.pc xcb-xvmc.pc]) AC_CONFIG_FILES([doc/xcb.doxygen]) AC_OUTPUT diff --git a/src/.gitignore b/src/.gitignore index 9dc3b5b..2793eb7 100644 --- a/src/.gitignore +++ b/src/.gitignore @@ -16,6 +16,7 @@ xevie.* xf86dri.* xfixes.* xinerama.* +xinput.* xprint.* xtest.* xv.* diff --git a/src/Makefile.am b/src/Makefile.am index fc613b4..c4f6880 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -195,6 +195,16 @@ libxcb_xinerama_la_LIBADD = $(XCB_LIBS) libxcb_xinerama_la_SOURCES = xinerama.c xinerama.h endif +if BUILD_XINPUT +lib_LTLIBRARIES += libxcb-xinput.la +EXTHEADERS += xinput.h +EXTSOURCES += xinput.c +EXTENSION_XML += xinput.xml +libxcb_xinput_la_LDFLAGS = -version-info 0:0:0 +libxcb_xinput_la_LIBADD = $(XCB_LIBS) +libxcb_xinput_la_SOURCES = xinput.c xinput.h +endif + if BUILD_XPRINT lib_LTLIBRARIES += libxcb-xprint.la EXTHEADERS += xprint.h diff --git a/xcb-xinput.pc.in b/xcb-xinput.pc.in new file mode 100644 index 0000000..ec31229 --- /dev/null +++ b/xcb-xinput.pc.in @@ -0,0 +1,11 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: XCB XInput +Description: XCB XInput Extension (EXPERIMENTAL) +Version: @PACKAGE_VERSION@ +Requires: xcb +Libs: -L${libdir} -lxcb-xinput +Cflags: -I${includedir} -- 2.34.1