The actual fix as been done by "pkglint -F */*/buildlink3.mk", and was
reviewed manually.
There are some .include lines that still are indented with zero spaces
although the surrounding .if is indented. This is existing practice.
Problems found locating distfiles:
Package modular-xorg-server: missing distfile xorg-server-1.17.4.tar.bz2
Package py-qt4: missing distfile PyQt-mac-gpl-4.11.1.tar.gz
Package xservers: missing distfile xservers-3.3.6.5.tar.bz2
Package xview-clients: missing distfile xview3.2p1-X11R6.tar.gz
Package xview-lib: missing distfile xview3.2p1-X11R6.tar.gz
Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden). All existing
SHA1 digests retained for now as an audit trail.
* stop to use x11/Xfixes if builtin one is newer (xfixes.pc exists)
* add builtin libXfixes detection.
affect to NetBSD-5, builtin libXfixes is 4.0.3, prevent to install Xfixes 2.0.1,
if it is considerd that builtin Xfixes is not sufficient.
This bug fix release includes the fix for the recently announced
CVE-2013-1983, along with some other cleanups & warning fixes.
Adam Jackson (1):
configure: Remove AM_MAINTAINER_MODE
Alan Coopersmith (7):
Strip trailing whitespace
Replace deprecated Automake INCLUDES variable with AM_CPPFLAGS
Remove duplicate declaration of XFixesExtensionName in Xfixesint.h
XFixesFetchRegionAndBounds: use nread in call to XReadPad
Use _XEatDataWords to avoid overflow of _XEatData calculations
integer overflow in XFixesGetCursorImage() [CVE-2013-1983]
libXfixes 5.0.1
Colin Walters (1):
autogen.sh: Implement GNOME Build API
Peter Hutterer (1):
man: remove "current", we're way past 1.0.
4.0.4:
Add README with pointers to mailing list, bugzilla & git repos
Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
Replace static ChangeLog with dist-hook to generate from git log
nuke RCS Ids
Janitor: Correct make distcheck and gcc/sparse warnings.
Rename parameters to clarify QueryVersion/QueryExtension.
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.