* Fix compile bug with some compilers on 64 bit.
Changes 1.16.33:
* Build: Fix prototype/definition mismatch in libwww.cpp with some compilers
(e.g. Solaris).
* Build: Fix linking of xml-rpc-api2cpp with some linkers (e.g. Solaris).
Changes 1.16.32:
* Windows Abyss server: properly handle wait for connection.
Changes 1.16.31:
* CGI XML-RPC server accepts (ignores) parameters after "text/xml" in
Content-type header from client.
* CGI XML-RPC server accepts (ignores) parameters after "text/xml" in
Content-type header from client.
* Build: replace <sys/signal.h> with <signal.h>.
this switches to the "super stable" branch which is the only one
where tarballs are distributed of,
too many changes to list here, the most notable recent one is that the
recent expat DOS vulnerability was fixed, as were some portability
issues which caused problems on NetBSD
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.
XML-RPC is a quick-and-easy way to make procedure calls over the
Internet. It converts the procedure call into XML document, sends
it to a remote server using HTTP, and gets back the response as
XML.
This library provides a modular implementation of XML-RPC for C
and C++.
XXX: build system is custom-made (i.e. not using libtool), PLIST
will be wrong for many OPSYS -- please fix!