Skip to content

Commit 6b508c4

Browse files
committed
fix libfido2 detection without pkg-config
Place libfido2 before additional libraries (that it may depend upon) and not after. bz3530 from James Zhang; ok dtucker@
1 parent 358e300 commit 6b508c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3245,7 +3245,7 @@ if test "x$enable_sk" = "xyes" -a "x$enable_sk_internal" != "xno" ; then
32453245
[Enable for built-in U2F/FIDO support])
32463246
enable_sk="built-in"
32473247
saved_LIBS="$LIBS"
3248-
LIBS="$LIBS $LIBFIDO2"
3248+
LIBS="$LIBFIDO2 $LIBS"
32493249
AC_CHECK_FUNCS([ \
32503250
fido_assert_set_clientdata \
32513251
fido_cred_prot \

0 commit comments

Comments
 (0)