This commit is contained in:
parent
d75ded3da6
commit
aa3e483978
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:3147c7dab05cd3aa4e473b6ab6e8f2bf74e2c5b1611b0e395bf258dba29c173e
|
|
||||||
size 464881
|
|
3
pcsc-lite-1.4.102.tar.bz2
Normal file
3
pcsc-lite-1.4.102.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:56fc9e6324539537324b071e5b51c3388df9bfa92fb7e210b989b463122fc333
|
||||||
|
size 460324
|
@ -1,3 +1,25 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Sep 10 14:54:11 CEST 2008 - sbrabec@suse.cz
|
||||||
|
|
||||||
|
- Updated to version 1.4.102:
|
||||||
|
* pcscd -v now displays enabled features
|
||||||
|
* add support of SCARD_AUTOALLOCATE in SCardListReaders(),
|
||||||
|
SCardListReaderGroups() and SCardGetAttrib
|
||||||
|
* add SCardFreeMemory()
|
||||||
|
* try to use the reader polling thread also for the other slots
|
||||||
|
on a multi-slots reader
|
||||||
|
* solve a possible crash with SCardCancel() in multithreading
|
||||||
|
environment
|
||||||
|
* SCardConnect(), SCardReconnect(): do not check the parameter
|
||||||
|
dwPreferredProtocols if dwShareMode == SCARD_SHARE_DIRECT
|
||||||
|
* better support of driver termination (when pcscd exits)
|
||||||
|
* kill the driver polling thread only if the driver supports it.
|
||||||
|
* support for fork(). Handles are now invalid in the child
|
||||||
|
process.
|
||||||
|
* SCardStatus() returns SCARD_W_REMOVED_CARD instead of
|
||||||
|
SCARD_W_RESET_CARD when a card has been removed and inserted
|
||||||
|
* some other minor improvements and bug corrections
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 22 08:13:07 CEST 2008 - lnussel@suse.de
|
Fri Aug 22 08:13:07 CEST 2008 - lnussel@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package pcsc-lite (Version 1.4.100)
|
# spec file for package pcsc-lite (Version 1.4.102)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -24,8 +24,8 @@ Name: pcsc-lite
|
|||||||
BuildRequires: hal-devel pkg-config readline-devel
|
BuildRequires: hal-devel pkg-config readline-devel
|
||||||
# For directory ownership:
|
# For directory ownership:
|
||||||
BuildRequires: udev
|
BuildRequires: udev
|
||||||
Version: 1.4.100
|
Version: 1.4.102
|
||||||
Release: 49
|
Release: 1
|
||||||
PreReq: %{insserv_prereq} %{fillup_prereq}
|
PreReq: %{insserv_prereq} %{fillup_prereq}
|
||||||
# For upgrade from <= SLES9:
|
# For upgrade from <= SLES9:
|
||||||
PreReq: coreutils
|
PreReq: coreutils
|
||||||
@ -92,7 +92,8 @@ cp -a %{S:2} .
|
|||||||
ACLOCAL="aclocal -I m4" autoreconf -f -i
|
ACLOCAL="aclocal -I m4" autoreconf -f -i
|
||||||
%configure\
|
%configure\
|
||||||
--docdir=%{_docdir}/%{name}\
|
--docdir=%{_docdir}/%{name}\
|
||||||
--enable-usbdropdir=%{ifddir}
|
--enable-usbdropdir=%{ifddir}\
|
||||||
|
--disable-static
|
||||||
make %{?jobs:-j%jobs}
|
make %{?jobs:-j%jobs}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
@ -104,9 +105,6 @@ install src/.libs/testpcsc $RPM_BUILD_ROOT%{_sbindir}/
|
|||||||
mkdir $RPM_BUILD_ROOT/etc/init.d
|
mkdir $RPM_BUILD_ROOT/etc/init.d
|
||||||
install -m 755 %{S:1} $RPM_BUILD_ROOT/etc/init.d/pcscd
|
install -m 755 %{S:1} $RPM_BUILD_ROOT/etc/init.d/pcscd
|
||||||
ln -sf ../../etc/init.d/pcscd $RPM_BUILD_ROOT%{_sbindir}/rcpcscd
|
ln -sf ../../etc/init.d/pcscd $RPM_BUILD_ROOT%{_sbindir}/rcpcscd
|
||||||
#rm -r $RPM_BUILD_ROOT/usr/doc
|
|
||||||
# formaticc is no more provided
|
|
||||||
#rm $RPM_BUILD_ROOT%{_mandir}/man1/formaticc.1*
|
|
||||||
# For upgrade from <= SLES9:
|
# For upgrade from <= SLES9:
|
||||||
touch $RPM_BUILD_ROOT%{_sysconfdir}/reader.conf.d/old-reader.conf
|
touch $RPM_BUILD_ROOT%{_sysconfdir}/reader.conf.d/old-reader.conf
|
||||||
mkdir -p $RPM_BUILD_ROOT/etc/udev/rules.d
|
mkdir -p $RPM_BUILD_ROOT/etc/udev/rules.d
|
||||||
@ -161,6 +159,25 @@ fi
|
|||||||
%{_libdir}/pkgconfig/*.pc
|
%{_libdir}/pkgconfig/*.pc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Sep 10 2008 sbrabec@suse.cz
|
||||||
|
- Updated to version 1.4.102:
|
||||||
|
* pcscd -v now displays enabled features
|
||||||
|
* add support of SCARD_AUTOALLOCATE in SCardListReaders(),
|
||||||
|
SCardListReaderGroups() and SCardGetAttrib
|
||||||
|
* add SCardFreeMemory()
|
||||||
|
* try to use the reader polling thread also for the other slots
|
||||||
|
on a multi-slots reader
|
||||||
|
* solve a possible crash with SCardCancel() in multithreading
|
||||||
|
environment
|
||||||
|
* SCardConnect(), SCardReconnect(): do not check the parameter
|
||||||
|
dwPreferredProtocols if dwShareMode == SCARD_SHARE_DIRECT
|
||||||
|
* better support of driver termination (when pcscd exits)
|
||||||
|
* kill the driver polling thread only if the driver supports it.
|
||||||
|
* support for fork(). Handles are now invalid in the child
|
||||||
|
process.
|
||||||
|
* SCardStatus() returns SCARD_W_REMOVED_CARD instead of
|
||||||
|
SCARD_W_RESET_CARD when a card has been removed and inserted
|
||||||
|
* some other minor improvements and bug corrections
|
||||||
* Fri Aug 22 2008 lnussel@suse.de
|
* Fri Aug 22 2008 lnussel@suse.de
|
||||||
- remove resmgr from BuildRequires
|
- remove resmgr from BuildRequires
|
||||||
* Thu Apr 10 2008 ro@suse.de
|
* Thu Apr 10 2008 ro@suse.de
|
||||||
|
Loading…
x
Reference in New Issue
Block a user