summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorMike McGreevy <mamcgree@hdfgroup.org>2009-10-16 20:16:00 (GMT)
committerMike McGreevy <mamcgree@hdfgroup.org>2009-10-16 20:16:00 (GMT)
commitdfb22d02b04f70beb06e1280e2080ae32d4c20c1 (patch)
treea7a9b428669d9ffe972e5a07279f80f4a3c895dd /config
parent091fb5951ca8845a1679b8dc474a63ade63260a9 (diff)
downloadhdf5-dfb22d02b04f70beb06e1280e2080ae32d4c20c1.zip
hdf5-dfb22d02b04f70beb06e1280e2080ae32d4c20c1.tar.gz
hdf5-dfb22d02b04f70beb06e1280e2080ae32d4c20c1.tar.bz2
[svn-r17663] Purpose:
configure cleanup Description 1. Removed check that disables shared libraries when pgcc is used. Apparently they previously did not work with libtool 1.5.14 and on mir, neither of which is in use anymore. Testing on jam and amani appear fine, so this check is unnecessary. 2. Removed check that disables shared C++ libraries when -xarch is used to enable 64 bit mode. We now use m64 flag to build 64 bit binaries, so we shouldn't explicitly disable shared C++ libraries if -xarch is discovered. 3. Removed old configure output summary section from configure.in, since we now use the libhdf5.settings file. 4. Updated powerpc-ibm-aix5.x config file to once again put c99 flag into H5_CFLAGS (and thus NOT get into h5cc), as decided in our dev meeting. Tested: h5committest full build with pgcc on jam / amani
Diffstat (limited to 'config')
-rw-r--r--config/powerpc-ibm-aix5.x3
1 files changed, 2 insertions, 1 deletions
diff --git a/config/powerpc-ibm-aix5.x b/config/powerpc-ibm-aix5.x
index 11a55fa..51952bc 100644
--- a/config/powerpc-ibm-aix5.x
+++ b/config/powerpc-ibm-aix5.x
@@ -48,7 +48,8 @@ case $CC_BASENAME in
enable_shared="${enable_shared:-no}"
# Use -D_LARGE_FILES by default to support large file size.
# Make sure this is applied to other API compile options such as C++.
- AM_CFLAGS="-qlanglvl=stdc99 -D_LARGE_FILES $AM_CFLAGS"
+ AM_CFLAGS="-D_LARGE_FILES $AM_CFLAGS"
+ H5_CFLAGS="-qlanglvl=stdc99 $H5_CFLAGS"
DEBUG_CFLAGS="-g -qfullpath"
DEBUG_CPPFLAGS=
# -O causes test/dtypes to fail badly. Turn it off for now.