COMP: Disable LFS on AIX.
This commit is contained in:
parent
d160362e83
commit
53c72ed6c3
|
@ -135,6 +135,13 @@ ENDIF(KWSYS_STANDALONE OR CMake_SOURCE_DIR)
|
||||||
# The project name is that of the specified namespace.
|
# The project name is that of the specified namespace.
|
||||||
PROJECT(${KWSYS_NAMESPACE})
|
PROJECT(${KWSYS_NAMESPACE})
|
||||||
|
|
||||||
|
# Setup the large file support default.
|
||||||
|
IF(KWSYS_LFS_DISABLE)
|
||||||
|
SET(KWSYS_LFS_REQUESTED 0)
|
||||||
|
ELSE(KWSYS_LFS_DISABLE)
|
||||||
|
SET(KWSYS_LFS_REQUESTED 1)
|
||||||
|
ENDIF(KWSYS_LFS_DISABLE)
|
||||||
|
|
||||||
# Enable testing if building standalone.
|
# Enable testing if building standalone.
|
||||||
IF(KWSYS_STANDALONE)
|
IF(KWSYS_STANDALONE)
|
||||||
INCLUDE(Dart)
|
INCLUDE(Dart)
|
||||||
|
@ -283,7 +290,6 @@ ENDIF(NOT CMAKE_COMPILER_IS_GNUCXX)
|
||||||
|
|
||||||
#-----------------------------------------------------------------------------
|
#-----------------------------------------------------------------------------
|
||||||
# Configure Large File Support.
|
# Configure Large File Support.
|
||||||
SET(KWSYS_LFS_REQUESTED 1)
|
|
||||||
SET(KWSYS_LFS_AVAILABLE 0)
|
SET(KWSYS_LFS_AVAILABLE 0)
|
||||||
IF(KWSYS_LFS_REQUESTED)
|
IF(KWSYS_LFS_REQUESTED)
|
||||||
# Large File Support is requested.
|
# Large File Support is requested.
|
||||||
|
|
Loading…
Reference in New Issue