summaryrefslogtreecommitdiffstats
path: root/config/intel-osf1
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>1999-02-10 03:20:45 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>1999-02-10 03:20:45 (GMT)
commita98ac46b86b20fe7b5f674250b8d2bc00ef789b8 (patch)
treed1f7c5ba9249a204e146b7d59ae5c23ccc8412c4 /config/intel-osf1
parent12d679104c256599bca8146c027831f3181b3f91 (diff)
downloadhdf5-a98ac46b86b20fe7b5f674250b8d2bc00ef789b8.zip
hdf5-a98ac46b86b20fe7b5f674250b8d2bc00ef789b8.tar.gz
hdf5-a98ac46b86b20fe7b5f674250b8d2bc00ef789b8.tar.bz2
[svn-r1061] Adjusted for v1.1 new configuration.
Hard coded against intN_t types. They are not supported by Intel Red but configure thinks they are by default for cross-compiler. (Need a better solution for this.)
Diffstat (limited to 'config/intel-osf1')
-rw-r--r--config/intel-osf112
1 files changed, 11 insertions, 1 deletions
diff --git a/config/intel-osf1 b/config/intel-osf1
index 4479a6d..862d569 100644
--- a/config/intel-osf1
+++ b/config/intel-osf1
@@ -19,7 +19,7 @@ AR=${AR:-xar}
RANLIB=:
# Additional libraries
-LDFLAGS="-L./ -L../ -lnoop_stubs"
+LDFLAGS="$LDFLAGS -L./ -L../ -lnoop_stubs"
# How to run serial and parallel test programs
RUNSERIAL="yod -sz 1"
@@ -47,3 +47,13 @@ PROFILE_CPPFLAGS=
# long'. For instance, if the format would be `%lld' then set it to
# `ll' or if the format would be `%qd' set it to `q'.
hdf5_cv_printf_ll=${hdf5_cv_printf_ll='ll'}
+
+# Hard set sizeof_intn_t to 0 because they are not supported.
+ac_cv_sizeof_int16_t=${ac_cv_sizeof_int16_t='0'}
+ac_cv_sizeof_int32_t=${ac_cv_sizeof_int32_t='0'}
+ac_cv_sizeof_int64_t=${ac_cv_sizeof_int64_t='0'}
+ac_cv_sizeof_int8_t=${ac_cv_sizeof_int8_t='0'}
+ac_cv_sizeof_uint16_t=${ac_cv_sizeof_uint16_t='0'}
+ac_cv_sizeof_uint32_t=${ac_cv_sizeof_uint32_t='0'}
+ac_cv_sizeof_uint64_t=${ac_cv_sizeof_uint64_t='0'}
+ac_cv_sizeof_uint8_t=${ac_cv_sizeof_uint8_t='0'}