configure.ac: fix libfido2 back-compat

- HAVE_FIDO_CRED_PROD -> HAVE_FIDO_CRED_PROT;
- check for fido_dev_get_touch_begin(), so that
  HAVE_FIDO_DEV_GET_TOUCH_BEGIN gets defined.
This commit is contained in:
pedro martelletto 2020-09-01 17:01:55 +02:00 committed by Darren Tucker
parent 785f0f315b
commit c1c44eeecd
2 changed files with 2 additions and 1 deletions

View File

@ -3185,6 +3185,7 @@ if test "x$enable_sk" = "xyes" -a "x$enable_sk_internal" = "xyes" ; then
AC_CHECK_FUNCS([ \ AC_CHECK_FUNCS([ \
fido_cred_prot \ fido_cred_prot \
fido_cred_set_prot \ fido_cred_set_prot \
fido_dev_get_touch_begin \
fido_dev_get_touch_status \ fido_dev_get_touch_status \
fido_dev_supports_cred_prot \ fido_dev_supports_cred_prot \
]) ])

View File

@ -43,7 +43,7 @@
#include <fido/credman.h> #include <fido/credman.h>
/* backwards compat for libfido2 */ /* backwards compat for libfido2 */
#ifndef HAVE_FIDO_CRED_PROD #ifndef HAVE_FIDO_CRED_PROT
#define fido_cred_prot(x) (0) #define fido_cred_prot(x) (0)
#endif #endif
#ifndef HAVE_FIDO_CRED_SET_PROT #ifndef HAVE_FIDO_CRED_SET_PROT