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