Fabcoin Core  0.16.2
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 #define ENABLE_MODULE_ECDH 1
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 #define ENABLE_OPENSSL_TESTS 1
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 <memory.h> header file. */
39 #define HAVE_MEMORY_H 1
40 
41 /* Define to 1 if you have the <stdint.h> header file. */
42 #define HAVE_STDINT_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 you have the ANSI C header files. */
90 #define STDC_HEADERS 1
91 
92 /* Define this symbol to enable x86_64 assembly optimizations */
93 #define USE_ASM_X86_64 1
94 
95 /* Define this symbol to use a statically generated ecmult table */
96 #define USE_ECMULT_STATIC_PRECOMPUTATION 1
97 
98 /* Define this symbol to use endomorphism optimization */
99 /* #undef USE_ENDOMORPHISM */
100 
101 /* Define this symbol if an external (non-inline) assembly implementation is
102  used */
103 /* #undef USE_EXTERNAL_ASM */
104 
105 /* Define this symbol to use the FIELD_10X26 implementation */
106 /* #undef USE_FIELD_10X26 */
107 
108 /* Define this symbol to use the FIELD_5X52 implementation */
109 #define USE_FIELD_5X52 1
110 
111 /* Define this symbol to use the native field inverse implementation */
112 #define USE_FIELD_INV_BUILTIN 1
113 
114 /* Define this symbol to use the num-based field inverse implementation */
115 /* #undef USE_FIELD_INV_NUM */
116 
117 /* Define this symbol to use the gmp implementation for num */
118 /* #undef USE_NUM_GMP */
119 
120 /* Define this symbol to use no num implementation */
121 #define USE_NUM_NONE 1
122 
123 /* Define this symbol to use the 4x64 scalar implementation */
124 #define USE_SCALAR_4X64 1
125 
126 /* Define this symbol to use the 8x32 scalar implementation */
127 /* #undef USE_SCALAR_8X32 */
128 
129 /* Define this symbol to use the native scalar inverse implementation */
130 #define USE_SCALAR_INV_BUILTIN 1
131 
132 /* Define this symbol to use the num-based scalar inverse implementation */
133 /* #undef USE_SCALAR_INV_NUM */
134 
135 /* Version number of package */
136 #define VERSION "0.1"
137 
138 /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
139  significant byte first (like Motorola and SPARC, unlike Intel). */
140 #if defined AC_APPLE_UNIVERSAL_BUILD
141 # if defined __BIG_ENDIAN__
142 # define WORDS_BIGENDIAN 1
143 # endif
144 #else
145 # ifndef WORDS_BIGENDIAN
146 /* # undef WORDS_BIGENDIAN */
147 # endif
148 #endif
149 
150 #endif /*LIBSECP256K1_CONFIG_H*/