added w32 support; thanks to Goker Cetin: please test this stuff since i don't use windows OS

git-svn-id: https://svn.php.net/repository/pecl/pcsc/trunk@330078 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Johannes Findeisen 2013-04-11 17:55:27 +00:00
commit a6d9a70013
2 changed files with 10 additions and 1 deletions

7
config.w32 Executable file
View file

@ -0,0 +1,7 @@
ARG_WITH("pcsc", "PC/SC Support", "no");
if (PHP_PCSC != "no") {
// DEFINE("LIBS", "kernel32.lib ole32.lib user32.lib advapi32.lib shell32.lib ws2_32.lib Dnsapi.lib");
ADD_FLAG("LIBS","winscard.lib");
EXTENSION("pcsc", "pcsc.c", $ext_shared);
PHP_INSTALL_HEADERS([php_pcsc.h]);
}