php-src/ext/xmlrpc/libxmlrpc
Peter Kokot a700451706 Remove obsolescent AC_HEADER_STDC and memcpy check
Autoconf 2.59d (released in 2006) [1] started promoting several macros
as not relevant for newer systems anymore, including the `AC_HEADER_STDC`.

This macro checks if given system has C89 compliant header files such
as `<string.h>`, `<stdlib.h>`, `<stdarg.h>`, `<float.h>`,... and defines
the `STDC_HEADERS` symbol [2]. Case is that current systems should be
well supported with at least C89 standard headers [3].

Given headers are still additionally checked with the `AC_PROG_CC`
macro, yet not needed anyway.

Additionally, the HAVE_MEMCPY check has been removed. The memcpy
function is standardized by C89 and later.

Refs:
[1] http://git.savannah.gnu.org/cgit/autoconf.git/tree/NEWS
[2] https://www.gnu.org/software/autoconf/manual/autoconf-2.69/autoconf.html
[3] https://port70.net/~nsz/c/c89/c89-draft.html#4.1.2
2019-03-01 19:22:44 +01:00
..
acinclude.m4 Remove obsolescent AC_HEADER_STDC and memcpy check 2019-03-01 19:22:44 +01:00
base64.c Merge branch 'PHP-7.2' into PHP-7.3 2019-01-06 12:23:53 -08:00
base64.h Sync leading and final newlines in source code files 2018-10-14 12:56:38 +02:00
encodings.c Sync leading and final newlines in source code files 2018-10-14 12:56:38 +02:00
encodings.h
queue.c
queue.h
README Sync leading and final newlines in source code files 2018-10-14 12:56:38 +02:00
simplestring.c Merge branch 'PHP-7.1' 2016-11-05 13:59:56 -07:00
simplestring.h
system_methods.c Sync leading and final newlines in source code files 2018-10-14 12:56:38 +02:00
system_methods_private.h Sync leading and final newlines in source code files 2018-10-14 12:56:38 +02:00
xml_element.c Merge branch 'PHP-7.1' into PHP-7.2 2019-01-06 11:57:16 -08:00
xml_element.h
xml_to_dandarpc.c Sync leading and final newlines in source code files 2018-10-14 12:56:38 +02:00
xml_to_dandarpc.h
xml_to_soap.c Sync leading and final newlines in source code files 2018-10-14 12:56:38 +02:00
xml_to_soap.h
xml_to_xmlrpc.c Sync leading and final newlines in source code files 2018-10-14 12:56:38 +02:00
xml_to_xmlrpc.h
xmlrpc.c
xmlrpc.h Sync leading and final newlines in source code files 2018-10-14 12:56:38 +02:00
xmlrpc.m4 Trim trailing whitespace in source code files 2018-10-13 14:17:28 +02:00
xmlrpc_introspection.c Sync leading and final newlines in source code files 2018-10-14 12:54:08 +02:00
xmlrpc_introspection.h Sync leading and final newlines in source code files 2018-10-14 12:56:38 +02:00
xmlrpc_introspection_private.h Sync leading and final newlines in source code files 2018-10-14 12:56:38 +02:00
xmlrpc_private.h Sync leading and final newlines in source code files 2018-10-14 12:56:38 +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..