Overview
Comment: | Added pre-release script Fixed issue with sanity check |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
712876ec1cba9110e36e4d7e74597410 |
User & Date: | rkeene on 2010-10-10 18:06:12 |
Other Links: | manifest | tags |
Context
2010-10-10
| ||
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 | |
18:04 | Added Makearch header file check-in: c7822f2b4c user: rkeene tags: trunk | |
Changes
Modified build/makearch.info from [bd1060c8f8] to [8d5d35d9b7].
1 2 3 4 5 | # 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. | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # 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="" # 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 |
︙ | ︙ | |||
29 30 31 32 33 34 35 | # These files follow the same convention as DOCS, but don't have the header # tacked onto them. UPDATE_VARS="" # This script is executed immediately after copying the files # to a temp directory to attempt to compile | | | 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | # These files follow the same convention as DOCS, but don't have the header # tacked onto them. 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 AFTER="" # Files matching these (space-seperated) patterns are deleted TMPS="*.out HEADER build work" |
Added build/pre.sh version [6745dcefa1].
> > > > > | 1 2 3 4 5 | #! /bin/bash ./build/autogen.sh exit 0 |