TclPKCS11

Check-in [8e5c0ef367]
Login

Check-in [8e5c0ef367]

Overview
Comment:TclPKCS 0.9.13 with many build-related cleanups
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk | release-0.9.13
Files: files | file ages | folders
SHA3-256: 8e5c0ef367d5d1842f4b57265af0f270f4945866457e09b509e53beb95ae3b41
User & Date: rkeene on 2019-06-12 21:52:13.346
Other Links: manifest | tags
Context
2023-05-26
23:46
Support listing keys check-in: 53e9d23ecb user: rkeene tags: trunk
2019-06-12
21:52
TclPKCS 0.9.13 with many build-related cleanups check-in: 8e5c0ef367 user: rkeene tags: release-0.9.13, trunk
21:22
Upload to Fossil check-in: a02466420d user: rkeene tags: trunk
Changes
12
13
14
15
16
17
18
19

20
21
22
23
24
25
26
27
28
29
30
31
32

33
34
35
36
37
38
39
12
13
14
15
16
17
18

19
20
21
22
23
24
25
26
27
28
29
30
31

32
33
34
35
36
37
38
39







-
+












-
+







# If set to "auto" it will be maintained in a file called .version
# in the source directory and the revision will be incremented
# each time a "makearch" is done.
#
# If @@SVNLCR@@ is used anywhere in this version number, it will be
# replaced with the highest last-changed-rev from the output of
#   svn info -R    (or 0)
VERS="0.9.12"
VERS=""

# Space sperated list of documents, if they exist, they will be
# prefixed with the contents of the DOC_HDR file and substitution
# will occur:
#     @@UTIL@@ becomes the utility name ${UTIL}
#     @@VERS@@ becomes the utility version
#     @@DATE@@ becomes the current date
DOCS="README"
DOC_HDR="HEADER"

# These files follow the same convention as DOCS, but don't have the header
# tacked onto them.
UPDATE_VARS="configure.ac"
UPDATE_VARS=""

# This script is executed immediately after copying the files
# to a temp directory to attempt to compile
BEFORE="build/pre.sh"

# This script is executed immediately prior to creation of the
# tarball
1
2

3
4
5
6
7
8
9
1

2
3
4
5
6
7
8
9

-
+







dnl Define ourselves
AC_INIT(tclpkcs11, @@VERS@@)
AC_INIT(tclpkcs11, 0.9.13)

dnl Checks for programs.
AC_PROG_CC
AC_PROG_MAKE_SET
AC_PROG_INSTALL
AC_GNU_SOURCE

1










1
2
3
4
5
6
7
8
9
-
+
+
+
+
+
+
+
+
+
package ifneeded pki::pkcs11 @PACKAGE_VERSION@ [list load [file join $dir tclpkcs11.@SHOBJEXT@] Tclpkcs11]
package ifneeded pki::pkcs11 @PACKAGE_VERSION@ [list apply {{dir} {
	if {{@TCLEXT_BUILD@} eq "shared"} {
		set toLoad [file join $dir @EXTENSION_TARGET@]
	} else {
		set toLoad ""
	}

	load $toLoad Tclpkcs11
}} $dir]