Overview
| Comment: | Updated unload to be more forgiving about the state of the PKCS11 module Fixed issue with determining flags for dynamic linking |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
634ecd11da517acd9eeb11165c53a218 |
| User & Date: | rkeene on 2010-10-10 19:05:39.000 |
| Other Links: | manifest | tags |
Context
|
2010-10-10
| ||
| 19:10 | Updated to create a pkgIndex.tcl from the configure script check-in: b579486d80 user: rkeene tags: trunk | |
| 19:05 | Updated unload to be more forgiving about the state of the PKCS11 module Fixed issue with determining flags for dynamic linking check-in: 634ecd11da user: rkeene tags: trunk | |
| 18:06 | Added pre-release script Fixed issue with sanity check check-in: 712876ec1c user: rkeene tags: trunk | |
Changes
Modified configure.ac
from [6386d49ecc]
to [c5cbcefa78].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | + + + - - - | dnl Define ourselves AC_INIT(tclpkcs11, 1.0) dnl Checks for programs. AC_PROG_CC AC_PROG_MAKE_SET AC_PROG_INSTALL AC_GNU_SOURCE dnl Determine system information DC_CHK_OS_INFO dnl Determine how to make shared objects DC_GET_SHOBJFLAGS dnl Perform Tcl Extension required stuff TCLEXT_INIT |
| ︙ |
Modified tclpkcs11.c
from [c3ee986c0c]
to [428601fccc].
| ︙ | |||
621 622 623 624 625 626 627 | 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 | - + - - - - - - + - - - - - |
if (!handle) {
Tcl_SetObjResult(interp, Tcl_NewStringObj("invalid handle", -1));
return(TCL_ERROR);
}
/* Log out of the PKCS11 module */
|
| ︙ |