1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
/*
* For copyright information see LISENCE file
* XMPI configuation header file.
*
* $Id: acconfig.h,v 1.5 2001/07/11 15:42:51 bbarrett Exp $
*
* Function: - OS, CPU and compiler dependent configuration
*/
#ifndef _XMPI_CONFIG_H
#define _XMPI_CONFIG_H
@TOP@
#define XMPI_ARCH "unknown"
#define XMPI_VERSION "0.0.0"
/*
* Define as 1 if you have it.
* Slightly risky here -- only define this if is hasn't already been
* defined. Prevents redefinitions from other libraries (hopefully
* they're set to the same value!)
*/
#ifndef HAVE_ATEXIT
#define HAVE_ATEXIT 0
#endif
#ifndef HAVE_GETCWD
#define HAVE_GETCWD 0
#endif
/*
* Define as 1 if you need it.
*/
#define NEED_SYS_SELECT_H 0
/*
* Various LAM tests
*/
#if 0
#define LAM_HAVE_BSD43_FD_PASSING 0
#define LAM_HAVE_BSD44_FD_PASSING 0
#define LAM_HAVE_SYSV_FD_PASSING 0
#define LAM_HAVE_BSD_PTYS 0
#define LAM_HAVE_SYSV_PTYS 0
#endif
#define SIZEOF_SHORT 0
#define SIZEOF_INT 0
#define SIZEOF_LONG 0
#define SIZEOF_FLOAT 0
#define SIZEOF_DOUBLE 0
#define WORDS_BIGENDIAN 0
@BOTTOM@
//
// Sun Workshop 5.x (and probably prior) have broken implementations
// of std::getline that we have to code around. Arrggh!!!
//
#define XMPI_HAVE_BROKEN_GETLINE bogus
#endif /* _XMPI_CONFIG_H */
|