summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-11-23 21:45:23 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-11-23 21:45:23 (GMT)
commit58048308c5ce37479fbeff46a34305e870fd5ddc (patch)
tree4eeb0eb6459cc5892610f88bcca942923cee794f /configure.in
parent7b402d827d766fb16b16ff8660dc044564a1cfb5 (diff)
downloadhdf5-58048308c5ce37479fbeff46a34305e870fd5ddc.zip
hdf5-58048308c5ce37479fbeff46a34305e870fd5ddc.tar.gz
hdf5-58048308c5ce37479fbeff46a34305e870fd5ddc.tar.bz2
[svn-r17925] Description:
Bring r17924 from trunk to 1.8 branch: Add detection for POSIX lstat() routine to configure script (mostly for non-UNIX/Linux machines) and add macro wrapper for it. Alphabetatize the system/library calls we test for, to make them easier to read. Removed the sigaction() detection & macro wrappers, since it's not used by the distribution currently. Tested on: FreeBSD/32 6.3 (duty) in debug mode (h5committested on trunk)
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in10
1 files changed, 4 insertions, 6 deletions
diff --git a/configure.in b/configure.in
index 4b27bea..53531af 100644
--- a/configure.in
+++ b/configure.in
@@ -1985,13 +1985,11 @@ AC_MSG_RESULT([no]))
dnl ----------------------------------------------------------------------
dnl Check for functions.
-dnl tmpfile needed by h5pdiff.
dnl
-AC_CHECK_FUNCS(alarm fork frexpf frexpl gethostname getpwuid getrusage)
-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)
+AC_CHECK_FUNCS(alarm BSDgettimeofday fork frexpf frexpl)
+AC_CHECK_FUNCS(gethostname getpwuid getrusage longjmp lstat)
+AC_CHECK_FUNCS(rand_r random setsysinfo siglongjmp signal)
+AC_CHECK_FUNCS(snprintf srandom strdup system tmpfile vasprintf waitpid)
dnl Check for vsnprintf() separately, so we can detect situations where it
dnl doesn't return the correct size for formatted strings that are too large