1 2 3 4 5 6 7 8 9 10
|
// vim:ft=javascript
ARG_ENABLE("psr", "Enable psr support", "no");
if (PHP_PSR != "no") {
AC_DEFINE("HAVE_PSR", 1, "Have PSR Support");
EXTENSION("psr", "php_psr.c psr_cache.c psr_container.c psr_http_message.c psr_link.c psr_log.c psr_simple_cache.c psr_http_server_handler.c psr_http_server_middleware.c psr_http_factory.c psr_http_client.c psr_event_dispatcher.c");
ADD_FLAG("CFLAGS_PSR", "/D PHP_PSR_EXPORTS=1");
PHP_INSTALL_HEADERS("ext\\psr", "php_psr.h psr_cache.h psr_container.h psr_http_message.h psr_link.h psr_log.h psr_simple_cache.h psr_http_server_handler.h psr_http_server_middleware.h psr_http_factory.h psr_http_client.h psr_event_dispatcher.h")
}
|