fix configure.ac for FreeBSD SWAPFORMAT
check_swap.c has been switched to double for dsktotal_mb,dskfree_mb
(commit 39c5e4ed595cfbda7cff566575fc5a53252f09b5)
The corresponding sscanf uses SWAP_FORMAT from configure:
ac_cv_swap_format="%*s %f %*d %f"
With doubles this now has to be:
ac_cv_swap_format="%*s %lf %*d %lf"