Dash Core  0.12.2.1
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 enable the ECDH module */
12 /* #undef ENABLE_MODULE_ECDH */
13 
14 /* Define this symbol to enable the ECDSA pubkey recovery module */
15 #define ENABLE_MODULE_RECOVERY 1
16 
17 /* Define this symbol to enable the Schnorr signature module */
18 /* #undef ENABLE_MODULE_SCHNORR */
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 to use the FIELD_10X26 implementation */
102 /* #undef USE_FIELD_10X26 */
103 
104 /* Define this symbol to use the FIELD_5X52 implementation */
105 #define USE_FIELD_5X52 1
106 
107 /* Define this symbol to use the native field inverse implementation */
108 #define USE_FIELD_INV_BUILTIN 1
109 
110 /* Define this symbol to use the num-based field inverse implementation */
111 /* #undef USE_FIELD_INV_NUM */
112 
113 /* Define this symbol to use the gmp implementation for num */
114 /* #undef USE_NUM_GMP */
115 
116 /* Define this symbol to use no num implementation */
117 #define USE_NUM_NONE 1
118 
119 /* Define this symbol to use the 4x64 scalar implementation */
120 #define USE_SCALAR_4X64 1
121 
122 /* Define this symbol to use the 8x32 scalar implementation */
123 /* #undef USE_SCALAR_8X32 */
124 
125 /* Define this symbol to use the native scalar inverse implementation */
126 #define USE_SCALAR_INV_BUILTIN 1
127 
128 /* Define this symbol to use the num-based scalar inverse implementation */
129 /* #undef USE_SCALAR_INV_NUM */
130 
131 /* Version number of package */
132 #define VERSION "0.1"
133 
134 /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
135  significant byte first (like Motorola and SPARC, unlike Intel). */
136 #if defined AC_APPLE_UNIVERSAL_BUILD
137 # if defined __BIG_ENDIAN__
138 # define WORDS_BIGENDIAN 1
139 # endif
140 #else
141 # ifndef WORDS_BIGENDIAN
142 /* # undef WORDS_BIGENDIAN */
143 # endif
144 #endif
145 
146 #endif /*LIBSECP256K1_CONFIG_H*/