1
1

Need to #define MPIR_Status_set_bytes in both places

This commit was SVN r2823.
Этот коммит содержится в:
Jeff Squyres 2004-09-23 14:20:07 +00:00
родитель bbfb946b0e
Коммит b3ec820527
2 изменённых файлов: 11 добавлений и 1 удалений

Просмотреть файл

@ -14,7 +14,15 @@
/* These function #defines are separated from the MPI_File_* (and
related) #defines mainly on principle */
/* Internal ROMIO functions -- found by the illegal symbol report */
/* Some places only include adio.h, not mpio.h, but still use
MPIR_Status_set_bytes. So add a #define here for it for those
cases */
#ifndef MPIR_Status_set_bytes
#define MPIR_Status_set_bytes ROMIO_PREFIX(MPIR_Status_set_bytes)
#endif
/* Internal ROMIO functions (found by the illegal symbol report) */
#define ADIO_Close ROMIO_PREFIX(ADIO_Close)
#define ADIO_End ROMIO_PREFIX(ADIO_End)

Просмотреть файл

@ -111,6 +111,8 @@
#undef MPI_FILE_NULL
/* Let's not use MPIR_Status_set_bytes */
#ifndef MPIR_Status_set_bytes
#define MPIR_Status_set_bytes ROMIO_PREFIX(MPIR_Status_set_bytes)
#endif
#endif /* MCA_IO_ROMIO_CONV_H */