Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
#define PHP_FE_END {NULL, NULL, NULL}
#endif

/* TSRMLS macros were removed in PHP 7; provide empty fallbacks */
#if !defined(TSRMLS_CC)
Comment thread
mho22 marked this conversation as resolved.
Outdated
#define TSRMLS_CC
#endif
Comment thread
mho22 marked this conversation as resolved.
Outdated

/**
* Provided by php_wasm.c:
*/
Expand Down Expand Up @@ -83,4 +88,4 @@ zend_module_entry post_message_to_js_module_entry = {
ZEND_TSRMLS_CACHE_DEFINE()
#endif
ZEND_GET_MODULE(post_message_to_js)
#endif
#endif
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
#define ZEND_FE_END {NULL, NULL, NULL}
#endif

/* TSRMLS macros were removed in PHP 7; provide empty fallbacks */
#if !defined(TSRMLS_CC)
#define TSRMLS_CC
#endif
Comment thread
mho22 marked this conversation as resolved.

#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
Expand Down Expand Up @@ -329,4 +334,4 @@ zend_module_entry dns_polyfill_module_entry = {
PHP_MINFO(dns_polyfill), /* PHP_MINFO - Module info */
PHP_DNS_POLYFILL_VERSION, /* Version */
STANDARD_MODULE_PROPERTIES};
/* }}} */
/* }}} */
Loading