Overview
| Comment: | Moved Tcl initialization to the end |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
feb8e3ae9f87e84decef114060af224d |
| User & Date: | rkeene on 2010-10-10 22:43:14.000 |
| Other Links: | manifest | tags |
Context
|
2010-10-10
| ||
| 23:15 | Updated to bind all references immediately in dlopen Updated to use "--" to end options when calling PKI check-in: 88fe253dd1 user: rkeene tags: trunk | |
| 22:43 | Moved Tcl initialization to the end check-in: feb8e3ae9f user: rkeene tags: trunk | |
| 22:30 | Tclpkcs11 0.9 check-in: da10f287f3 user: rkeene tags: trunk | |
Changes
Modified configure.ac
from [da6ddc9666]
to [a7149bda1f].
| ︙ | ︙ | |||
9 10 11 12 13 14 15 | dnl Determine system information DC_CHK_OS_INFO dnl Determine how to make shared objects DC_GET_SHOBJFLAGS | < < < > > > | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | dnl Determine system information DC_CHK_OS_INFO dnl Determine how to make shared objects DC_GET_SHOBJFLAGS dnl Find out if we have the functions needed to open shared objects AC_SEARCH_LIBS(dlopen, dl,, [ AC_SEARCH_LIBS(shl_load, dld dl) ]) 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 Perform Tcl Extension required stuff TCLEXT_INIT dnl Produce output AC_OUTPUT(Makefile pkgIndex.tcl) |