diff options
author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2018-05-02 08:35:28 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-05-02 09:15:53 +0200 |
commit | ec2006b7ea6984eec41db0efba85f2ee6806ea30 (patch) | |
tree | 5c43b1397f7b1b2615d4dd96f30ce97d25e497b9 /package/libcue/0001-libcue-is-only-implemented-in-C.patch | |
parent | 12c06de68aa4e783d6d7617154d90fbba185a320 (diff) | |
download | buildroot-ec2006b7ea6984eec41db0efba85f2ee6806ea30.tar.gz buildroot-ec2006b7ea6984eec41db0efba85f2ee6806ea30.zip |
libcue: bump to version 2.2.1
- Remove patch (already in version)
- Include buildroot patch http://patchwork.ozlabs.org/patch/907206
currently in new state
Fixes:
- http://autobuild.buildroot.net/results/02712e85db8e538045497e9242b476c040198f1d
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'package/libcue/0001-libcue-is-only-implemented-in-C.patch')
-rw-r--r-- | package/libcue/0001-libcue-is-only-implemented-in-C.patch | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/package/libcue/0001-libcue-is-only-implemented-in-C.patch b/package/libcue/0001-libcue-is-only-implemented-in-C.patch deleted file mode 100644 index bb36172ad1..0000000000 --- a/package/libcue/0001-libcue-is-only-implemented-in-C.patch +++ /dev/null @@ -1,34 +0,0 @@ -From 285dd7fe70878e85f121b990f59e72105ef27688 Mon Sep 17 00:00:00 2001 -From: Fabrice Fontaine <fontaine.fabrice@gmail.com> -Date: Mon, 30 Apr 2018 13:06:00 +0200 -Subject: [PATCH] libcue is only implemented in C - -By default, CMake assumes that the project is using both C and C++. By -explicitly passing 'C' as argument of the project() macro, we tell -CMake that only C is used, which prevents CMake from checking if a C++ -compiler exists. - -Fixes: - - http://autobuild.buildroot.net/results/a5344d18dbdc86705853fbf8a66d5304de07a9b2 - -Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> ---- - CMakeLists.txt | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 1e4ca25..8c3a1bd 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -5,7 +5,7 @@ SET(PACKAGE_SOVERSION 2) - - CMAKE_MINIMUM_REQUIRED(VERSION 2.8 FATAL_ERROR) - --PROJECT(libcue) -+PROJECT(libcue C) - - include(GNUInstallDirs) - --- -2.14.1 - |