ext-uv/config.w32

9 lines
320 B
Plaintext
Raw Normal View History

2012-06-18 15:32:15 +02:00
ARG_ENABLE("uv", "for uv support", "no");
if (PHP_UV != "no") {
2012-06-18 16:53:02 +02:00
if (CHECK_HEADER_ADD_INCLUDE("uv.h", "CFLAGS_UV", ".\\libuv\\include") && CHECK_LIB("uv.lib", "uv", PHP_UV, ".\\")) {
2012-06-18 15:32:15 +02:00
EXTENSION('uv', 'php_uv.c uv.c');
} else {
WARNING("uv not enabled; libraries and/or headers not found");
}
}