Overview
Comment: | CACKey 0.7.9 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | ac7bd0bf8f1c6ad1e5d52b6a81d303516c380c9d |
User & Date: | rkeene on 2017-12-27 18:59:30 |
Other Links: | manifest | tags |
Context
2017-12-28
| ||
01:32 | Updated to support supplying an empty PIN command to be equivelant to unsetting check-in: 9043258dc4 user: rkeene tags: trunk | |
2017-12-27
| ||
18:59 | CACKey 0.7.9 check-in: ac7bd0bf8f user: rkeene tags: trunk | |
18:54 | Integrated dlmopen() wrapper library (not for general use) check-in: 59356166dc user: rkeene tags: trunk | |
Changes
Modified build/build.sh from [48fe009c68] to [a31dbc9e4b].
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#! /bin/sh find . -type f -name '.*.sw?' | xargs rm -f find . -type f -name '.nfs*' | xargs rm -f find . -type f -name '*~' | xargs rm -f if [ "${SNAPSHOT}" = "1" ]; then sed "s@\(AC_INIT([^)]*\))@\1.${VERS})@" configure.ac > configure.ac.new cat configure.ac.new > configure.ac rm -f configure.ac.new fi ./autogen.sh || exit 1 |
< < < < |
1 2 3 4 5 6 7 8 9 |
#! /bin/sh if [ "${SNAPSHOT}" = "1" ]; then sed "s@\(AC_INIT([^)]*\))@\1.${VERS})@" configure.ac > configure.ac.new cat configure.ac.new > configure.ac rm -f configure.ac.new fi ./autogen.sh || exit 1 |
Modified build/makearch.info from [921db724fc] to [35a20954f4].
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="cackey"
# This is the name of output files that should exist after configure
# procedures.
BINS="libcackey.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
|
| |
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="cackey" # This is the name of output files that should exist after configure # procedures. BINS="" # 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 |
Modified configure.ac from [a419c60439] to [e054aaf315].
1 2 3 4 5 6 7 8 |
AC_INIT(cackey, 0.7.8)
AC_CONFIG_HEADERS(config.h)
dnl Locate standard tools
AC_PROG_CC
AC_PROG_MAKE_SET
AC_PROG_INSTALL
AC_AIX
|
| |
1 2 3 4 5 6 7 8 |
AC_INIT(cackey, 0.7.9)
AC_CONFIG_HEADERS(config.h)
dnl Locate standard tools
AC_PROG_CC
AC_PROG_MAKE_SET
AC_PROG_INSTALL
AC_AIX
|