diff --git a/ChangeLog b/ChangeLog index 8b1d9a9..39e43d2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,131 @@ +2015-03-03 15:56 marc + + * AUTHORS, ChangeLog, configure.ac, debian/changelog.in, + debian/control, debian/control.in, debian/rules, doc/doxyfile.in, + doc/makefile.am, libpcscxx.spec.in, makefile.am, + src/libpcscxx.pc.in, src/version.cxx: ported to new build system + +2014-12-11 10:00 marc + + * src/suisseid.hxx: another work around the mac 10.10 yosemite PCSC + bug, this time fix cryptoki; refs #34 + +2014-12-11 09:57 marc + + * src/suisseid.hxx: another work around the mac 10.10 yosemite PCSC + bug, this time fix cryptoki; refs #34 + +2014-12-11 09:06 marc + + * m4/ax_check_qt.m4, src/suisseid.hxx: another work around the mac + 10.10 yosemite PCSC bug, this time fix cryptoki; refs #34 + +2014-12-01 11:27 marc + + * src/suisseid.hxx: Apple Bug morte log; refs #34 + +2014-12-01 11:13 marc + + * src/suisseid.hxx: Apple Bug morte log; refs #34 + +2014-12-01 10:27 marc + + * src/pcsc.hxx: Apple Bug probably resolved with retry to reconnect + with SCARD_LEAVE_CARD; refs #34 + +2014-12-01 10:08 marc + + * src/pcsc.hxx: Apple Bug not resolved, retry to reconnect with + SCARD_LEAVE_CARD more than once (up to 100 times); refs #34 + +2014-12-01 09:08 marc + + * src/pcsc.hxx: Apple Bug not resolved, retry more than once (up to + 100 times); refs #34 + +2014-11-12 07:54 marc + + * src/pcsc.hxx: more log; refs #34 + +2014-11-11 16:02 marc + + * src/cryptoki.cxx: more log; refs #34 + +2014-11-11 16:00 marc + + * src/cryptoki.cxx: more log; refs #34 + +2014-11-11 15:57 marc + + * src/cryptoki.cxx: more log; refs #34 + +2014-11-11 14:09 marc + + * src/pcsc.hxx: workaround Mac OS X 10.10 PCSC bug; refs #34 + +2014-11-11 14:04 marc + + * src/pcsc.hxx: workaround Mac OS X 10.10 PCSC bug; refs #34 + +2014-11-11 13:56 marc + + * src/pcsc.hxx: workaround Mac OS X 10.10 PCSC bug; refs #34 + +2014-11-04 09:56 marc + + * configure.ac, m4/ax_check_qt.m4: some rearrangements; refs #33 + +2014-11-04 08:53 marc + + * ax_check_qt.m4, ax_cxx_compile_stdcxx_11.m4, configure.ac, + configure.in, m4, m4/ax_check_qt.m4, + m4/ax_cxx_compile_stdcxx_11.m4: some rearrangements; refs #33 + +2014-10-27 09:22 marc + + * ax_check_qt.m4, configure.in, doc/examples/makefile.am, + src/makefile.am: Missing -fPIC error in build of cardgui; refs + #33 + +2014-10-08 08:51 marc + + * ax_check_qt.m4: added qmake test; refs #33 + +2014-09-22 11:08 marc + + * configure.in: Somehow options disappear, i.e. -fPIC; refs #33 + +2014-09-19 09:04 marc + + * ax_check_qt.m4: need variables; refs #33 + +2014-09-19 08:23 marc + + * COPYING, INSTALL, ax_check_qt.m4, configure.in: much better qt + tests; refs #33 + +2014-09-16 08:32 marc + + * configure.in: corrected C++11-detection; refs #33 + +2014-09-16 08:24 marc + + * configure.in: better Qt detection; refs #33 + +2014-09-16 08:01 marc + + * src/pcsc.hxx: changed all long to DWORD, now corrected former + unsigned long; refs #33 + +2014-09-16 07:47 marc + + * src/cryptoki.hxx, src/pcsc.hxx: smaller bugfixes and type + adaptions; refs #33 + +2014-09-15 06:54 marc + + * src/openssl.hxx: forgotten return value; refs #33 + 2014-06-03 07:21 marc * src/cardos.hxx: diff --git a/README b/README index a213e0d..5538dba 100644 --- a/README +++ b/README @@ -3,4 +3,9 @@ C++ Library for accessing PCSC-lite, OpenSSL, PKCS#11 The Libraries for accessing smartcard tokens are written in ugly C, moving around pointers with no memory management. This library provides a simple and nice C++ wrapper around these libraries, so that -programmers can concentrate on functionality. \ No newline at end of file +programmers can concentrate on functionality. It offers general +support for PCSC-lite, OpenSSL, PKCS#11, plus specific functionality +for the SuisseID. + +Project homepage: +https://dev.marc.waeckerlin.org/redmine/projects/libpcscxx \ No newline at end of file diff --git a/configure.ac b/configure.ac index d90846d..5faf172 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ AC_CONFIG_MACRO_DIR([m4]) m4_define(x_package_name, libpcscxx) m4_define(x_major, 3) -m4_define(x_minor, 0) +m4_define(x_minor, 1) AC_ALIAS([AC_DEFINE_DIR], [AX_DEFINE_DIR]) AC_DEFUN([AX_DEFINE_DIR], [ diff --git a/debian/control.in b/debian/control.in index e4a9b18..5575cfd 100644 --- a/debian/control.in +++ b/debian/control.in @@ -1,7 +1,7 @@ Source: @PACKAGE_NAME@ Priority: extra Maintainer: @AUTHOR@ -Build-Depends: debhelper (>= 7), pkg-config, autotools-dev, doxygen, graphviz, lsb-release, libssl-dev, libpkcs11-helper1-dev, libpcsclite-dev, mrw-c++-dev +Build-Depends: debhelper (>= 7), pkg-config, autotools-dev, doxygen, graphviz, lsb-release, libssl-dev, libpkcs11-helper1-dev, libpcsclite-dev, mrw-c++-dev, qtbase5-dev Standards-Version: 3.8.1 Section: libs Homepage: https://dev.marc.waeckerlin.org/projects/libpcscxx