@@ -85,42 +85,42 @@ AC_COMPILE_IFELSE([AC_LANG_SOURCE([[char foo;]])],
85
85
] )
86
86
87
87
AC_ARG_ENABLE ( benchmark ,
88
- AS_HELP_STRING ( [ --enable-benchmark] ,[ compile benchmark ( default is yes) ] ) ,
88
+ AS_HELP_STRING ( [ --enable-benchmark] ,[ compile benchmark [ default= yes] ] ) ,
89
89
[ use_benchmark=$enableval] ,
90
90
[ use_benchmark=yes] )
91
91
92
92
AC_ARG_ENABLE ( coverage ,
93
- AS_HELP_STRING ( [ --enable-coverage] ,[ enable compiler flags to support kcov coverage analysis] ) ,
93
+ AS_HELP_STRING ( [ --enable-coverage] ,[ enable compiler flags to support kcov coverage analysis [ default=no ] ] ) ,
94
94
[ enable_coverage=$enableval] ,
95
95
[ enable_coverage=no] )
96
96
97
97
AC_ARG_ENABLE ( tests ,
98
- AS_HELP_STRING ( [ --enable-tests] ,[ compile tests ( default is yes) ] ) ,
98
+ AS_HELP_STRING ( [ --enable-tests] ,[ compile tests [ default= yes] ] ) ,
99
99
[ use_tests=$enableval] ,
100
100
[ use_tests=yes] )
101
101
102
102
AC_ARG_ENABLE ( openssl_tests ,
103
- AS_HELP_STRING ( [ --enable-openssl-tests] ,[ enable OpenSSL tests, if OpenSSL is available ( default is auto) ] ) ,
103
+ AS_HELP_STRING ( [ --enable-openssl-tests] ,[ enable OpenSSL tests [ default= auto] ] ) ,
104
104
[ enable_openssl_tests=$enableval] ,
105
105
[ enable_openssl_tests=auto] )
106
106
107
107
AC_ARG_ENABLE ( experimental ,
108
- AS_HELP_STRING ( [ --enable-experimental] ,[ allow experimental configure options ( default is no) ] ) ,
108
+ AS_HELP_STRING ( [ --enable-experimental] ,[ allow experimental configure options [ default=no ] ] ) ,
109
109
[ use_experimental=$enableval] ,
110
110
[ use_experimental=no] )
111
111
112
112
AC_ARG_ENABLE ( exhaustive_tests ,
113
- AS_HELP_STRING ( [ --enable-exhaustive-tests] ,[ compile exhaustive tests ( default is yes) ] ) ,
113
+ AS_HELP_STRING ( [ --enable-exhaustive-tests] ,[ compile exhaustive tests [ default= yes] ] ) ,
114
114
[ use_exhaustive_tests=$enableval] ,
115
115
[ use_exhaustive_tests=yes] )
116
116
117
117
AC_ARG_ENABLE ( endomorphism ,
118
- AS_HELP_STRING ( [ --enable-endomorphism] ,[ enable endomorphism ( default is no) ] ) ,
118
+ AS_HELP_STRING ( [ --enable-endomorphism] ,[ enable endomorphism [ default=no ] ] ) ,
119
119
[ use_endomorphism=$enableval] ,
120
120
[ use_endomorphism=no] )
121
121
122
122
AC_ARG_ENABLE ( ecmult_static_precomputation ,
123
- AS_HELP_STRING ( [ --enable-ecmult-static-precomputation] ,[ enable precomputed ecmult table for signing ( default is yes) ] ) ,
123
+ AS_HELP_STRING ( [ --enable-ecmult-static-precomputation] ,[ enable precomputed ecmult table for signing [ default=auto ] ] ) ,
124
124
[ use_ecmult_static_precomputation=$enableval] ,
125
125
[ use_ecmult_static_precomputation=auto] )
126
126
@@ -130,26 +130,26 @@ AC_ARG_ENABLE(module_ecdh,
130
130
[ enable_module_ecdh=no] )
131
131
132
132
AC_ARG_ENABLE ( module_recovery ,
133
- AS_HELP_STRING ( [ --enable-module-recovery] ,[ enable ECDSA pubkey recovery module ( default is no) ] ) ,
133
+ AS_HELP_STRING ( [ --enable-module-recovery] ,[ enable ECDSA pubkey recovery module [ default=no ] ] ) ,
134
134
[ enable_module_recovery=$enableval] ,
135
135
[ enable_module_recovery=no] )
136
136
137
137
AC_ARG_ENABLE ( jni ,
138
- AS_HELP_STRING ( [ --enable-jni] ,[ enable libsecp256k1_jni ( default is no) ] ) ,
138
+ AS_HELP_STRING ( [ --enable-jni] ,[ enable libsecp256k1_jni [ default=no ] ] ) ,
139
139
[ use_jni=$enableval] ,
140
140
[ use_jni=no] )
141
141
142
142
AC_ARG_WITH ( [ field] , [ AS_HELP_STRING ( [ --with-field=64bit|32bit|auto] ,
143
- [ Specify Field Implementation. Default is auto] ) ] ,[ req_field=$withval] , [ req_field=auto] )
143
+ [ finite field implementation to use [ default= auto] ] ) ] ,[ req_field=$withval] , [ req_field=auto] )
144
144
145
145
AC_ARG_WITH ( [ bignum] , [ AS_HELP_STRING ( [ --with-bignum=gmp|no|auto] ,
146
- [ Specify Bignum Implementation. Default is auto] ) ] ,[ req_bignum=$withval] , [ req_bignum=auto] )
146
+ [ bignum implementation to use [ default= auto] ] ) ] ,[ req_bignum=$withval] , [ req_bignum=auto] )
147
147
148
148
AC_ARG_WITH ( [ scalar] , [ AS_HELP_STRING ( [ --with-scalar=64bit|32bit|auto] ,
149
- [ Specify scalar implementation. Default is auto] ) ] ,[ req_scalar=$withval] , [ req_scalar=auto] )
149
+ [ scalar implementation to use [ default= auto] ] ) ] ,[ req_scalar=$withval] , [ req_scalar=auto] )
150
150
151
- AC_ARG_WITH ( [ asm] , [ AS_HELP_STRING ( [ --with-asm=x86_64|arm|no|auto]
152
- [ Specify assembly optimizations to use. Default is auto (experimental: arm)] ) ] ,[ req_asm=$withval] , [ req_asm=auto] )
151
+ AC_ARG_WITH ( [ asm] , [ AS_HELP_STRING ( [ --with-asm=x86_64|arm|no|auto] ,
152
+ [ assembly optimizations to use (experimental: arm) [ default=auto ] ] ) ] ,[ req_asm=$withval] , [ req_asm=auto] )
153
153
154
154
AC_ARG_WITH ( [ ecmult-window] , [ AS_HELP_STRING ( [ --with-ecmult-window=SIZE|auto] ,
155
155
[ window size for ecmult precomputation for verification, specified as integer in range [ 2..24] .]
0 commit comments