The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / unionfs / 0001-fuse-no-cxx-needed.patch
1 By default, CMake assumes a project uses the C and C++ languages, so
2 it checks for both the C and the C++ compiler to exist.
3
4 However, unionfs-fuse is written purely in C, so checking for a C++
5 compiler is useless, and even prevents unionfs-fuse from building
6 properly on targets for which no C++ compiler is available.
7
8 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9
10 Index: b/CMakeLists.txt
11 ===================================================================
12 --- a/CMakeLists.txt
13 +++ b/CMakeLists.txt
14 @@ -1,4 +1,4 @@
15 -project(unionfs-fuse)
16 +project(unionfs-fuse C)
17  
18  cmake_minimum_required(VERSION 2.0)
19  INCLUDE (CheckIncludeFiles)