mirror of
https://github.com/php/php-src.git
synced 2024-11-25 10:54:15 +08:00
12 lines
294 B
JavaScript
12 lines
294 B
JavaScript
// vim:ft=javascript
|
|
// $Id$
|
|
|
|
ARG_ENABLE('embed', 'Embedded SAPI library', 'no');
|
|
|
|
var PHP_EMBED_PGO = false;
|
|
|
|
if (PHP_EMBED != "no") {
|
|
SAPI('embed', 'php_embed.c', 'php' + PHP_VERSION + 'embed.lib', '/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1');
|
|
PHP_INSTALL_HEADERS("sapi/embed", "php_embed.h");
|
|
}
|