mirror of
https://github.com/GNOME/libxml2.git
synced 2025-02-17 18:19:32 +08:00
switched to have thread support enabled by default, didn't got troubles
* configure.in: switched to have thread support enabled by default, didn't got troubles with ABI compatibility on Linux, hope it won't break on strange OSes, if yes, report the system ID * doc/libxml2-api.xml: just rebuilt the API Daniel
This commit is contained in:
parent
3e59fc52d5
commit
8494271318
@ -1,3 +1,10 @@
|
||||
Fri Apr 18 16:37:41 CEST 2003 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* configure.in: switched to have thread support enabled by default,
|
||||
didn't got troubles with ABI compatibility on Linux, hope it
|
||||
won't break on strange OSes, if yes, report the system ID
|
||||
* doc/libxml2-api.xml: just rebuilt the API
|
||||
|
||||
Fri Apr 18 14:31:15 CEST 2003 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* libxml.h include/libxml/parser.h parser.c xmlIO.c DOCBparser.c:
|
||||
|
@ -364,7 +364,9 @@ THREAD_CFLAGS=""
|
||||
TEST_THREADS=""
|
||||
|
||||
AC_ARG_WITH(threads, [ --with-threads Add multithread support(off)])
|
||||
if test "$with_threads" = "yes" ; then
|
||||
if test "$with_threads" = "no" ; then
|
||||
echo Disabling multithreaded support
|
||||
else
|
||||
echo Enabling multithreaded support
|
||||
|
||||
AC_CHECK_HEADER(pthread.h,
|
||||
|
@ -3009,8 +3009,11 @@ actually an xmlCharEncoding'/>
|
||||
<field name='end' type='const xmlChar *' info=' end of the array to parse'/>
|
||||
<field name='length' type='int' info=' length if known'/>
|
||||
<field name='line' type='int' info=' Current line'/>
|
||||
<field name='col' type='int' info=' Current column'/>
|
||||
<field name='consumed' type='int' info=' How many xmlChars already consumed'/>
|
||||
<field name='col' type='int' info='* NOTE: consumed is only tested for equality in the parser code,
|
||||
* so even if there is an overflow this should not give troubles
|
||||
* for parsing very large instances.
|
||||
*'/>
|
||||
<field name='consumed' type='unsigned long' info=' How many xmlChars already consumed'/>
|
||||
<field name='free' type='xmlParserInputDeallocate' info=' function to deallocate the base'/>
|
||||
<field name='encoding' type='const xmlChar *' info=' the encoding string for entity'/>
|
||||
<field name='version' type='const xmlChar *' info=' the version string for entity'/>
|
||||
|
Loading…
Reference in New Issue
Block a user