aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTsukasa Sugiura <t.sugiura0204@gmail.com>2017-11-15 07:45:16 +0900
committerTsukasa Sugiura <t.sugiura0204@gmail.com>2017-11-15 10:39:14 +0900
commit1c43dfa4a2921fe80954b2b7d63104a2031fb216 (patch)
tree564ce9d26893663bad07e1ce5779358e4db410e9
parent5c9f0ff47324634a9796ed5d6cd7350cb06022c2 (diff)
downloadvcpkg-1c43dfa4a2921fe80954b2b7d63104a2031fb216.tar.gz
vcpkg-1c43dfa4a2921fe80954b2b7d63104a2031fb216.zip
Fix find debug library of QHull
Fix find debug library of QHull. Currently, QHull port generates debug libraries with DEBUG_POSTFIX (_d). Therefore, It doesn't need to be override.
-rw-r--r--ports/pcl/CONTROL2
-rw-r--r--ports/pcl/config.patch2
-rw-r--r--ports/pcl/find_qhull.patch2
3 files changed, 3 insertions, 3 deletions
diff --git a/ports/pcl/CONTROL b/ports/pcl/CONTROL
index 1e9f8c57b..daadfa911 100644
--- a/ports/pcl/CONTROL
+++ b/ports/pcl/CONTROL
@@ -1,5 +1,5 @@
Source: pcl
-Version: 1.8.1-4
+Version: 1.8.1-5
Description: Point Cloud Library (PCL) is open source library for 2D/3D image and point cloud processing.
Build-Depends: boost, eigen3, flann, qhull, vtk, openni2
diff --git a/ports/pcl/config.patch b/ports/pcl/config.patch
index c949f128f..54b7c6413 100644
--- a/ports/pcl/config.patch
+++ b/ports/pcl/config.patch
@@ -7,7 +7,7 @@ index f4ef6a0ff..3a2c259dc 100644
HINTS "${QHULL_ROOT}" "$ENV{QHULL_ROOT}"
PATHS "$ENV{PROGRAMFILES}/qhull" "$ENV{PROGRAMW6432}/qhull"
- PATH_SUFFIXES project build bin lib)
-+ PATH_SUFFIXES project build bin debug/lib)
++ PATH_SUFFIXES project build bin lib debug/lib)
find_package_handle_standard_args(qhull DEFAULT_MSG QHULL_LIBRARY QHULL_INCLUDE_DIRS)
diff --git a/ports/pcl/find_qhull.patch b/ports/pcl/find_qhull.patch
index 0f5036e1e..e845293be 100644
--- a/ports/pcl/find_qhull.patch
+++ b/ports/pcl/find_qhull.patch
@@ -7,7 +7,7 @@ index 698bd151b..44c1d5d8d 100644
HINTS "${QHULL_ROOT}" "$ENV{QHULL_ROOT}"
PATHS "$ENV{PROGRAMFILES}/QHull" "$ENV{PROGRAMW6432}/QHull"
- PATH_SUFFIXES project build bin lib)
-+ PATH_SUFFIXES project build bin debug/lib)
++ PATH_SUFFIXES project build bin lib debug/lib)
if(NOT QHULL_LIBRARY_DEBUG)
set(QHULL_LIBRARY_DEBUG ${QHULL_LIBRARY})