From: Jim Paris Date: Fri, 22 May 2009 18:48:57 +0000 (-0400) Subject: ftdi_eeprom requires libftdi 0.16 X-Git-Url: http://developer.intra2net.com/git/?a=commitdiff_plain;h=3f916d5b6ee2d587d7c9069d4660b91fe42baa65;p=ftdi_eeprom ftdi_eeprom requires libftdi 0.16 Since commit 13a25f0fce452792ba912b37d6cb87e512c864fb, this program requires the new symbol ftdi_eeprom_decode, which is only provided by libftdi >= 0.16. Signed-off-by: Jim Paris --- diff --git a/configure.in b/configure.in index 36af172..49550a3 100644 --- a/configure.in +++ b/configure.in @@ -8,7 +8,7 @@ AC_PROG_CC AC_CHECK_LIB(confuse, cfg_getstr,,[AC_MSG_ERROR(can't find confuse library)]) -PKG_CHECK_MODULES(LIBFTDI, libftdi) +PKG_CHECK_MODULES(LIBFTDI, libftdi >= 0.16) AC_SUBST(LIBFTDI_CFLAGS) AC_SUBST(LIBFTDI_LIBS)