Increment the "current" version info for sync, xinput and xkb

Sync: Due to commit e6a246e50e62cbcba3 "sync: Change value list param of
CreateAlarm and ChangeAlarm into switch", various symbols disappeared,
for example xcb_sync_{change,create}_alarm_sizeof.

xinput: This extension was updated from version 1.4 to 2.3. This means
that lots of new things are generated. However, this change is
backwards-compatible and thus age gets set to 1.

xkb: In commit 37d0f55392d6 "xkb: Work around alignment problems in
GetNames and GetMap replies", some padding fields were introduced into
structures for which an _unpack() function is generated. This changed
the size of the struct and caused offsets into this struct to change.

https://bugs.freedesktop.org/show_bug.cgi?id=71507

Signed-off-by: Uli Schlachter <psychon@znc.in>
Signed-off-by: Julien Cristau <jcristau@debian.org>
This commit is contained in:
Uli Schlachter 2013-11-18 20:28:08 +01:00 committed by Julien Cristau
parent ce5395eb46
commit b30b11ac49

View File

@ -139,7 +139,7 @@ endif
EXTSOURCES += sync.c EXTSOURCES += sync.c
if BUILD_SYNC if BUILD_SYNC
lib_LTLIBRARIES += libxcb-sync.la lib_LTLIBRARIES += libxcb-sync.la
libxcb_sync_la_LDFLAGS = -version-info 0:0:0 -no-undefined @lt_enable_auto_import@ libxcb_sync_la_LDFLAGS = -version-info 1:0:0 -no-undefined @lt_enable_auto_import@
libxcb_sync_la_LIBADD = $(XCB_LIBS) libxcb_sync_la_LIBADD = $(XCB_LIBS)
nodist_libxcb_sync_la_SOURCES = sync.c sync.h nodist_libxcb_sync_la_SOURCES = sync.c sync.h
endif endif
@ -179,7 +179,7 @@ endif
EXTSOURCES += xinput.c EXTSOURCES += xinput.c
if BUILD_XINPUT if BUILD_XINPUT
lib_LTLIBRARIES += libxcb-xinput.la lib_LTLIBRARIES += libxcb-xinput.la
libxcb_xinput_la_LDFLAGS = -version-info 0:0:0 -no-undefined @lt_enable_auto_import@ libxcb_xinput_la_LDFLAGS = -version-info 1:0:1 -no-undefined @lt_enable_auto_import@
libxcb_xinput_la_LIBADD = $(XCB_LIBS) libxcb_xinput_la_LIBADD = $(XCB_LIBS)
nodist_libxcb_xinput_la_SOURCES = xinput.c xinput.h nodist_libxcb_xinput_la_SOURCES = xinput.c xinput.h
endif endif
@ -187,7 +187,7 @@ endif
EXTSOURCES += xkb.c EXTSOURCES += xkb.c
if BUILD_XKB if BUILD_XKB
lib_LTLIBRARIES += libxcb-xkb.la lib_LTLIBRARIES += libxcb-xkb.la
libxcb_xkb_la_LDFLAGS = -version-info 0:0:0 -no-undefined libxcb_xkb_la_LDFLAGS = -version-info 1:0:0 -no-undefined
libxcb_xkb_la_LIBADD = $(XCB_LIBS) libxcb_xkb_la_LIBADD = $(XCB_LIBS)
nodist_libxcb_xkb_la_SOURCES = xkb.c xkb.h nodist_libxcb_xkb_la_SOURCES = xkb.c xkb.h
endif endif