From: Uwe Hermann Date: Fri, 21 Jul 2017 05:08:06 +0000 (+0200) Subject: INSTALL/CMakeLists.txt: Bump libsigrokdecode requirement to >= 0.6.0. X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=commitdiff_plain;h=e37a0c3e6087c1aaa1dff648ecb0c0d1ed786e6a INSTALL/CMakeLists.txt: Bump libsigrokdecode requirement to >= 0.6.0. PulseView now relies on e.g. the fact that multiple libsigrokdecode calls from different threads don't cause issues (which has not been the case prior to libsigrokdecode 0.6.0). --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 21edc55..66ef33b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -61,7 +61,7 @@ list(APPEND PKGDEPS glibmm-2.4>=2.28.0) list(APPEND PKGDEPS libsigrokcxx>=0.6.0) if(ENABLE_DECODE) - list(APPEND PKGDEPS libsigrokdecode>=0.5.0) + list(APPEND PKGDEPS libsigrokdecode>=0.6.0) endif() if(ANDROID) diff --git a/INSTALL b/INSTALL index 62cebc8..445e36b 100644 --- a/INSTALL +++ b/INSTALL @@ -23,7 +23,7 @@ Requirements - libboost-serialization - libboost-test (optional, only needed to run the unit tests) - libsigrokcxx >= 0.6.0 (libsigrok C++ bindings) - - libsigrokdecode >= 0.5.0 + - libsigrokdecode >= 0.6.0 - libsigrokandroidutils >= 0.1.0 (optional, only needed on Android)