Initial commit of the PC/SC (pcsc) extension. There is some stuff that needs to be romoved like the build.sh script and the subfolders tmp/ and php/.

I think the .m4 file has some bugs because it fails to build without my weird build.sh script. I will fix that ASAP.



git-svn-id: https://svn.php.net/repository/pecl/pcsc/trunk@320951 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Johannes Findeisen 2011-12-13 16:57:24 +00:00
commit 8db0824d92
11 changed files with 1306 additions and 0 deletions

24
build.sh Executable file
View file

@ -0,0 +1,24 @@
#!/bin/bash
#echo "Cleaning up ...\n"
make clean
phpize --clean
#echo "Compile package...\n"
phpize
aclocal
libtoolize --force
autoheader
autoconf
#echo "Configure package...\n"
./configure --enable-pcsc --prefix=/usr
make
#echo "Now type su and the make install...\n"