1// vim:ft=javascript
2
3ARG_ENABLE("psr", "Enable psr support", "no");
4
5if (PHP_PSR != "no") {
6    AC_DEFINE("HAVE_PSR", 1, "Have PSR Support");
7    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");
8    ADD_FLAG("CFLAGS_PSR", "/D PHP_PSR_EXPORTS=1");
9    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")
10}
11