os/ossrv/ssl/libcrypto/src/crypto/opensslconf.h.in
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/* crypto/opensslconf.h.in */
sl@0
     2
sl@0
     3
/* Generate 80386 code? */
sl@0
     4
#undef I386_ONLY
sl@0
     5
sl@0
     6
#if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */
sl@0
     7
#if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR)
sl@0
     8
#define ENGINESDIR "/usr/local/lib/engines"
sl@0
     9
#define OPENSSLDIR "/usr/local/ssl"
sl@0
    10
#endif
sl@0
    11
#endif
sl@0
    12
sl@0
    13
#undef OPENSSL_UNISTD
sl@0
    14
#define OPENSSL_UNISTD <unistd.h>
sl@0
    15
sl@0
    16
#undef OPENSSL_EXPORT_VAR_AS_FUNCTION
sl@0
    17
sl@0
    18
#if defined(HEADER_IDEA_H) && !defined(IDEA_INT)
sl@0
    19
#define IDEA_INT unsigned int
sl@0
    20
#endif
sl@0
    21
sl@0
    22
#if defined(HEADER_MD2_H) && !defined(MD2_INT)
sl@0
    23
#define MD2_INT unsigned int
sl@0
    24
#endif
sl@0
    25
sl@0
    26
#if defined(HEADER_RC2_H) && !defined(RC2_INT)
sl@0
    27
/* I need to put in a mod for the alpha - eay */
sl@0
    28
#define RC2_INT unsigned int
sl@0
    29
#endif
sl@0
    30
sl@0
    31
#if defined(HEADER_RC4_H)
sl@0
    32
#if !defined(RC4_INT)
sl@0
    33
/* using int types make the structure larger but make the code faster
sl@0
    34
 * on most boxes I have tested - up to %20 faster. */
sl@0
    35
/*
sl@0
    36
 * I don't know what does "most" mean, but declaring "int" is a must on:
sl@0
    37
 * - Intel P6 because partial register stalls are very expensive;
sl@0
    38
 * - elder Alpha because it lacks byte load/store instructions;
sl@0
    39
 */
sl@0
    40
#define RC4_INT unsigned int
sl@0
    41
#endif
sl@0
    42
#if !defined(RC4_CHUNK)
sl@0
    43
/*
sl@0
    44
 * This enables code handling data aligned at natural CPU word
sl@0
    45
 * boundary. See crypto/rc4/rc4_enc.c for further details.
sl@0
    46
 */
sl@0
    47
#undef RC4_CHUNK
sl@0
    48
#endif
sl@0
    49
#endif
sl@0
    50
sl@0
    51
#if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG)
sl@0
    52
/* If this is set to 'unsigned int' on a DEC Alpha, this gives about a
sl@0
    53
 * %20 speed up (longs are 8 bytes, int's are 4). */
sl@0
    54
#ifndef DES_LONG
sl@0
    55
#define DES_LONG unsigned long
sl@0
    56
#endif
sl@0
    57
#endif
sl@0
    58
sl@0
    59
#if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H)
sl@0
    60
#define CONFIG_HEADER_BN_H
sl@0
    61
#undef BN_LLONG
sl@0
    62
sl@0
    63
/* Should we define BN_DIV2W here? */
sl@0
    64
sl@0
    65
/* Only one for the following should be defined */
sl@0
    66
/* The prime number generation stuff may not work when
sl@0
    67
 * EIGHT_BIT but I don't care since I've only used this mode
sl@0
    68
 * for debuging the bignum libraries */
sl@0
    69
#undef SIXTY_FOUR_BIT_LONG
sl@0
    70
#undef SIXTY_FOUR_BIT
sl@0
    71
#define THIRTY_TWO_BIT
sl@0
    72
#undef SIXTEEN_BIT
sl@0
    73
#undef EIGHT_BIT
sl@0
    74
#endif
sl@0
    75
sl@0
    76
#if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H)
sl@0
    77
#define CONFIG_HEADER_RC4_LOCL_H
sl@0
    78
/* if this is defined data[i] is used instead of *data, this is a %20
sl@0
    79
 * speedup on x86 */
sl@0
    80
#undef RC4_INDEX
sl@0
    81
#endif
sl@0
    82
