~ubuntu-branches/ubuntu/vivid/nettle/vivid-proposed

« back to all changes in this revision

Viewing changes to config.h.in

  • Committer: Package Import Robot
  • Author(s): Magnus Holmgren
  • Date: 2013-05-04 19:50:28 UTC
  • mfrom: (1.4.6) (3.1.11 experimental)
  • mto: This revision was merged to the branch mainline in revision 14.
  • Revision ID: package-import@ubuntu.com-20130504195028-fp6c9fw1tsm5scwa
Tags: 2.7-1
* New upstream release (Closes: #706081).
* Include watch file improvements from Bart Martens <bartm@debian.org>
  via the QA system.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
/* Define if building universal (internal helper macro) */
4
4
#undef AC_APPLE_UNIVERSAL_BUILD
5
5
 
 
6
/* The normal alignment of `uint64_t', in bytes. */
 
7
#undef ALIGNOF_UINT64_T
 
8
 
6
9
/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
7
10
   systems. This function is required for `alloca.c' support on those systems.
8
11
   */
18
21
   */
19
22
#undef HAVE_ALLOCA_H
20
23
 
21
 
/* Define to 1 if you have the `clock_gettime' function */
 
24
/* Define if clock_gettime is available */
22
25
#undef HAVE_CLOCK_GETTIME
23
26
 
24
27
/* Define if fcntl file locking is available */
45
48
/* Define if mpz_powm_sec is available (appeared in GMP-5) */
46
49
#undef HAVE_MPZ_POWM_SEC
47
50
 
 
51
/* Define to 1 each of the following for which a native (ie. CPU specific)
 
52
    implementation of the corresponding routine exists.  */
 
53
#undef HAVE_NATIVE_ecc_192_modp
 
54
#undef HAVE_NATIVE_ecc_192_redc
 
55
#undef HAVE_NATIVE_ecc_224_modp
 
56
#undef HAVE_NATIVE_ecc_224_redc
 
57
#undef HAVE_NATIVE_ecc_256_modp
 
58
#undef HAVE_NATIVE_ecc_256_redc
 
59
#undef HAVE_NATIVE_ecc_384_modp
 
60
#undef HAVE_NATIVE_ecc_384_redc
 
61
#undef HAVE_NATIVE_ecc_521_modp
 
62
#undef HAVE_NATIVE_ecc_521_redc
 
63
 
48
64
/* Define to 1 if you have the <openssl/aes.h> header file. */
49
65
#undef HAVE_OPENSSL_AES_H
50
66
 
184
200
#else /* defined __GNUC__ */
185
201
# if HAVE_ALLOCA_H
186
202
#  include <alloca.h>
 
203
# else
 
204
/* Needed for alloca on windows, also with gcc */
 
205
#  if HAVE_MALLOC_H
 
206
#   include <malloc.h>
 
207
#  endif
187
208
# endif
188
209
#endif
189
210
 
206
227
#endif
207
228
 
208
229
 
 
230
#if defined(__x86_64__) || defined(__arch64__)
 
231
# define HAVE_NATIVE_64_BIT 1
 
232
#else
209
233
/* Needs include of <limits.h> before use. */
210
 
#define HAVE_NATIVE_64_BIT (SIZEOF_LONG * CHAR_BIT >= 64)
 
234
# define HAVE_NATIVE_64_BIT (SIZEOF_LONG * CHAR_BIT >= 64)
 
235
#endif
211
236