2
0
mirror of https://github.com/HDFGroup/hdf5.git synced 2025-03-31 17:10:47 +08:00

[svn-r14047] Purpose: Adding H5_HAVE_SIGLONGJMP macro to configure.

Description: Configure will now detect the presence of the 'siglongjmp' function. If present,
             the macro H5_HAVE_SIGLONGJMP will be defined in src/H5pubconf.h.

Tested: kagiso, smirom, linew
This commit is contained in:
Mike McGreevy 2007-08-07 16:01:15 -05:00
parent c897b7ea07
commit 753a60f184
3 changed files with 7 additions and 3 deletions

5
configure vendored

@ -1,5 +1,5 @@
#! /bin/sh
# From configure.in Id: configure.in 14025 2007-07-30 19:55:28Z epourmal .
# From configure.in Id: configure.in 14027 2007-07-30 19:59:05Z epourmal .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61 for HDF5 1.8.0-beta3post1.
#
@ -46909,7 +46909,8 @@ done
for ac_func in BSDgettimeofday longjmp setsysinfo sigaction
for ac_func in BSDgettimeofday siglongjmp longjmp setsysinfo sigaction
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
{ echo "$as_me:$LINENO: checking for $ac_func" >&5

@ -1850,7 +1850,7 @@ dnl Check for functions.
dnl tmpfile needed by h5pdiff.
dnl
AC_CHECK_FUNCS(alarm fork frexpf frexpl gethostname getpwuid getrusage)
AC_CHECK_FUNCS(BSDgettimeofday longjmp setsysinfo sigaction)
AC_CHECK_FUNCS(BSDgettimeofday siglongjmp longjmp setsysinfo sigaction)
AC_CHECK_FUNCS(signal snprintf vasprintf strdup system waitpid)
AC_CHECK_FUNCS(rand_r random srandom)
AC_CHECK_FUNCS(tmpfile)

@ -252,6 +252,9 @@
/* Define to 1 if you have the `sigaction' function. */
#undef HAVE_SIGACTION
/* Define to 1 if you have the `siglongjmp' function. */
#undef HAVE_SIGLONGJMP
/* Define to 1 if you have the `signal' function. */
#undef HAVE_SIGNAL