summaryrefslogtreecommitdiff
path: root/cmake/TestLargeFiles.cmake
diff options
context:
space:
mode:
authorMickael Savinaud <savmickael@users.noreply.github.com>2013-03-03 18:06:27 +0000
committerMickael Savinaud <savmickael@users.noreply.github.com>2013-03-03 18:06:27 +0000
commita8c33ae2197f934ce6be79887f467f09add714a8 (patch)
tree8456847c99f1d573c586b7fc5cc8b984cf7aaca6 /cmake/TestLargeFiles.cmake
parente7bc30b409fc864d7bcfec60254c4404a0c69c72 (diff)
[trunk] remove some unused variable from opj_config and rename other one with opj_ prefix
Diffstat (limited to 'cmake/TestLargeFiles.cmake')
-rw-r--r--cmake/TestLargeFiles.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmake/TestLargeFiles.cmake b/cmake/TestLargeFiles.cmake
index ffef84f5..7960e52c 100644
--- a/cmake/TestLargeFiles.cmake
+++ b/cmake/TestLargeFiles.cmake
@@ -7,7 +7,7 @@
# _LARGE_FILES
# _LARGEFILE_SOURCE
# _FILE_OFFSET_BITS 64
-# HAVE_FSEEKO
+# OPJ_HAVE_FSEEKO
#
# However, it is YOUR job to make sure these defines are set in a #cmakedefine so they
# end up in a config.h file that is included in your source if necessary!
@@ -113,10 +113,10 @@ macro(OPJ_TEST_LARGE_FILES VARIABLE)
endif()
if(FSEEKO_COMPILE_OK)
- set(HAVE_FSEEKO ON CACHE INTERNAL "Result of test for fseeko/ftello")
+ set(OPJ_HAVE_FSEEKO ON CACHE INTERNAL "Result of test for fseeko/ftello")
else()
message(STATUS "Checking for fseeko/ftello - not found")
- set(HAVE_FSEEKO OFF CACHE INTERNAL "Result of test for fseeko/ftello")
+ set(OPJ_HAVE_FSEEKO OFF CACHE INTERNAL "Result of test for fseeko/ftello")
endif()
if(FILE64_OK AND FSEEKO_COMPILE_OK)