From: Uffe Jakobsen Date: Fri, 23 Jan 2015 22:55:14 +0000 (+0100) Subject: Check for librevisa >= 0.0.20130412 - the latest official release X-Git-Tag: libsigrok-0.4.0~675 X-Git-Url: http://sigrok.org/gitweb/?p=libsigrok.git;a=commitdiff_plain;h=d5062672dd185e351f8d91e851820df069b6429e Check for librevisa >= 0.0.20130412 - the latest official release --- diff --git a/README b/README index 574b91aa..7ddfe81e 100644 --- a/README +++ b/README @@ -39,7 +39,7 @@ Requirements for the C library: - libglib >= 2.34.0 - libzip >= 0.10 - libserialport >= 0.1.0 (optional, used by some drivers) - - librevisa >= 0.0.20130812 (optional, used by some drivers) + - librevisa >= 0.0.20130412 (optional, used by some drivers) - libusb-1.0 >= 1.0.16 (optional, used by some drivers) - libftdi >= 0.16 or libftdi1 >= 1.0 (optional, used by some drivers) - libgpib (optional, used by some drivers) diff --git a/configure.ac b/configure.ac index d2340bea..b0db86fd 100644 --- a/configure.ac +++ b/configure.ac @@ -302,7 +302,7 @@ fi AM_CONDITIONAL(NEED_SERIAL, test "x$have_libserialport" != xno) # The VISA SCPI backend is only compiled in if librevisa was found. -PKG_CHECK_MODULES([librevisa], [librevisa >= 0.0.20130812], +PKG_CHECK_MODULES([librevisa], [librevisa >= 0.0.20130412], [have_librevisa="yes"; LIB_CFLAGS="$LIB_CFLAGS $librevisa_CFLAGS"; LIBS="$LIBS $librevisa_LIBS"; SR_PKGLIBS="$SR_PKGLIBS librevisa"], @@ -555,7 +555,7 @@ echo # Note: This only works for libs with pkg-config integration. for lib in "glib-2.0 >= 2.34.0" "libzip >= 0.10" "libserialport >= 0.2.0" \ - "librevisa >= 0.0.20130812" "libusb-1.0 >= 1.0.16" "libftdi >= 0.16" \ + "librevisa >= 0.0.20130412" "libusb-1.0 >= 1.0.16" "libftdi >= 0.16" \ "libftdi1 >= 1.0" "libgpib" "glibmm-2.4 >= 2.32.0" \ "pygobject-3.0 >= 3.0.0" "check >= 0.9.4" do