PDAL is a C++ BSD library for translating and manipulating point cloud data. It is very much like the GDAL library which handles raster and vector data. In addition to the library code, PDAL provides a suite of command-line applications that users can conveniently use to process, filter, translate, and query point cloud data. WWW: https://pdal.io ok sthen@ ajacoutot@
17 lines
438 B
Plaintext
17 lines
438 B
Plaintext
$OpenBSD: patch-test_unit_ProgramArgsTest_cpp,v 1.1.1.1 2017/06/20 17:12:15 landry Exp $
|
|
|
|
no wordexp on OpenBSD
|
|
|
|
Index: test/unit/ProgramArgsTest.cpp
|
|
--- test/unit/ProgramArgsTest.cpp.orig
|
|
+++ test/unit/ProgramArgsTest.cpp
|
|
@@ -37,7 +37,7 @@
|
|
#include <json/json.h>
|
|
|
|
// No wordexp() on windows and I don't feel like doing something special.
|
|
-#ifndef _WIN32
|
|
+#ifndef __OpenBSD__
|
|
|
|
#include <wordexp.h>
|
|
#include <pdal/pdal_internal.hpp>
|