sl@0
    83
#if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H)
sl@0
    84
#define CONFIG_HEADER_BF_LOCL_H
sl@0
    85
#undef BF_PTR
sl@0
    86
#endif /* HEADER_BF_LOCL_H */
sl@0
    87
sl@0
    88
#if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H)
sl@0
    89
#define CONFIG_HEADER_DES_LOCL_H
sl@0
    90
#ifndef DES_DEFAULT_OPTIONS
sl@0
    91
/* the following is tweaked from a config script, that is why it is a
sl@0
    92
 * protected undef/define */
sl@0
    93
#ifndef DES_PTR
sl@0
    94
#undef DES_PTR
sl@0
    95
#endif
sl@0
    96
sl@0
    97
/* This helps C compiler generate the correct code for multiple functional
sl@0
    98
 * units.  It reduces register dependancies at the expense of 2 more
sl@0
    99
 * registers */
sl@0
   100
#ifndef DES_RISC1
sl@0
   101
#undef DES_RISC1
sl@0
   102
#endif
sl@0
   103
sl@0
   104
#ifndef DES_RISC2
sl@0
   105
#undef DES_RISC2
sl@0
   106
#endif
sl@0
   107
sl@0
   108
#if defined(DES_RISC1) && defined(DES_RISC2)
sl@0
   109
YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!!
sl@0
   110
#endif
sl@0
   111
sl@0
   112
/* Unroll the inner loop, this sometimes helps, sometimes hinders.
sl@0
   113
 * Very mucy CPU dependant */
sl@0
   114
#ifndef DES_UNROLL
sl@0
   115
#undef DES_UNROLL
sl@0
   116
#endif
sl@0
   117
sl@0
   118
/* These default values were supplied by
sl@0
   119
 * Peter Gutman <pgut001@cs.auckland.ac.nz>
sl@0
   120
 * They are only used if nothing else has been defined */
sl@0
   121
#if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL)
sl@0
   122
/* Special defines which change the way the code is built depending on the
sl@0
   123
   CPU and OS.  For SGI machines you can use _MIPS_SZLONG (32 or 64) to find
sl@0
   124
   even newer MIPS CPU's, but at the moment one size fits all for
sl@0
   125
   optimization options.  Older Sparc's work better with only UNROLL, but
sl@0
   126
   there's no way to tell at compile time what it is you're running on */
sl@0
   127
 
sl@0
   128
#if defined( sun )		/* Newer Sparc's */
sl@0
   129
#  define DES_PTR
sl@0
   130
#  define DES_RISC1
sl@0
   131
#  define DES_UNROLL
sl@0
   132
#elif defined( __ultrix )	/* Older MIPS */
sl@0
   133
#  define DES_PTR
sl@0
   134
#  define DES_RISC2
sl@0
   135
#  define DES_UNROLL
sl@0
   136
#elif defined( __osf1__ )	/* Alpha */
sl@0
   137
#  define DES_PTR
sl@0
   138
#  define DES_RISC2
sl@0
   139
#elif defined ( _AIX )		/* RS6000 */
sl@0
   140
  /* Unknown */
sl@0
   141
#elif defined( __hpux )		/* HP-PA */
sl@0
   142
  /* Unknown */
sl@0
   143
#elif defined( __aux )		/* 68K */
sl@0
   144
  /* Unknown */
sl@0
   145
#elif defined( __dgux )		/* 88K (but P6 in latest boxes) */
sl@0
   146
#  define DES_UNROLL
sl@0
   147
#elif defined( __sgi )		/* Newer MIPS */
sl@0
   148
#  define DES_PTR
sl@0
   149
#  define DES_RISC2
sl@0
   150
#  define DES_UNROLL
sl@0
   151
#elif defined(i386) || defined(__i386__)	/* x86 boxes, should be gcc */
sl@0
   152
#  define DES_PTR
sl@0
   153
#  define DES_RISC1
sl@0
   154
#  define DES_UNROLL
sl@0
   155
#endif /* Systems-specific speed defines */
sl@0
   156
#endif
sl@0
   157
sl@0
   158
#endif /* DES_DEFAULT_OPTIONS */
sl@0
   159
#endif /* HEADER_DES_LOCL_H */