Overview
Comment: | Updated to create a pkgIndex.tcl from the configure script |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
b579486d80e02309a35dbfb3bf841ca8 |
User & Date: | rkeene on 2010-10-10 19:10:07 |
Other Links: | manifest | tags |
Context
2010-10-10
| ||
21:38 | Removed old define check-in: 66f35eca87 user: rkeene tags: trunk | |
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 | |
Changes
Modified .fossil-settings/ignore-glob from [20b4ecb072] to [ed8fde982f].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | Makefile Makefile/* aclocal.m4 aclocal.m4/* autom4te.cache autom4te.cache/* config.log config.log/* config.status config.status/* configure configure/* tclpkcs11.dll tclpkcs11.dll.a tclpkcs11.dll.a/* tclpkcs11.dll.def tclpkcs11.dll.def/* tclpkcs11.dll/* tclpkcs11.so | > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | Makefile Makefile/* aclocal.m4 aclocal.m4/* autom4te.cache autom4te.cache/* config.log config.log/* config.status config.status/* configure configure/* pkgIndex.tcl pkgIndex.tcl/* tclpkcs11.dll tclpkcs11.dll.a tclpkcs11.dll.a/* tclpkcs11.dll.def tclpkcs11.dll.def/* tclpkcs11.dll/* tclpkcs11.so |
︙ | ︙ |
Modified Makefile.in from [f7847be45f] to [87117fe1b6].
︙ | ︙ | |||
15 16 17 18 19 20 21 22 23 24 | clean: rm -f tclpkcs11.@SHOBJEXT@ tclpkcs11.o rm -f tclpkcs11.@SHOBJEXT@.a tclpkcs11.@SHOBJEXT@.def distclean: clean rm -rf autom4te.cache rm -f config.log config.status rm -f Makefile .PHONY: all clean distclean | > | 15 16 17 18 19 20 21 22 23 24 25 | clean: rm -f tclpkcs11.@SHOBJEXT@ tclpkcs11.o rm -f tclpkcs11.@SHOBJEXT@.a tclpkcs11.@SHOBJEXT@.def distclean: clean rm -rf autom4te.cache rm -f config.log config.status rm -f pkgIndex.tcl rm -f Makefile .PHONY: all clean distclean |
Modified build/makearch.info from [8d5d35d9b7] to [e6e1ac62c7].
1 2 3 4 5 6 7 8 | # This is the name of the utility, it will be prefixed to the tarball name UTIL="tclpkcs11" # This is the name of output files that should exist after configure # procedures. BINS="tclpkcs11.so" # This lists the name of files that are required to exist | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | # This is the name of the utility, it will be prefixed to the tarball name UTIL="tclpkcs11" # This is the name of output files that should exist after configure # procedures. BINS="tclpkcs11.so" # This lists the name of files that are required to exist REQS="pkgIndex.tcl" # Version of utility, if empty it will be guessed. # 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 |
︙ | ︙ |
Modified configure.ac from [c5cbcefa78] to [a053043227].
︙ | ︙ | |||
22 23 24 25 26 27 28 | ]) AC_CHECK_FUNCS(dlopen shl_load) dnl Look for appropriate headers AC_CHECK_HEADERS(unistd.h stdlib.h string.h strings.h dlfcn.h dl.h) dnl Produce output | | | 22 23 24 25 26 27 28 29 | ]) AC_CHECK_FUNCS(dlopen shl_load) dnl Look for appropriate headers AC_CHECK_HEADERS(unistd.h stdlib.h string.h strings.h dlfcn.h dl.h) dnl Produce output AC_OUTPUT(Makefile pkgIndex.tcl) |
Added pkgIndex.tcl.in version [812a044170].
> | 1 | package ifneeded pki::pkcs11 @PACKAGE_VERSION@ [list load [file join $dir tclpkcs11.@SHOBJEXT@] Tclpkcs11] |