This release provides the fix for the recently announced security issue
CVE-2013-2063, along with a number of fixes to the build configuration.
Adam Jackson (1):
configure: Remove AM_MAINTAINER_MODE
Alan Coopersmith (5):
Move -I flags from AM_CFLAGS to AM_CPPFLAGS
Add xextproto & xi to Requires.private
Use _XEatDataWords to eat data in error cases
integer overflow in XRecordGetContext() [CVE-2013-2063]
libXtst 1.2.2
Colin Walters (1):
autogen.sh: Implement GNOME Build API
Julien Cristau (1):
COPYING: add copyright notices and licenses from the manpages and specs
libXext/buildlink3.mk, now that it is included there.
Leave the places where its API version is set or variables from it
are used directly (about 3 packages).
1.2.1:
This release builds on the DocBook/XML conversion of the API documentation
included in the previous release with cleanups & improvements to make the
documentation more useful and usable.
1.2.0:
This release adds the specification documents for the API's for both
extensions, converted from the original troff format to DocBook/XML.
It also includes the usual recent rounds of build configuration improvements
and janitorial cleanups.
1.1.0:
Just two changes, increasing the requires for libXext to what it really is
and the usual xorg-macros change.
1.0.99.2:
Xlib headers from the recordproto module have moved to here.
The new requirement is thus recordproto 1.13.99.2
No other interesting changes.
1.0.99.1:
The first libXtst release for nearly two years and boy, aren't we glad it's
here. 1.0.99.1 contains various build system fixes and a new header file
that previouly resided in the xextproto module.
This version requires xextproto 7.0.99.3 or later to avoid conflicts with
header files.
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.