comparison configure.ac @ 1347:b28624698130 fuzz

copy over some fuzzing code from AFL branch
author Matt Johnston <matt@ucc.asn.au>
date Fri, 12 May 2017 23:14:54 +0800
parents 94d4038bb34c
children 3677a510f545
comparison
equal deleted inserted replaced
1346:78b7e0634117 1347:b28624698130
215 [ 215 [
216 AC_CHECK_HEADERS([shadow.h]) 216 AC_CHECK_HEADERS([shadow.h])
217 AC_MSG_NOTICE(Using shadow passwords if available) 217 AC_MSG_NOTICE(Using shadow passwords if available)
218 ] 218 ]
219 ) 219 )
220
221 AC_ARG_ENABLE(fuzz,
222 [ --enable-fuzz Build fuzzing],
223 [
224 AC_DEFINE(DROPBEAR_FUZZ, 1, Fuzzing)
225 AC_MSG_NOTICE(Enabling fuzzing)
226 ]
227 )
228
220 229
221 230
222 # Checks for header files. 231 # Checks for header files.
223 AC_HEADER_STDC 232 AC_HEADER_STDC
224 AC_HEADER_SYS_WAIT 233 AC_HEADER_SYS_WAIT