0002-Fix-compiler-check.patch 668 B

12345678910111213141516171819
  1. Fix compiler check
  2. By default CMake looks for c++ which the project does not need.
  3. Patch by Thomas:
  4. http://lists.busybox.net/pipermail/buildroot/2015-December/146865.html
  5. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
  6. diff -uNr read-edid-3.0.2.org/CMakeLists.txt read-edid-3.0.2/CMakeLists.txt
  7. --- read-edid-3.0.2.org/CMakeLists.txt 2014-02-05 17:27:26.000000000 +0100
  8. +++ read-edid-3.0.2/CMakeLists.txt 2015-12-13 16:08:43.000000000 +0100
  9. @@ -1,5 +1,5 @@
  10. cmake_minimum_required (VERSION 2.6)
  11. -project (read-edid)
  12. +project (read-edid C)
  13. option(I2CBUILD "Build I2C get-edid implementation" ON)
  14. option(CLASSICBUILD "Build VBE get-edid implementation" ON)