关于智能卡安装
while configh the smart card getting below error
checking for grep that handles long lines and -e... /bin/grep
检查egrep... /bin/grep -E 检查 ANSI C 头文件...否 检查 sys/types.h... 否 检查 sys/stat.h...否 检查 stdlib.h...否 检查 string.h...否 检查内存。h...否 检查 strings.h... 否 检查 inttypes.h... 否 检查 stdint.h...否 检查 unistd.h...没有 检查 ifdhandler.h 可用性...否 检查 ifdhandler.h 是否存在...否 检查 ifdhandler.h...否 配置:错误:ifdhandler.h 未找到,请安装 pcsc-lite 1.3.3 或更高版本,或使用 ./configure PCSC_CFLAGS=...
while configh the smart card getting below error
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... no
checking for sys/types.h... no
checking for sys/stat.h... no
checking for stdlib.h... no
checking for string.h... no
checking for memory.h... no
checking for strings.h... no
checking for inttypes.h... no
checking for stdint.h... no
checking for unistd.h... no
checking ifdhandler.h usability... no
checking ifdhandler.h presence... no
checking for ifdhandler.h... no
configure: error: ifdhandler.h not found, install pcsc-lite 1.3.3 or later, or use ./configure PCSC_CFLAGS=...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试安装 libpcsclite-dev 软件包(在 Karmic 上尝试过)。
Try installing libpcsclite-dev package (tried on Karmic).
看起来你没有任何头文件。您也不太可能正确安装
gcc
。尝试安装gcc
、glibc
等。我不知道你使用的是哪个发行版,但是在Ubuntu中,有一个名为build-essential<的包/code> 安装编译源代码包所需的一切。
或者,尝试为您的发行版找到一个二进制包。
Looks like you don't have any header files. It's unlikely you have
gcc
installed correctly, either. Try installinggcc
,glibc
, etc. I don't know which distro you're using, but in Ubuntu, there is a package calledbuild-essential
that installs everything you need to compile source packages.Alternatively, try to find a binary package for your distro.