comparison configure.ac @ 1654:cc0fc5131c5c

Rename EPKA -> Plugin
author Matt Johnston <matt@ucc.asn.au>
date Wed, 15 May 2019 21:59:45 +0800
parents 76189c9ffea2
children 986126448688
comparison
equal deleted inserted replaced
1653:76189c9ffea2 1654:cc0fc5131c5c
321 AC_CHECK_HEADERS([shadow.h]) 321 AC_CHECK_HEADERS([shadow.h])
322 AC_MSG_NOTICE(Using shadow passwords if available) 322 AC_MSG_NOTICE(Using shadow passwords if available)
323 ] 323 ]
324 ) 324 )
325 325
326 AC_ARG_ENABLE(epka, 326 AC_ARG_ENABLE(plugin,
327 [ --enable-epka Enable support for External Public Key Authentication plug-in], 327 [ --enable-plugin Enable support for External Public Key Authentication plug-in],
328 [ 328 [
329 AC_DEFINE(DROPBEAR_EPKA, 1, External Public Key Authentication) 329 AC_DEFINE(DROPBEAR_PLUGIN, 1, External Public Key Authentication)
330 AC_MSG_NOTICE(Enabling support for External Public Key Authentication) 330 AC_MSG_NOTICE(Enabling support for External Public Key Authentication)
331 DROPBEAR_EPKA=1 331 DROPBEAR_PLUGIN=1
332 ], 332 ],
333 [ 333 [
334 AC_DEFINE(DROPBEAR_EPKA, 0, External Public Key Authentication) 334 AC_DEFINE(DROPBEAR_PLUGIN, 0, External Public Key Authentication)
335 DROPBEAR_EPKA=0 335 DROPBEAR_PLUGIN=0
336 ] 336 ]
337 337
338 ) 338 )
339 AC_SUBST(DROPBEAR_EPKA) 339 AC_SUBST(DROPBEAR_PLUGIN)
340 340
341 AC_ARG_ENABLE(fuzz, 341 AC_ARG_ENABLE(fuzz,
342 [ --enable-fuzz Build fuzzing. Not recommended for deployment.], 342 [ --enable-fuzz Build fuzzing. Not recommended for deployment.],
343 [ 343 [
344 AC_DEFINE(DROPBEAR_FUZZ, 1, Fuzzing) 344 AC_DEFINE(DROPBEAR_FUZZ, 1, Fuzzing)