This release fixes the autoconf macros installed for use generating the
other Xorg font packages to respect the $PKG_CONFIG variable that some
build systems, especially cross-compilers, require; and updates the
license notice in map-JISX0201.1976-0 to the current version from
Unicode Consortium.
Adam Jackson (1):
configure: Drop AM_MAINTAINER_MODE
Alan Coopersmith (3):
Fix a bunch of clang integer size conversion warnings in ucs2any
Update map-JISX0201.1976-0 to current version from Unicode Consortium
font-util 1.3.1
Colin Walters (1):
autogen.sh: Implement GNOME Build API
Ross Burton (1):
fontutil.m4.in: use $PKG_CONFIG instead of pkg-config
1.3.0:
This release includes a number of bug fixes and code cleanups of
the utilities, as well as improvements to the GNU autoconf macros
for X.Org font packages for cross-compiling support.
Existing font packages will need to have autoreconf run after installing
the new fontutil.m4 to take advantage of the cross-compilation fixes - the
next release of the font packages will include this fix in the configure
scripts distributed in their tarballs.
1.2.0:
This release adds two new options that some of the font packages will
offer in their configure scripts:
--disable-all-encodings option to the macros used in the bdf font
packages, to set the default to disabled for all encodings so that
builders/packagers wanting to build just a subset of encodings can
start with none and add the ones they want instead of having to disable
all those they don't want.
--with-fc-confdir to specify the path to fontconfig's configuration
files directory (normally /etc/fonts), for packages like bh-ttf that
install fontconfig configuration snippets. If not specified,
the default will be the confdir variable from fontconfig.pc if present
(which it won't be until the next fontconfig release), otherwise
${sysconfdir}/fonts.
Existing font packages will need to have autoreconf run after installing
the new fontutil.m4 to take advantage of this fix - the next release of
the font packages will include this fix in the configure scripts
distributed in their tarballs.
Alan Coopersmith (3):
Update license of code copyrighted by the NetBSD Foundation
Add missing copyright/license notices to COPYING
Add README with pointers to mailing list, bugzilla & git repos
James Cloos (4):
Rename .cvsignore to .gitignore
Add *~ to .gitignore to skip patch/emacs droppings
Replace bdftruncate Perl script with C program
Replace static ChangeLog with dist-hook to generate from git log
Julien Cristau (1):
Bump to 1.0.2
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.