Overview
Comment: | Updated to check for more tools when trying to strip |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
780725ae48ed7159a7fb82997dfe8fab |
User & Date: | rkeene on 2011-12-22 19:11:47 |
Other Links: | manifest | tags |
Context
2012-02-12
| ||
06:26 | Stopped reporting CKM_SHA1_RSA_PKCS as a supported mechanism -- it was never actually supported check-in: b673394c9a user: rkeene tags: trunk | |
2011-12-22
| ||
19:11 | Updated to check for more tools when trying to strip check-in: 780725ae48 user: rkeene tags: trunk | |
2011-09-08
| ||
03:48 | CACKey 0.6.5 check-in: ed5f20c85e user: rkeene tags: 0.6.5, trunk | |
Changes
Modified aclocal/dc_versionscript.m4 from [4ebe0b5820] to [6c65744637].
︙ | ︙ | |||
35 36 37 38 39 40 41 | fi ]) AC_DEFUN(DC_FIND_STRIP_AND_REMOVESYMS, [ SYMFILE="$1" dnl Determine how to strip executables | | | | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | fi ]) AC_DEFUN(DC_FIND_STRIP_AND_REMOVESYMS, [ SYMFILE="$1" dnl Determine how to strip executables AC_CHECK_TOOLS(OBJCOPY, objcopy gobjcopy, [false]) AC_CHECK_TOOLS(STRIP, strip gstrip, [false]) if test "x${STRIP}" = "xfalse"; then STRIP="${OBJCOPY}" fi WEAKENSYMS='true' REMOVESYMS='true' |
︙ | ︙ |