OLD | NEW |
1 | 1 |
2 Expat, Release 2.1.0 | 2 Expat, Release 2.2.0 |
3 | 3 |
4 This is Expat, a C library for parsing XML, written by James Clark. | 4 This is Expat, a C library for parsing XML, written by James Clark. |
5 Expat is a stream-oriented XML parser. This means that you register | 5 Expat is a stream-oriented XML parser. This means that you register |
6 handlers with the parser before starting the parse. These handlers | 6 handlers with the parser before starting the parse. These handlers |
7 are called when the parser discovers the associated structures in the | 7 are called when the parser discovers the associated structures in the |
8 document being parsed. A start tag is an example of the kind of | 8 document being parsed. A start tag is an example of the kind of |
9 structures for which you may register handlers. | 9 structures for which you may register handlers. |
10 | 10 |
11 Windows users should use the expat_win32bin package, which includes | 11 Windows users should use the expat_win32bin package, which includes |
12 both precompiled libraries and executables, and source code for | 12 both precompiled libraries and executables, and source code for |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 2) in-makefile | 107 2) in-makefile |
108 3) environment | 108 3) environment |
109 | 109 |
110 Note: This only applies to the Expat library itself, building UTF-16 versions | 110 Note: This only applies to the Expat library itself, building UTF-16 versions |
111 of xmlwf and the tests is currently not supported. | 111 of xmlwf and the tests is currently not supported. |
112 | 112 |
113 Note for Solaris users: The "ar" command is usually located in | 113 Note for Solaris users: The "ar" command is usually located in |
114 "/usr/ccs/bin", which is not in the default PATH. You will need to | 114 "/usr/ccs/bin", which is not in the default PATH. You will need to |
115 add this to your path for the "make" command, and probably also switch | 115 add this to your path for the "make" command, and probably also switch |
116 to GNU make (the "make" found in /usr/ccs/bin does not seem to work | 116 to GNU make (the "make" found in /usr/ccs/bin does not seem to work |
117 properly -- appearantly it does not understand .PHONY directives). If | 117 properly -- apparently it does not understand .PHONY directives). If |
118 you're using ksh or bash, use this command to build: | 118 you're using ksh or bash, use this command to build: |
119 | 119 |
120 PATH=/usr/ccs/bin:$PATH make | 120 PATH=/usr/ccs/bin:$PATH make |
121 | 121 |
122 When using Expat with a project using autoconf for configuration, you | 122 When using Expat with a project using autoconf for configuration, you |
123 can use the probing macro in conftools/expat.m4 to determine how to | 123 can use the probing macro in conftools/expat.m4 to determine how to |
124 include Expat. See the comments at the top of that file for more | 124 include Expat. See the comments at the top of that file for more |
125 information. | 125 information. |
126 | 126 |
127 A reference manual is available in the file doc/reference.html in this | 127 A reference manual is available in the file doc/reference.html in this |
128 distribution. | 128 distribution. |
129 | 129 |
130 The homepage for this project is http://www.libexpat.org/. There | 130 The homepage for this project is http://www.libexpat.org/. There |
131 are links there to connect you to the bug reports page. If you need | 131 are links there to connect you to the bug reports page. If you need |
132 to report a bug when you don't have access to a browser, you may also | 132 to report a bug when you don't have access to a browser, you may also |
133 send a bug report by email to expat-bugs@mail.libexpat.org. | 133 send a bug report by email to expat-bugs@mail.libexpat.org. |
134 | 134 |
135 Discussion related to the direction of future expat development takes | 135 Discussion related to the direction of future expat development takes |
136 place on expat-discuss@mail.libexpat.org. Archives of this list and | 136 place on expat-discuss@mail.libexpat.org. Archives of this list and |
137 other Expat-related lists may be found at: | 137 other Expat-related lists may be found at: |
138 | 138 |
139 http://mail.libexpat.org/mailman/listinfo/ | 139 http://mail.libexpat.org/mailman/listinfo/ |
OLD | NEW |