OLD | NEW |
1 This directory contains a partial snapshot of the libxml library from | 1 This directory contains a partial snapshot of the libxml library from |
2 http://xmlsoft.org, with the patch in google.patch applied. google.patch | 2 http://xmlsoft.org, with the patch in google.patch applied. google.patch |
3 includes the following modifications : | 3 includes the following modifications : |
4 * Modified encoding.c to fix memory leak (06/13/2008) | 4 * Modified encoding.c to fix memory leak (06/13/2008) |
5 * Modified win32/configure.js NOT to use iconv | 5 * Modified win32/configure.js NOT to use iconv |
6 * Modified win32/configure.js to be able to clobber a read-only Makefile | 6 * Modified win32/configure.js to be able to clobber a read-only Makefile |
7 * Modified configure to enable icu. | 7 * Modified configure to enable icu. |
8 * Modified configure to not generate Makefiles and other unused build files.. | 8 * Modified configure to not generate Makefiles and other unused build files.. |
9 * Added pre-generated Linux headers to linux/. | 9 * Added pre-generated Linux headers to linux/. |
10 * Changed 'LoadLibrary' to 'LoadLibraryA' in xmlmodule.c (used with | 10 * Changed 'LoadLibrary' to 'LoadLibraryA' in xmlmodule.c (used with |
11 'const char*' as an argument) | 11 'const char*' as an argument) |
12 * Changed bogus '(unsigned long)' cast to '(unsigned short)' in xmlregexp.c | 12 * Changed bogus '(unsigned long)' cast to '(unsigned short)' in xmlregexp.c |
13 * Made it possible to use ICU converters instead of iconv. | 13 * Made it possible to use ICU converters instead of iconv. |
14 * Added nsParent member to _xmlParseCtxt in include/libxml/parser.h, | 14 * Added nsParent member to _xmlParseCtxt in include/libxml/parser.h, |
15 added a check to nsParent in xmlGetNamespace() in parser.c. | 15 added a check to nsParent in xmlGetNamespace() in parser.c. |
16 This allows parsed entities to inherit namespaces. | 16 This allows parsed entities to inherit namespaces. |
17 (http://bugzilla.gnome.org/show_bug.cgi?id=502960 ) | 17 (http://bugzilla.gnome.org/show_bug.cgi?id=502960 ) |
18 * Applied security patch located at https://bugzilla.redhat.com/show_bug.cgi?id=
461015 | 18 * Applied security patch located at https://bugzilla.redhat.com/show_bug.cgi?id=
461015 |
19 * Applied v2.6.26 version of security patch located at https://bugzilla.redhat.c
om/show_bug.cgi?id=515195 | 19 * Applied v2.6.26 version of security patch located at https://bugzilla.redhat.c
om/show_bug.cgi?id=515195 |
| 20 * Add an empty source file, xmldummy_mac.cc, to the tree to work around an Xcode
bug. |
20 | 21 |
21 Current version: 2.6.32 | 22 Current version: 2.6.32 |
22 | 23 |
23 To import a new snapshot of libxml: | 24 To import a new snapshot of libxml: |
24 | 25 |
25 - Visit http://xmlsoft.org/downloads.html and download the latest source | 26 - Visit http://xmlsoft.org/downloads.html and download the latest source |
26 distribution. | 27 distribution. |
27 - Copy the files into this directory, omitting files which have been omitted | 28 - Copy the files into this directory, omitting files which have been omitted |
28 here. | 29 here. |
29 - Remove include/libxml/xmlversion.h. | 30 - Remove include/libxml/xmlversion.h. |
30 - Apply the patch in google.patch and reconcile any conflict | 31 - Apply the patch in google.patch and reconcile any conflict |
31 - Then, make any necessary changes to remove compile-time warnings. | 32 - Then, make any necessary changes to remove compile-time warnings. |
32 - Update google.patch | 33 - Update google.patch |
33 - On a Linux system, 'cd linux && sh ../configure --without-iconv' to | 34 - On a Linux system, 'cd linux && sh ../configure --without-iconv' to |
34 generate config.h and include/libxml/xmlversion.h for Linux. | 35 generate config.h and include/libxml/xmlversion.h for Linux. |
35 - On a Mac, 'cd mac && sh ../configure --without-iconv' to generate config.h | 36 - On a Mac, 'cd mac && sh ../configure --without-iconv' to generate config.h |
36 and include/libxml/xmlversion.h for Macs. | 37 and include/libxml/xmlversion.h for Macs. |
37 - On Windows, run build/generate-win32-headers.bat to re-generate config.h and | 38 - On Windows, run build/generate-win32-headers.bat to re-generate config.h and |
38 include/libxml/xmlversion.h for Windows builds. | 39 include/libxml/xmlversion.h for Windows builds. |
39 - Update this README to reflect the new version number. | 40 - Update this README to reflect the new version number. |
OLD | NEW |