1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 18:22:42 +01:00
Files
archived-php-src/ext/xmlrpc/libxmlrpc
Peter Kokot 96a9fb2052 Simplify libxmlrpc bundling and building
The xmlrpc library is a forked, modified and bundled into the PHP source
code. Instead of having a separate *nix build system files in the xmlrpc
library this patch removes unneeded build checks.

- AC_PROG_CC is not needed to be called by the extension itself since it
  is already part of the main configure.ac and the phpize's
  configure.ac.
- UNDEF_THREADS_HACK is not used in the current codebase.
- Symbols defined by XMLRPC_HEADER_CHECKS are not used in the current
  code.
- Symbols defined by XMLRPC_FUNCTION_CHECKS are not used in the current
  code.
- AC_PROG_RANLIB is already done by the TSRM's files and isn't needed
  for the xmlrpc extension to work.
- AC_PROG_LN_S is already done by the PHP main configure.ac and also
  isn't needed by the xmlrpc extension to be built.
2019-04-23 20:17:33 +02:00
..
2019-04-11 14:14:21 +02:00
2019-04-11 14:14:21 +02:00
2015-01-10 15:07:38 -08:00
2019-04-11 14:14:21 +02:00
2015-01-10 15:07:38 -08:00
2019-04-11 14:14:21 +02:00
2019-04-11 14:14:21 +02:00
2015-01-10 15:07:38 -08:00
2015-01-10 15:07:38 -08:00
2019-04-11 14:14:21 +02:00
2015-01-10 15:07:38 -08:00
2019-04-11 14:14:21 +02:00
2015-01-10 15:07:38 -08:00
2019-04-11 14:14:21 +02:00

organization of this directory is moving towards this approach:

<module>.h               -- public API and data types
<module>_private.h       -- protected API and data types
<module>.c               -- implementation and private API / types

The rules are:
.c files may include *_private.h.
.h files may not include *_private.h

This allows us to have a nicely encapsulated C api with opaque data types and private functions
that are nonetheless shared between source files without redundant extern declarations..