aballier 14/12/08 11:53:13 Added: nogl.patch Log: initial import, ebuild by me Signed-off-by: [email protected] (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path 1.1 sci-libs/pcl/files/nogl.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/pcl/files/nogl.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/pcl/files/nogl.patch?rev=1.1&content-type=text/plain Index: nogl.patch =================================================================== commit 1361899d1a336938811eceb17e2f71abe650ae17 Author: Davide Viti <[email protected]> Date: Sun Nov 9 21:37:28 2014 +0100 Add "WITH_OPENGL" option to make OpenGL and Glut inclusion conditional diff --git a/CMakeLists.txt b/CMakeLists.txt index 6cc473d..7fda151 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -403,7 +403,10 @@ if(WITH_PCAP) endif(WITH_PCAP) # OpenGL and GLUT -include("${PCL_SOURCE_DIR}/cmake/pcl_find_gl.cmake") +option(WITH_OPENGL "Support for OpenGL" TRUE) +if(WITH_OPENGL) + include("${PCL_SOURCE_DIR}/cmake/pcl_find_gl.cmake") +endif(WITH_OPENGL) ### ---[ Create the config.h file set(pcl_config_h_in "${CMAKE_CURRENT_SOURCE_DIR}/pcl_config.h.in")
