PIVX Core  5.6.99
P2P Digital Currency
libsecp256k1-config.h
Go to the documentation of this file.
1 /* src/libsecp256k1-config.h. Generated from libsecp256k1-config.h.in by configure. */
2 /* src/libsecp256k1-config.h.in. Generated from configure.ac by autoheader. */
3 
4 #ifndef LIBSECP256K1_CONFIG_H
5 
6 #define LIBSECP256K1_CONFIG_H
7 
8 /* Define if building universal (internal helper macro) */
9 /* #undef AC_APPLE_UNIVERSAL_BUILD */
10 
11 /* Define this symbol to compile out all VERIFY code */
12 /* #undef COVERAGE */
13 
14 /* Define this symbol to enable the ECDH module */
15 /* #undef ENABLE_MODULE_ECDH */
16 
17 /* Define this symbol to enable the ECDSA pubkey recovery module */
18 #define ENABLE_MODULE_RECOVERY 1
19 
20 /* Define this symbol if OpenSSL EC functions are available */
21 /* #undef ENABLE_OPENSSL_TESTS */
22 
23 /* Define this symbol if __builtin_expect is available */
24 #define HAVE_BUILTIN_EXPECT 1
25 
26 /* Define to 1 if you have the <dlfcn.h> header file. */
27 #define HAVE_DLFCN_H 1
28 
29 /* Define to 1 if you have the <inttypes.h> header file. */
30 #define HAVE_INTTYPES_H 1
31 
32 /* Define this symbol if libcrypto is installed */
33 #define HAVE_LIBCRYPTO 1
34 
35 /* Define this symbol if libgmp is installed */
36 /* #undef HAVE_LIBGMP */
37 
38 /* Define to 1 if you have the <stdint.h> header file. */
39 #define HAVE_STDINT_H 1
40 
41 /* Define to 1 if you have the <stdio.h> header file. */
42 #define HAVE_STDIO_H 1
43 
44 /* Define to 1 if you have the <stdlib.h> header file. */
45 #define HAVE_STDLIB_H 1
46 
47 /* Define to 1 if you have the <strings.h> header file. */
48 #define HAVE_STRINGS_H 1
49 
50 /* Define to 1 if you have the <string.h> header file. */
51 #define HAVE_STRING_H 1
52 
53 /* Define to 1 if you have the <sys/stat.h> header file. */
54 #define HAVE_SYS_STAT_H 1
55 
56 /* Define to 1 if you have the <sys/types.h> header file. */
57 #define HAVE_SYS_TYPES_H 1
58 
59 /* Define to 1 if you have the <unistd.h> header file. */
60 #define HAVE_UNISTD_H 1
61 
62 /* Define to 1 if the system has the type `__int128'. */
63 #define HAVE___INT128 1
64 
65 /* Define to the sub-directory where libtool stores uninstalled libraries. */
66 #define LT_OBJDIR ".libs/"
67 
68 /* Name of package */
69 #define PACKAGE "libsecp256k1"
70 
71 /* Define to the address where bug reports for this package should be sent. */
72 #define PACKAGE_BUGREPORT ""
73 
74 /* Define to the full name of this package. */
75 #define PACKAGE_NAME "libsecp256k1"
76 
77 /* Define to the full name and version of this package. */
78 #define PACKAGE_STRING "libsecp256k1 0.1"
79 
80 /* Define to the one symbol short name of this package. */
81 #define PACKAGE_TARNAME "libsecp256k1"
82 
83 /* Define to the home page for this package. */
84 #define PACKAGE_URL ""
85 
86 /* Define to the version of this package. */
87 #define PACKAGE_VERSION "0.1"
88 
89 /* Define to 1 if all of the C90 standard headers exist (not just the ones
90  required in a freestanding environment). This macro is provided for
91  backward compatibility; new code need not use it. */
92 #define STDC_HEADERS 1
93 
94 /* Define this symbol to enable x86_64 assembly optimizations */
95 #define USE_ASM_X86_64 1
96 
97 /* Define this symbol to use a statically generated ecmult table */
98 #define USE_ECMULT_STATIC_PRECOMPUTATION 1
99 
100 /* Define this symbol to use endomorphism optimization */
101 /* #undef USE_ENDOMORPHISM */
102 
103 /* Define this symbol if an external (non-inline) assembly implementation is
104  used */
105 /* #undef USE_EXTERNAL_ASM */
106 
107 /* Define this symbol to use the FIELD_10X26 implementation */
108 /* #undef USE_FIELD_10X26 */
109 
110 /* Define this symbol to use the FIELD_5X52 implementation */
111 #define USE_FIELD_5X52 1
112 
113 /* Define this symbol to use the native field inverse implementation */
114 #define USE_FIELD_INV_BUILTIN 1
115 
116 /* Define this symbol to use the num-based field inverse implementation */
117 /* #undef USE_FIELD_INV_NUM */
118 
119 /* Define this symbol to use the gmp implementation for num */
120 /* #undef USE_NUM_GMP */
121 
122 /* Define this symbol to use no num implementation */
123 #define USE_NUM_NONE 1
124 
125 /* Define this symbol to use the 4x64 scalar implementation */
126 #define USE_SCALAR_4X64 1
127 
128 /* Define this symbol to use the 8x32 scalar implementation */
129 /* #undef USE_SCALAR_8X32 */
130 
131 /* Define this symbol to use the native scalar inverse implementation */
132 #define USE_SCALAR_INV_BUILTIN 1
133 
134 /* Define this symbol to use the num-based scalar inverse implementation */
135 /* #undef USE_SCALAR_INV_NUM */
136 
137 /* Version number of package */
138 #define VERSION "0.1"
139 
140 /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
141  significant byte first (like Motorola and SPARC, unlike Intel). */
142 #if defined AC_APPLE_UNIVERSAL_BUILD
143 # if defined __BIG_ENDIAN__
144 # define WORDS_BIGENDIAN 1
145 # endif
146 #else
147 # ifndef WORDS_BIGENDIAN
148 /* # undef WORDS_BIGENDIAN */
149 # endif
150 #endif
151 
152 #endif /*LIBSECP256K1_CONFIG_H*/