Subject: CVS commit: pkgsrc/devel/gperf
To: None <pkgsrc-changes@NetBSD.org>
From: Adam Ciarcinski <adam@netbsd.org>
List: pkgsrc-changes
Date: 12/03/2003 15:56:16
Module Name: pkgsrc
Committed By: adam
Date: Wed Dec 3 15:56:16 UTC 2003
Modified Files:
pkgsrc/devel/gperf: Makefile PLIST distinfo
pkgsrc/devel/gperf/patches: patch-aa
Log Message:
New in 3.0.1:
* Bug fix.
New in 3.0:
* Added option --output that allows to specify the output file name.
* Some options have been renamed:
--hash-fn-name=NAME --> --hash-function-name=NAME
--lookup-fn-name=NAME --> --lookup-function-name=NAME
--compare-strlen --> --compare-lengths
--global --> --global-table
The older variants are still supported for backward compatibility.
* New options can now be specified inside the input file: --> see "NEWS"
* When the option -k is not given, the default key positions are now
computed depending on the set of keywords.
* If the input file is given by name, the output file will now contain
#line directives referring to the input file.
* Some keyword sets containing permutations, like { "xy", "yx", "xz", "zx" }
or { "abc", "acb", "bca", "cab" }, are now handled by gperf without
requiring the option -D.
* The generated table is usually much smaller than it was with earlier
versions of gperf.
* Added option -m/--multiple-iterations that allows to further reduce the
size of the generated table.
* When the search for a good hash function is not immediately successful,
the table's size will grow as needed. Earlier versions of gperf bailed
out with an "Internal error, duplicate hash code value".
* The options -f/--fast and -o/--occurrence-sort have no effect any more.
* Added options -P/--pic and --null-strings that optimize the generated code
for use in shared libraries. -P/--pic does a perfect optimization but may
require some small code changes (see the documentation for details), whereas
--null-strings does only a half-hearted optimization but works without
needing any change to surrounding code.
* Added option --ignore-case that produces a case independent lookup function.
* Bug fixes
To generate a diff of this commit:
cvs rdiff -r1.14 -r1.15 pkgsrc/devel/gperf/Makefile
cvs rdiff -r1.3 -r1.4 pkgsrc/devel/gperf/PLIST pkgsrc/devel/gperf/distinfo
cvs rdiff -r1.4 -r1.5 pkgsrc/devel/gperf/patches/patch-aa
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.