diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1999-06-03 00:41:37 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1999-06-03 00:41:37 (GMT) |
commit | 14364b925794857c720a5ea2826248dd213a1e47 (patch) | |
tree | cefe456a0d30cea3548baf34f11d6478087d8a90 /src | |
parent | 93a6938cef6dc3035aad9ed0a561fca0f070de96 (diff) | |
download | hdf5-14364b925794857c720a5ea2826248dd213a1e47.zip hdf5-14364b925794857c720a5ea2826248dd213a1e47.tar.gz hdf5-14364b925794857c720a5ea2826248dd213a1e47.tar.bz2 |
[svn-r1294] Removed the pre-defined macro DOS386. It was used to identify
being in the TFLOPS machine but it is not recognized by the system.
TFLOPS uses __PUMAGON__ to identify itself.
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Fmpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Fmpio.c b/src/H5Fmpio.c index b960741..971ced5 100644 --- a/src/H5Fmpio.c +++ b/src/H5Fmpio.c @@ -69,7 +69,7 @@ static intn interface_initialize_g = 0; /* Global var to allow elimination of redundant metadata writes * to be controlled by the value of an environment variable. */ /* Use the elimination by default unless this is the Intel Red machine */ -#ifndef DOS386 +#ifndef __PUMAGON__ hbool_t H5_mpi_1_metawrite_g = TRUE; #else hbool_t H5_mpi_1_metawrite_g = FALSE; |