Add library support for xcb-xinerama.

This is version 1.1 of the Xinerama (PanoramiX) extension.
This commit is contained in:
Jeremy Kolb 2006-10-12 23:52:59 -04:00
parent 7f74dd6b64
commit c1504691ec
4 changed files with 22 additions and 1 deletions

View File

@ -20,6 +20,7 @@ xcb-sync.pc \
xcb-xevie.pc \ xcb-xevie.pc \
xcb-xf86dri.pc \ xcb-xf86dri.pc \
xcb-xfixes.pc \ xcb-xfixes.pc \
xcb-xinerama.pc \
xcb-xprint.pc \ xcb-xprint.pc \
xcb-xtest.pc \ xcb-xtest.pc \
xcb-xv.pc \ xcb-xv.pc \
@ -41,6 +42,7 @@ xcb-shape.pc.in \
xcb-shm.pc.in \ xcb-shm.pc.in \
xcb-sync.pc.in \ xcb-sync.pc.in \
xcb-xevie.pc.in \ xcb-xevie.pc.in \
xcb-xinerama.pc.in \
xcb-xf86dri.pc.in \ xcb-xf86dri.pc.in \
xcb-xfixes.pc.in \ xcb-xfixes.pc.in \
xcb-xprint.pc.in \ xcb-xprint.pc.in \

View File

@ -119,6 +119,6 @@ AC_SUBST(CWARNFLAGS)
GCC_CHECK_VISIBILITY() GCC_CHECK_VISIBILITY()
AC_CONFIG_FILES([Makefile src/Makefile tests/Makefile]) AC_CONFIG_FILES([Makefile src/Makefile tests/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-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-xprint.pc xcb-xtest.pc xcb-xv.pc xcb-xvmc.pc])
AC_OUTPUT AC_OUTPUT

View File

@ -15,6 +15,7 @@ lib_LTLIBRARIES = libxcb.la \
libxcb-xevie.la \ libxcb-xevie.la \
libxcb-xf86dri.la \ libxcb-xf86dri.la \
libxcb-xfixes.la \ libxcb-xfixes.la \
libxcb-xinerama.la \
libxcb-xprint.la \ libxcb-xprint.la \
libxcb-xtest.la \ libxcb-xtest.la \
libxcb-xv.la \ libxcb-xv.la \
@ -38,6 +39,7 @@ EXTHEADERS = \
xevie.h \ xevie.h \
xf86dri.h \ xf86dri.h \
xfixes.h \ xfixes.h \
xinerama.h \
xprint.h \ xprint.h \
xtest.h \ xtest.h \
xv.h \ xv.h \
@ -60,6 +62,7 @@ EXTSOURCES = \
xevie.c \ xevie.c \
xf86dri.c \ xf86dri.c \
xfixes.c \ xfixes.c \
xinerama.c \
xprint.c \ xprint.c \
xtest.c \ xtest.c \
xv.c \ xv.c \
@ -90,6 +93,7 @@ EXTENSION_XML = \
xevie.xml \ xevie.xml \
xf86dri.xml \ xf86dri.xml \
xfixes.xml \ xfixes.xml \
xinerama.xml \
xprint.xml \ xprint.xml \
xtest.xml \ xtest.xml \
xvmc.xml \ xvmc.xml \
@ -205,6 +209,10 @@ libxcb_xvmc_la_LDFLAGS = -version-info 0:0:0
libxcb_xvmc_la_LIBADD = $(XCB_LIBS) libxcb_xvmc_la_LIBADD = $(XCB_LIBS)
libxcb_xvmc_la_SOURCES = xvmc.c xvmc.h libxcb_xvmc_la_SOURCES = xvmc.c xvmc.h
libxcb_xinerama_la_LDFLAGS = -version-info 0:0:0
libxcb_xinerama_la_LIBADD = $(XCB_LIBS)
libxcb_xinerama_la_SOURCES = xinerama.c xinerama.h
$(EXTHEADERS) $(EXTSOURCES): c-client.xsl $(EXTHEADERS) $(EXTSOURCES): c-client.xsl
SUFFIXES = .xml SUFFIXES = .xml

11
xcb-xinerama.pc.in Normal file
View File

@ -0,0 +1,11 @@
prefix=/opt/fdo/
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${prefix}/include
Name: XCB Xinerama
Description: XCB Xinerama Extension
Version: 0.9.92
Requires: xcb
Libs: -L${libdir} -lxcb-xinerama
Cflags: -I${includedir}