3 -------------------------------------------------------------------------------
4 * Synced proplib code with NetBSD HEAD, which replaces the red-black tree
5 implementation and checks for NULL pointers passed in to the _dict/_array
8 * The _zfile functions in the API are now encapsulated into its own file,
9 that way upstream changes are merged easily.
11 * The list of public API exported symbols is now handled via libtool's
12 -exported-symbols option so that local symbols don't pollute the API.
14 * Explicitly require a C99 compiler. Don't want to waste time in non C99
17 * Build with Stack Smashing Protection if supported by the compiler, and
18 a bunch of compiler warnings.
21 -------------------------------------------------------------------------------
22 * When externalizing a file with the _file variant, it was always writting
23 gzipped archives but without compression, this added garbage into the
24 plist files, thus not being compatible.
27 -------------------------------------------------------------------------------
28 * Added support to internalize (read) and externalize (write) plist
29 files compressed with gzip(1) (by using the compatible zlib interface).
31 The ABI has not been touched, some new functions have been added:
32 - prop_array_externalize_to_zfile()
33 - prop_array_internalize_from_zfile()
34 - prop_dictionary_externalize_to_zfile().
35 - prop_dictionary_internalize_from_zfile().
37 Due to this additions, zlib is now required. The _zfile() variants are
38 able to internalize/externalize from uncompressed plist files as well.
41 -------------------------------------------------------------------------------
42 * Add strlcat again with an autoconf check.
43 * Emit decimal numbers rather than hex when externalizing unsigned numbers.
44 * A bugfix from NetBSD that properly handles empty data nodes, ie
48 -------------------------------------------------------------------------------
49 * A bugfix from NetBSD that fixes two race conditions that could corrupt
50 the red-black tree to store the objects.
51 * Added some more tests to configure.ac.
54 -------------------------------------------------------------------------------
55 * Initial public release matching libprop from NetBSD 4.99.73.