summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-06-09 20:15:09 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-06-09 20:15:09 (GMT)
commit7d5ef3e8adb287be145a03f47e2099a04cb7a8cb (patch)
tree490f068cf4e2f51ca0dc66f58069aa807d697759 /configure.in
parent745c40b75368e3a5a6a327154347d973ab1702b1 (diff)
downloadhdf5-7d5ef3e8adb287be145a03f47e2099a04cb7a8cb.zip
hdf5-7d5ef3e8adb287be145a03f47e2099a04cb7a8cb.tar.gz
hdf5-7d5ef3e8adb287be145a03f47e2099a04cb7a8cb.tar.bz2
[svn-r17020] Description:
Bring revision 17019 from trunk to 1.8 branch: Break out the configure check for fseeko & ftello from lseek64/fseek64/ ftruncate64, since the check for the latter routines is not a valid check for the former routines. Tested on: (h5committested on trunk)
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 2ad9bea..6660a79 100644
--- a/configure.in
+++ b/configure.in
@@ -1287,8 +1287,9 @@ esac
AC_TRY_COMPILE([#include <sys/types.h>],
[off64_t n = 0;],
- [AC_CHECK_FUNCS([lseek64 fseek64 ftruncate64 fseeko ftello])],
- [AC_MSG_RESULT([skipping test for lseek64(), fseek64(), ftruncate64(), fseeko(), and ftello()])])
+ [AC_CHECK_FUNCS([lseek64 fseek64 ftruncate64])],
+ [AC_MSG_RESULT([skipping test for lseek64(), fseek64(), ftruncate64()])])
+AC_CHECK_FUNCS(fseeko ftello)
AC_TRY_COMPILE([
#include <sys/types.h>
#include <sys/stat.h>],