diff options
author | Matthew Fornero <mfornero@mathworks.com> | 2016-05-20 13:36:31 -0400 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-05-23 14:05:57 +0200 |
commit | 17ee15da70d23c314a3264c87a785101cbd9d85d (patch) | |
tree | 5d2707893c6e98b234652e66a124aecbb08323e2 /package/libiio/0001-cmake-libxml2-detection-try-first-the-CMake-module-f.patch | |
parent | 4946b1956790618fb31ded9970d10a88ba77b545 (diff) | |
download | buildroot-17ee15da70d23c314a3264c87a785101cbd9d85d.tar.gz buildroot-17ee15da70d23c314a3264c87a785101cbd9d85d.zip |
libiio: Bump version to 0.6
v0.6 API offers some major additions, including:
* iio_device_set_kernel_buffers_counts
* iio_buffer_get_poll_fd
* iio_bufer_set_blocking_mode
* iio_buffer_push_partial
Signed-off-by: Matthew Fornero <mfornero@mathworks.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/libiio/0001-cmake-libxml2-detection-try-first-the-CMake-module-f.patch')
-rw-r--r-- | package/libiio/0001-cmake-libxml2-detection-try-first-the-CMake-module-f.patch | 57 |
1 files changed, 29 insertions, 28 deletions
diff --git a/package/libiio/0001-cmake-libxml2-detection-try-first-the-CMake-module-f.patch b/package/libiio/0001-cmake-libxml2-detection-try-first-the-CMake-module-f.patch index 9f441698f8..17fbdab087 100644 --- a/package/libiio/0001-cmake-libxml2-detection-try-first-the-CMake-module-f.patch +++ b/package/libiio/0001-cmake-libxml2-detection-try-first-the-CMake-module-f.patch @@ -1,42 +1,43 @@ -From 4f849e1d2287206cfb7ff0fdeca96c22383b0d53 Mon Sep 17 00:00:00 2001 +From b613e0fe7999cfff9efb646eb388ea1e58952e30 Mon Sep 17 00:00:00 2001 From: Samuel Martin <s.martin49@gmail.com> -Date: Mon, 29 Dec 2014 19:05:13 +0100 -Subject: [PATCH] cmake: libxml2 detection: try first the CMake module from - libxml2 +Date: Thu, 14 Apr 2016 12:59:27 -0400 +Subject: [PATCH] cmake: libxml2 detection: try CMake module from libxml2 Libxml2 >=2.9.2 provides its own CMake module, so check for it before falling back on the CMake's module FindLibXml2.cmake. +Updated for v0.6 by: Matt Fornero <matt.fornero@mathworks.com> + Signed-off-by: Samuel Martin <s.martin49@gmail.com> +Signed-off-by: Matt Fornero <matt.fornero@mathworks.com> --- - CMakeLists.txt | 14 +++++++++++++- - 1 file changed, 13 insertions(+), 1 deletion(-) + CMakeLists.txt | 13 ++++++++++++- + 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt -index 393fee3..b4f1d26 100644 +index 70f61f0..4a4209b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt -@@ -38,7 +38,19 @@ endif() - find_library(AVAHI_CLIENT_LIBRARIES avahi-client) - find_library(AVAHI_COMMON_LIBRARIES avahi-common) - find_library(PTHREAD_LIBRARIES pthread) --include(FindLibXml2) -+ -+# Since libxml2-2.9.2, libxml2 provides its own LibXml2-config.cmake, with all -+# variables correctly set. -+# So, try first to find the CMake module provided by libxml2 package, then fallback -+# on the CMake's FindLibXml2.cmake module (which can lack some definition, especially -+# in static build case). -+find_package(LibXml2 QUIET NO_MODULE) -+if(DEFINED LIBXML2_VERSION_STRING) -+ set(LIBXML2_FOUND ON) -+ set(LIBXML2_INCLUDE_DIR ${LIBXML2_INCLUDE_DIRS}) -+else() -+ include(FindLibXml2) -+endif() +@@ -143,7 +143,18 @@ if(WITH_NETWORK_BACKEND) + endif() + + if (NEED_LIBXML2) +- include(FindLibXml2) ++ # Since libxml2-2.9.2, libxml2 provides its own LibXml2-config.cmake, with all ++ # variables correctly set. ++ # So, try first to find the CMake module provided by libxml2 package, then fallback ++ # on the CMake's FindLibXml2.cmake module (which can lack some definition, especially ++ # in static build case). ++ find_package(LibXml2 QUIET NO_MODULE) ++ if(DEFINED LIBXML2_VERSION_STRING) ++ set(LIBXML2_FOUND ON) ++ set(LIBXML2_INCLUDE_DIR ${LIBXML2_INCLUDE_DIRS}) ++ else() ++ include(FindLibXml2) ++ endif() - set(LIBIIO_CFILES channel.c device.c context.c buffer.c utilities.c) - set(LIBIIO_HEADERS iio.h) + if (NOT LIBXML2_FOUND) + message(SEND_ERROR "The selected backends require libxml2 to be installed") -- -2.2.1 +1.7.10.4 |