[Liblas-commits] hg: 2 new changesets
liblas-commits at liblas.org
liblas-commits at liblas.org
Sun Aug 22 12:38:58 EDT 2010
changeset d71d225f7659 in /Volumes/Data/www/liblas.org/hg
details: http://hg.liblas.orghg?cmd=changeset;node=d71d225f7659
summary: turn of ST_Create checking, as this is not working for some reason
changeset 28d0c58564c5 in /Volumes/Data/www/liblas.org/hg
details: http://hg.liblas.orghg?cmd=changeset;node=28d0c58564c5
summary: typo
diffstat:
CMakeLists.txt | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
diffs (34 lines):
diff -r fa2a19e7e146 -r 28d0c58564c5 CMakeLists.txt
--- a/CMakeLists.txt Sat Aug 21 15:31:01 2010 -0500
+++ b/CMakeLists.txt Sun Aug 22 11:38:46 2010 -0500
@@ -119,7 +119,7 @@
# Search for dependencies
# Boost C++ Libraries support - required
-message(STATUS "Searching for Boost 1.38+ - done")
+message(STATUS "Searching for Boost 1.41+ - done")
find_package(Boost 1.41 COMPONENTS program_options REQUIRED)
if(Boost_FOUND AND Boost_PROGRAM_OPTIONS_FOUND)
@@ -154,15 +154,15 @@
# Confirm required API is available
include(CheckFunctionExists)
set(CMAKE_REQUIRED_LIBRARIES ${GEOTIFF_LIBRARY})
- check_function_exists(ST_Create HAVE_ST_CREATE)
+# check_function_exists(ST_Create HAVE_ST_CREATE)
- if(NOT HAVE_ST_CREATE)
- set(GEOTIFF_FOUND) # Reset to NOT found for GeoTIFF
- message(FATAL_ERROR "GeoTIFF support requires libgeotiff 1.2.5 or newer.")
- else()
+# if(NOT HAVE_ST_CREATE)
+# set(GEOTIFF_FOUND) # Reset to NOT found for GeoTIFF
+# message(FATAL_ERROR "GeoTIFF support requires libgeotiff 1.2.5 or newer.")
+# else()
include_directories(${GEOTIFF_INCLUDE_DIR})
add_definitions(-DHAVE_LIBGEOTIFF=1)
- endif()
+# endif()
endif()
# Determine libTIFF availability, required
More information about the Liblas-commits
mailing list