diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2010-04-30 15:58:23 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2010-04-30 15:58:23 (GMT) |
commit | d44e26b78a60bdccb59e2935a07a0cbef7eb5321 (patch) | |
tree | d62631980c58a59c056cb6b83357dec8fecc8fd8 /vms | |
parent | ff0135b9b8ce651cdd03756bda2f2537abd80ea5 (diff) | |
download | hdf5-d44e26b78a60bdccb59e2935a07a0cbef7eb5321.zip hdf5-d44e26b78a60bdccb59e2935a07a0cbef7eb5321.tar.gz hdf5-d44e26b78a60bdccb59e2935a07a0cbef7eb5321.tar.bz2 |
[svn-r18679] Albert fixed the bug (#1764) in H5detect.c and added a few new macros in H5config.h.in.
I added them - H5_HAVE_SETJMP, H5_HAVE_SIGPROCMASK, and H5_HAVE_SIGSETJMP.
Tested on OpenVMS and everything passed.
Diffstat (limited to 'vms')
-rw-r--r-- | vms/src/h5pubconf.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/vms/src/h5pubconf.h b/vms/src/h5pubconf.h index 7a1f7a9..06b6569 100644 --- a/vms/src/h5pubconf.h +++ b/vms/src/h5pubconf.h @@ -254,6 +254,9 @@ /* Define to 1 if you have the `rand_r' function. */ /* #define H5_HAVE_RAND_R 1 */ +/* Define to 1 if you have the `setjmp' function. */ +#define H5_HAVE_SETJMP 1 + /* Define to 1 if you have the <setjmp.h> header file. */ #define H5_HAVE_SETJMP_H 1 @@ -266,6 +269,12 @@ /* Define to 1 if you have the `signal' function. */ #define H5_HAVE_SIGNAL 1 +/* Define to 1 if you have the `sigprocmask' function. */ +#define H5_HAVE_SIGPROCMASK 1 + +/* Define to 1 if you have the `sigsetjmp' function. */ +#define H5_HAVE_SIGSETJMP 1 + /* Define to 1 if you have the `snprintf' function. */ #define H5_HAVE_SNPRINTF 1 |