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