| OLD | NEW |
| 1 This directory contains a partial snapshot of the libxslt library from | 1 Name: libxslt |
| 2 http://xmlsoft.org/XSLT, with the following modification: | 2 URL: http://xmlsoft.org/XSLT |
| 3 | 3 |
| 4 This directory contains a partial snapshot of the libxslt library |
| 5 with the following modification: |
| 6 |
| 4 1) Modified win32/configure.js to be able to clobber a read-only Makefile | 7 1) Modified win32/configure.js to be able to clobber a read-only Makefile |
| 5 This consists of: | 8 This consists of: |
| 6 replace --- | 9 replace --- |
| 7 fso.CopyFile(makefile, ".\\Makefile", true); | 10 fso.CopyFile(makefile, ".\\Makefile", true); |
| 8 with --- | 11 with --- |
| 9 var new_makefile = ".\\Makefile"; | 12 var new_makefile = ".\\Makefile"; |
| 10 var f = fso.FileExists(new_makefile); | 13 var f = fso.FileExists(new_makefile); |
| 11 if (f) { | 14 if (f) { |
| 12 var t = fso.GetFile(new_makefile); | 15 var t = fso.GetFile(new_makefile); |
| 13 t.Attributes =0; | 16 t.Attributes =0; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 headers. | 48 headers. |
| 46 - On Linux, 'cd linux && sh ../configure --with-libxml-src=../../libxml/linux/' | 49 - On Linux, 'cd linux && sh ../configure --with-libxml-src=../../libxml/linux/' |
| 47 to re-generate configuration headers. | 50 to re-generate configuration headers. |
| 48 - On Mac, 'cd mac && sh ../configure --with-libxml-src=../../libxml/mac/' | 51 - On Mac, 'cd mac && sh ../configure --with-libxml-src=../../libxml/mac/' |
| 49 to re-generate configuration headers. | 52 to re-generate configuration headers. |
| 50 - Perform the modification above. | 53 - Perform the modification above. |
| 51 - Update this README to reflect the new version number. | 54 - Update this README to reflect the new version number. |
| 52 - When creating your CL, make sure to "svn add" any new source files, but | 55 - When creating your CL, make sure to "svn add" any new source files, but |
| 53 don't ever add in the files not needed for the Chromium build. (e.g. | 56 don't ever add in the files not needed for the Chromium build. (e.g. |
| 54 Changelog, configure, etc) -- these are just bloat. | 57 Changelog, configure, etc) -- these are just bloat. |
| OLD | NEW |