openbsd-ports/graphics/opencv/patches/patch-OpenCVPCHSupport_cmake
espie 258e70c5fc pch don't really work
in fact, it causes an ICE while building the port on amd64,
so patch it out, and bump.
2011-07-16 22:43:57 +00:00

13 lines
514 B
Plaintext

$OpenBSD: patch-OpenCVPCHSupport_cmake,v 1.1 2011/07/16 22:43:57 espie Exp $
--- OpenCVPCHSupport.cmake.orig Sat Jul 16 23:20:31 2011
+++ OpenCVPCHSupport.cmake Sat Jul 16 23:20:38 2011
@@ -20,7 +20,7 @@ IF(CMAKE_COMPILER_IS_GNUCXX)
OUTPUT_VARIABLE gcc_compiler_version)
#MESSAGE("GCC Version: ${gcc_compiler_version}")
IF(gcc_compiler_version MATCHES "4\\.[0,2-9]\\.[0-9]")
- SET(PCHSupport_FOUND TRUE)
+ SET(PCHSupport_FOUND FALSE)
ENDIF()
SET(_PCH_include_prefix "-I")