aboutsummaryrefslogtreecommitdiff
path: root/src/make.configuration.defn
diff options
context:
space:
mode:
authortradke <tradke@4825ed28-b72c-4eae-9704-e50c059e567d>2002-05-13 16:04:17 +0000
committertradke <tradke@4825ed28-b72c-4eae-9704-e50c059e567d>2002-05-13 16:04:17 +0000
commit94997fad8da6ce88535b9fc960b4a62e488c8031 (patch)
tree8ff92c455be09637e65d97f012dd72b1e480285f /src/make.configuration.defn
parent3dc7af96828e9bdce02ab5ad7aa0fb6225af7496 (diff)
Moved the check for LFS from make.configuration.defn to make.configuration.deps
to prevent setting the CFLAGS globally. git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOHDF5/trunk@132 4825ed28-b72c-4eae-9704-e50c059e567d
Diffstat (limited to 'src/make.configuration.defn')
-rw-r--r--src/make.configuration.defn7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/make.configuration.defn b/src/make.configuration.defn
index 8815efb..c52aca4 100644
--- a/src/make.configuration.defn
+++ b/src/make.configuration.defn
@@ -7,10 +7,3 @@ ifeq ($(findstring CactusExternal/FlexIO,$(THORNS)),CactusExternal/FlexIO)
ALL_UTILS += hdf5_convert_from_ieeeio
FLEXIO_INC_DIRS = $(CCTK_HOME)$(DIRSEP)arrangements/CactusExternal/FlexIO/src
endif
-
-# Extend CFLAGS if HDF5 library was built with LFS support
-LFS_support := $(shell grep -s _LARGEFILE_SOURCE $(strip $(HDF5_LIB_DIRS))/libhdf5.settings)
-
-ifneq ($(strip $(LFS_support)),)
- CFLAGS += -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
-endif