diff options
author | John Mainzer <mainzer@hdfgroup.org> | 2004-09-07 21:38:49 (GMT) |
---|---|---|
committer | John Mainzer <mainzer@hdfgroup.org> | 2004-09-07 21:38:49 (GMT) |
commit | 7163f6d622db8cc8517704a936c45019c3eb1f9d (patch) | |
tree | 448626cb8400ec9d4bea1b367391c47cac492b7b /config/powerpc-ibm-aix5.x | |
parent | 2ef1d47a76dbfbde0b4bce737a3d6a3f9800615d (diff) | |
download | hdf5-7163f6d622db8cc8517704a936c45019c3eb1f9d.zip hdf5-7163f6d622db8cc8517704a936c45019c3eb1f9d.tar.gz hdf5-7163f6d622db8cc8517704a936c45019c3eb1f9d.tar.bz2 |
[svn-r9220] Purpose:
Fix configure bug that appears on SDSC DataStar.
Description:
Two cached "sizeof"s in ./config/powerpc-ibm-aix5.x cause builds
on SDSC Datastar to choke.
Solution:
Commented out the offending "sizeof"s. Included comments indicating
the reason for the change.
Platforms tested:
copper
Misc. update:
n/a
Diffstat (limited to 'config/powerpc-ibm-aix5.x')
-rw-r--r-- | config/powerpc-ibm-aix5.x | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/config/powerpc-ibm-aix5.x b/config/powerpc-ibm-aix5.x index cbe21b9..3b6b772 100644 --- a/config/powerpc-ibm-aix5.x +++ b/config/powerpc-ibm-aix5.x @@ -83,13 +83,15 @@ ac_cv_sizeof_uint8_t=${ac_cv_sizeof_uint8_t=1} ac_cv_sizeof_int_least8_t=${ac_cv_sizeof_int_least8_t=1} ac_cv_sizeof_uint_least8_t=${ac_cv_sizeof_uint_least8_t=1} ac_cv_sizeof_int_fast8_t=${ac_cv_sizeof_int_fast8_t=1} -ac_cv_sizeof_uint_fast8_t=${ac_cv_sizeof_uint_fast8_t=4} +# removed to deal with wierdness on SDSC DataStar -- JRM 9/7/04 +#ac_cv_sizeof_uint_fast8_t=${ac_cv_sizeof_uint_fast8_t=4} ac_cv_sizeof_int16_t=${ac_cv_sizeof_int16_t=2} ac_cv_sizeof_uint16_t=${ac_cv_sizeof_uint16_t=2} ac_cv_sizeof_int_least16_t=${ac_cv_sizeof_int_least16_t=2} ac_cv_sizeof_uint_least16_t=${ac_cv_sizeof_uint_least16_t=2} ac_cv_sizeof_int_fast16_t=${ac_cv_sizeof_int_fast16_t=4} -ac_cv_sizeof_uint_fast16_t=${ac_cv_sizeof_uint_fast16_t=4} +# removed to deal with wierdness on SDSC DataStar -- JRM 9/7/04 +#ac_cv_sizeof_uint_fast16_t=${ac_cv_sizeof_uint_fast16_t=4} ac_cv_sizeof_int32_t=${ac_cv_sizeof_int32_t=4} ac_cv_sizeof_uint32_t=${ac_cv_sizeof_uint32_t=4} ac_cv_sizeof_int_least32_t=${ac_cv_sizeof_int_least32_t=4} |