]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
libcgi: add patch to not require C++ support
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sat, 2 Sep 2017 21:54:54 +0000 (23:54 +0200)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sat, 2 Sep 2017 21:54:54 +0000 (23:54 +0200)
libcgi is written in C, there is no need for a C++ compiler, but CMake
by default assumes that both C and C++ are needed. To fix that, this
commit adds a patch, submitted upstream, to adjust the CMakeLists.txt.

Fixes:

  http://autobuild.buildroot.net/results/d0b4740bdbd84ed6fcbba706caf42ebba4c07d15/

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/libcgi/0001-CMakeLists.txt-libcgi-is-in-C.patch [new file with mode: 0644]

diff --git a/package/libcgi/0001-CMakeLists.txt-libcgi-is-in-C.patch b/package/libcgi/0001-CMakeLists.txt-libcgi-is-in-C.patch
new file mode 100644 (file)
index 0000000..682bfe5
--- /dev/null
@@ -0,0 +1,32 @@
+From 043f7a470e32c036f0fe933ec5cd2003087d6b2e Mon Sep 17 00:00:00 2001
+From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
+Date: Sat, 2 Sep 2017 23:50:42 +0200
+Subject: [PATCH] CMakeLists.txt: libcgi is in C
+
+By default, CMake checks that both C and C++ compilers are
+available. However, since libcgi is only C, there's no need for a C++
+compiler check. Therefore, this commit adjusts the project() variable
+definition to only require C language support.
+
+Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
+Submitted-upstream: https://github.com/rafaelsteil/libcgi/pull/38
+---
+ CMakeLists.txt | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index f98a99d..c599ca9 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -3,7 +3,7 @@
+ #
+ cmake_minimum_required(VERSION 2.8.8)
+-project(cgi)
++project(cgi C)
+ string(TOUPPER ${PROJECT_NAME} PROJECT_NAME_UC)
+ string(TOLOWER ${PROJECT_NAME} PROJECT_NAME_LC)
+ set(LIBPREFIX ${PROJECT_NAME})
+-- 
+2.13.5
+