Overview
Comment: | Updated email address in CACKey for OSX Build Script |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
003e5de0f04d65f8a626e2d5ef46f628 |
User & Date: | kvanals on 2012-07-30 16:02:51 |
Other Links: | manifest | tags |
Context
2013-01-15
| ||
14:11 | Updated debugging messages to be written in a single fprintf() call in an attempt to avoid having them intermingled when written from multiple threads check-in: 402217513a user: rkeene tags: trunk | |
2013-01-10
| ||
01:00 | Began adding PIV support check-in: 1494008def user: rkeene tags: piv | |
2012-07-30
| ||
16:02 | Updated email address in CACKey for OSX Build Script check-in: 003e5de0f0 user: kvanals tags: trunk | |
05:07 | Moved copying in of automake/autoconf files to autogen from build check-in: 2086fbe318 user: rkeene tags: trunk | |
Changes
Modified build/cackey_osx_build/build_osx.sh from [04fe9e319d] to [7f1f41f856].
1 2 3 | #!/bin/bash # Shell Script to make Mac OS X Releases of CACKey # Kenneth Van Alstyne | | | 1 2 3 4 5 6 7 8 9 10 11 | #!/bin/bash # Shell Script to make Mac OS X Releases of CACKey # Kenneth Van Alstyne # kenneth.vanalstyne@associates.hq.dhs.gov CACKEY_VERSION=`cat configure.ac | grep AC_INIT | cut -d " " -f 2 | sed 's_)__'` # Check to see if we're building on Mac OS X 10.7 "Lion" if [ "`uname -r | cut -d . -f 1`" = "11" ]; then LIONBUILD=1 fi |
︙ | ︙ |