From bd84657c519e66e6c6059f63d7c3e648c588e678 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Mon, 10 Feb 2014 21:20:53 +0000 Subject: [PATCH] fixed config.w32 git-svn-id: https://svn.php.net/repository/pecl/pcsc/trunk@332823 c90b9560-bf6c-de11-be94-00142212c4b1 --- config.w32 | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/config.w32 b/config.w32 index 2bc70db..788e138 100755 --- a/config.w32 +++ b/config.w32 @@ -1,7 +1,8 @@ + 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]); -} \ No newline at end of file + EXTENSION("pcsc", "pcsc.c"); + PHP_INSTALL_HEADERS("ext/pcsc", "php_pcsc.h"); +}