diff options
author | Robb Matzke <matzke@llnl.gov> | 1999-03-18 13:42:52 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1999-03-18 13:42:52 (GMT) |
commit | 826dbc81465d5d45cb96960ddeee97fb8b536f2d (patch) | |
tree | ee7e208308f918dd90d23ab64cdb793158efe4f3 /src/H5config.h.in | |
parent | 4ec2ca72ba19629e76fe9de26f82119b0929b307 (diff) | |
download | hdf5-826dbc81465d5d45cb96960ddeee97fb8b536f2d.zip hdf5-826dbc81465d5d45cb96960ddeee97fb8b536f2d.tar.gz hdf5-826dbc81465d5d45cb96960ddeee97fb8b536f2d.tar.bz2 |
[svn-r1149] ./configure.in
./configure [REGENERATED]
./src/H5config.h.in [REGENERATED]
./src/H5private.h
Temporarily commented out the code that tries to link a simple
MPI-IO application because I'm not sure how to pass $LDFLAGS
and $LIBS to the compiler.
Removed the `--enable-parallel=ibm' switch because the library
we link with is either -lmpcc or -lmpcc_r but not both. The
only way to tell is to see what compiler was specified (mpcc
or mpcc_r) but if that compiler is specified then we don't
need any libraries (the compiler script supplies them). That
leaves just two choices: the user must use a compiler script:
CC=mpcc ./configure
or the user must state which library is desired:
LDFLAGS='-lmpcc' ./configure --enable-parallel
Checks for <setjmp.h>, longjmp(), and signal(). We don't check
for setjmp() because it could be a macro (in fact, Posix
requires it to be a macro) and if longjmp() is present then
setjmp() is probably present too ;-)
./src/H5detect.c
The alignment detection loop uses SIGBUS and setjmp/longjmp
instead of fork/wait in order to get around bugs with forking
in conjunction with mpich. This hasn't been tested on the
SP-2 yet but it does work on the DEC Alpha.
./test/Makefile.in
./testpar/Makefile.in
./tools/Makefile.in
Changed the order that libraries are linked so -lhdf5 is
always before $LDFLAGS.
Diffstat (limited to 'src/H5config.h.in')
-rw-r--r-- | src/H5config.h.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/H5config.h.in b/src/H5config.h.in index eed36d5..0b8340e 100644 --- a/src/H5config.h.in +++ b/src/H5config.h.in @@ -173,6 +173,9 @@ /* Define if you have the ioctl function. */ #undef HAVE_IOCTL +/* Define if you have the longjmp function. */ +#undef HAVE_LONGJMP + /* Define if you have the lseek64 function. */ #undef HAVE_LSEEK64 @@ -182,6 +185,9 @@ /* Define if you have the sigaction function. */ #undef HAVE_SIGACTION +/* Define if you have the signal function. */ +#undef HAVE_SIGNAL + /* Define if you have the snprintf function. */ #undef HAVE_SNPRINTF @@ -197,6 +203,9 @@ /* Define if you have the <mfhdf.h> header file. */ #undef HAVE_MFHDF_H +/* Define if you have the <setjmp.h> header file. */ +#undef HAVE_SETJMP_H + /* Define if you have the <stddef.h> header file. */ #undef HAVE_STDDEF_H |