Overview
Comment: | Tclpkcs11 0.9.4 Updated to substitute Tcl shell variables prior to adding them to our build flags |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | release-0.9.4 |
Files: | files | file ages | folders |
SHA3-256: |
e1ac61eea8ba5601e92ba84f222b81b1 |
User & Date: | rkeene on 2010-10-11 00:28:09 |
Other Links: | manifest | tags |
Context
2010-10-11
| ||
00:31 | Tclpkcs11 0.9.5 Fixed bug with VERS not being substituted in configure script check-in: e57bf3dbc7 user: rkeene tags: release-0.9.5, trunk | |
00:28 | Tclpkcs11 0.9.4 Updated to substitute Tcl shell variables prior to adding them to our build flags check-in: e1ac61eea8 user: rkeene tags: release-0.9.4, trunk | |
00:18 | Tclpkcs11 0.9.3 check-in: 85a967cfa3 user: rkeene tags: release-0.9.3, trunk | |
Changes
Modified aclocal/tcl.m4 from [cce972d442] to [2724199821].
︙ | |||
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | + + + + | AC_DEFINE_UNQUOTED([MODULE_SCOPE], [static], [Define how to declare a function should only be visible to the current module]) if test "$TCL_SUPPORTS_STUBS" = "1"; then AC_DEFINE([USE_TCL_STUBS], [1], [Define if you are using the Tcl Stubs Mechanism]) TCL_STUB_LIB_SPEC="`eval echo "${TCL_STUB_LIB_SPEC}"`" LIBS="${LIBS} ${TCL_STUB_LIB_SPEC}" else TCL_LIB_SPEC="`eval echo "${TCL_LIB_SPEC}"`" LIBS="${LIBS} ${TCL_LIB_SPEC}" fi TCL_INCLUDE_SPEC="`eval echo "${TCL_INCLUDE_SPEC}"`" CFLAGS="${CFLAGS} ${TCL_INCLUDE_SPEC}" CPPFLAGS="${CPPFLAGS} ${TCL_INCLUDE_SPEC}" DEFS="${DEFS} ${TCL_DEFS}" AC_SUBST(LIBS) ]) |
Modified build/makearch.info from [9705771d4c] to [1aeb02884a].
︙ | |||
12 13 14 15 16 17 18 | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | - + | # 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) |
︙ |