mirror of
https://github.com/pmmp/ext-encoding.git
synced 2025-02-28 18:21:37 +00:00
this isn't the final form, but these statics already turned out to be handy for the tests, and they'll probably be good for attributes and other stuff like it.
9 lines
333 B
Plaintext
9 lines
333 B
Plaintext
ARG_ENABLE('encoding', 'encoding support', 'no');
|
|
|
|
if (PHP_ENCODING != 'no') {
|
|
AC_DEFINE('HAVE_ENCODING', 1, 'encoding support enabled');
|
|
|
|
EXTENSION('encoding', 'encoding.cpp', null, '/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 /permissive-');
|
|
ADD_SOURCES(configure_module_dirname + '/classes', 'ByteBuffer.cpp Types.cpp', 'encoding');
|
|
}
|