summaryrefslogtreecommitdiff
path: root/sci-libs/pcl
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2017-01-26 22:57:21 +0100
committerAlexis Ballier <aballier@gentoo.org>2017-01-27 00:09:55 +0100
commit91e58ba4e2255d266cf75ba8d8a29c0628f11762 (patch)
tree0c6190e84e8fb45e55fe95c66bff1cc50786e2fd /sci-libs/pcl
parent3138734f57b2651e822991d34bdc60ca4992ee07 (diff)
downloadgentoo-91e58ba4e2255d266cf75ba8d8a29c0628f11762.tar.gz
gentoo-91e58ba4e2255d266cf75ba8d8a29c0628f11762.tar.xz
sci-libs/pcl: remove now unused patch
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'sci-libs/pcl')
-rw-r--r--sci-libs/pcl/files/nogl.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/sci-libs/pcl/files/nogl.patch b/sci-libs/pcl/files/nogl.patch
deleted file mode 100644
index 0be97e85f89..00000000000
--- a/sci-libs/pcl/files/nogl.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-commit 1361899d1a336938811eceb17e2f71abe650ae17
-Author: Davide Viti <zinosat@tiscali.it>
-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")