os/ossrv/ssl/libcrypto/src/crypto/opensslconf.h.in
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/ssl/libcrypto/src/crypto/opensslconf.h.in	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,159 @@
     1.4 +/* crypto/opensslconf.h.in */
     1.5 +
     1.6 +/* Generate 80386 code? */
     1.7 +#undef I386_ONLY
     1.8 +
     1.9 +#if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */
    1.10 +#if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR)
    1.11 +#define ENGINESDIR "/usr/local/lib/engines"
    1.12 +#define OPENSSLDIR "/usr/local/ssl"
    1.13 +#endif
    1.14 +#endif
    1.15 +
    1.16 +#undef OPENSSL_UNISTD
    1.17 +#define OPENSSL_UNISTD <unistd.h>
    1.18 +
    1.19 +#undef OPENSSL_EXPORT_VAR_AS_FUNCTION
    1.20 +
    1.21 +#if defined(HEADER_IDEA_H) && !defined(IDEA_INT)
    1.22 +#define IDEA_INT unsigned int
    1.23 +#endif
    1.24 +
    1.25 +#if defined(HEADER_MD2_H) && !defined(MD2_INT)
    1.26 +#define MD2_INT unsigned int
    1.27 +#endif
    1.28 +
    1.29 +#if defined(HEADER_RC2_H) && !defined(RC2_INT)
    1.30 +/* I need to put in a mod for the alpha - eay */
    1.31 +#define RC2_INT unsigned int
    1.32 +#endif
    1.33 +
    1.34 +#if defined(HEADER_RC4_H)
    1.35 +#if !defined(RC4_INT)
    1.36 +/* using int types make the structure larger but make the code faster
    1.37 + * on most boxes I have tested - up to %20 faster. */
    1.38 +/*
    1.39 + * I don't know what does "most" mean, but declaring "int" is a must on:
    1.40 + * - Intel P6 because partial register stalls are very expensive;
    1.41 + * - elder Alpha because it lacks byte load/store instructions;
    1.42 + */
    1.43 +#define RC4_INT unsigned int
    1.44 +#endif
    1.45 +#if !defined(RC4_CHUNK)
    1.46 +/*
    1.47 + * This enables code handling data aligned at natural CPU word
    1.48 + * boundary. See crypto/rc4/rc4_enc.c for further details.
    1.49 + */
    1.50 +#undef RC4_CHUNK
    1.51 +#endif
    1.52 +#endif
    1.53 +
    1.54 +#if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG)
    1.55 +/* If this is set to 'unsigned int' on a DEC Alpha, this gives about a
    1.56 + * %20 speed up (longs are 8 bytes, int's are 4). */
    1.57 +#ifndef DES_LONG
    1.58 +#define DES_LONG unsigned long
    1.59 +#endif
    1.60 +#endif
    1.61 +
    1.62 +#if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H)
    1.63 +#define CONFIG_HEADER_BN_H
    1.64 +#undef BN_LLONG
    1.65 +
    1.66 +/* Should we define BN_DIV2W here? */
    1.67 +
    1.68 +/* Only one for the following should be defined */
    1.69 +/* The prime number generation stuff may not work when
    1.70 + * EIGHT_BIT but I don't care since I've only used this mode
    1.71 + * for debuging the bignum libraries */
    1.72 +#undef SIXTY_FOUR_BIT_LONG
    1.73 +#undef SIXTY_FOUR_BIT
    1.74 +#define THIRTY_TWO_BIT
    1.75 +#undef SIXTEEN_BIT
    1.76 +#undef EIGHT_BIT
    1.77 +#endif
    1.78 +
    1.79 +#if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H)
    1.80 +#define CONFIG_HEADER_RC4_LOCL_H
    1.81 +/* if this is defined data[i] is used instead of *data, this is a %20
    1.82 + * speedup on x86 */
    1.83 +#undef RC4_INDEX
    1.84 +#endif
    1.85 +
    1.86 +#if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H)
    1.87 +#define CONFIG_HEADER_BF_LOCL_H
    1.88 +#undef BF_PTR
    1.89 +#endif /* HEADER_BF_LOCL_H */
    1.90 +
    1.91 +#if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H)
    1.92 +#define CONFIG_HEADER_DES_LOCL_H
    1.93 +#ifndef DES_DEFAULT_OPTIONS
    1.94 +/* the following is tweaked from a config script, that is why it is a
    1.95 + * protected undef/define */
    1.96 +#ifndef DES_PTR
    1.97 +#undef DES_PTR
    1.98 +#endif
    1.99 +
   1.100 +/* This helps C compiler generate the correct code for multiple functional
   1.101 + * units.  It reduces register dependancies at the expense of 2 more
   1.102 + * registers */
   1.103 +#ifndef DES_RISC1
   1.104 +#undef DES_RISC1
   1.105 +#endif
   1.106 +
   1.107 +#ifndef DES_RISC2
   1.108 +#undef DES_RISC2
   1.109 +#endif
   1.110 +
   1.111 +#if defined(DES_RISC1) && defined(DES_RISC2)
   1.112 +YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!!
   1.113 +#endif
   1.114 +
   1.115 +/* Unroll the inner loop, this sometimes helps, sometimes hinders.
   1.116 + * Very mucy CPU dependant */
   1.117 +#ifndef DES_UNROLL
   1.118 +#undef DES_UNROLL
   1.119 +#endif
   1.120 +
   1.121 +/* These default values were supplied by
   1.122 + * Peter Gutman <pgut001@cs.auckland.ac.nz>
   1.123 + * They are only used if nothing else has been defined */
   1.124 +#if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL)
   1.125 +/* Special defines which change the way the code is built depending on the
   1.126 +   CPU and OS.  For SGI machines you can use _MIPS_SZLONG (32 or 64) to find
   1.127 +   even newer MIPS CPU's, but at the moment one size fits all for
   1.128 +   optimization options.  Older Sparc's work better with only UNROLL, but
   1.129 +   there's no way to tell at compile time what it is you're running on */
   1.130 + 
   1.131 +#if defined( sun )		/* Newer Sparc's */
   1.132 +#  define DES_PTR
   1.133 +#  define DES_RISC1
   1.134 +#  define DES_UNROLL
   1.135 +#elif defined( __ultrix )	/* Older MIPS */
   1.136 +#  define DES_PTR
   1.137 +#  define DES_RISC2
   1.138 +#  define DES_UNROLL
   1.139 +#elif defined( __osf1__ )	/* Alpha */
   1.140 +#  define DES_PTR
   1.141 +#  define DES_RISC2
   1.142 +#elif defined ( _AIX )		/* RS6000 */
   1.143 +  /* Unknown */
   1.144 +#elif defined( __hpux )		/* HP-PA */
   1.145 +  /* Unknown */
   1.146 +#elif defined( __aux )		/* 68K */
   1.147 +  /* Unknown */
   1.148 +#elif defined( __dgux )		/* 88K (but P6 in latest boxes) */
   1.149 +#  define DES_UNROLL
   1.150 +#elif defined( __sgi )		/* Newer MIPS */
   1.151 +#  define DES_PTR
   1.152 +#  define DES_RISC2
   1.153 +#  define DES_UNROLL
   1.154 +#elif defined(i386) || defined(__i386__)	/* x86 boxes, should be gcc */
   1.155 +#  define DES_PTR
   1.156 +#  define DES_RISC1
   1.157 +#  define DES_UNROLL
   1.158 +#endif /* Systems-specific speed defines */
   1.159 +#endif
   1.160 +
   1.161 +#endif /* DES_DEFAULT_OPTIONS */
   1.162 +#endif /* HEADER_DES_LOCL_H */