Check-in [9d554f2765]
Overview
Comment:CACKey 0.6.3

Fixed typo in last commit

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | 0.6.3
Files: files | file ages | folders
SHA1:9d554f27657b1ecef0884d444982eb417df2a795
User & Date: rkeene on 2011-09-08 01:51:31
Other Links: manifest | tags
Context
2011-09-08
03:01
CACKey 0.6.4

Moved determining how to weaken and strip symbols into an autoconf macro

Added support for stripping symbols to Mac OS X builds check-in: 521abe23e2 user: rkeene tags: trunk, 0.6.4

01:51
CACKey 0.6.3

Fixed typo in last commit check-in: 9d554f2765 user: rkeene tags: trunk, 0.6.3

01:47
CACKey 0.6.2

Updated to include sha1.c, md5.c, and asn1-x509.c in the cackey.c translation unit so that these symbols never get exported and conflict with existing programs

Updated to try harder to remove and weaken symbols from shared object check-in: 02f5cea2da user: rkeene tags: trunk, 0.6.2

Changes

Modified configure.ac from [9e35aba144] to [6faadc7dde].

     1         -AC_INIT(cackey, 0.6.2) 
            1  +AC_INIT(cackey, 0.6.3) 
     2      2   AC_CONFIG_HEADERS(config.h)
     3      3   
     4      4   dnl Locate standard tools
     5      5   AC_PROG_CC
     6      6   AC_PROG_MAKE_SET
     7      7   AC_PROG_INSTALL
     8      8   AC_AIX
................................................................................
    20     20   
    21     21   dnl Determine how to create static archives on this platform
    22     22   AC_CHECK_TOOL(AR, ar)
    23     23   AC_CHECK_TOOL(RANLIB, ranlib)
    24     24   
    25     25   dnl Determine how to strip executables
    26     26   AC_CHECK_TOOL(OBJCOPY, objcopy)
    27         -AC_CHECK_TOOL(STRIP, stripf, [$OBJCOPY])
           27  +AC_CHECK_TOOL(STRIP, strip, [$OBJCOPY])
    28     28   
    29     29   dnl Check for all required headers
    30     30   AC_CHECK_HEADERS(arpa/inet.h inttypes.h stdarg.h stdint.h stdio.h stdlib.h string.h sys/socket.h sys/types.h sys/un.h time.h unistd.h pthread.h zlib.h limits.h,,[
    31     31   	AC_WARN([Required header missing, compilation will likely fail.])
    32     32   ], [
    33     33   #ifdef HAVE_ARPA_INET_H
    34     34   #  include <arpa/inet.h>