diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2009-12-01 14:20:41 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2009-12-01 14:20:41 (GMT) |
commit | c909c5e7cf43828027e52a21b2dbea220134586b (patch) | |
tree | 9b3365e02a583c92d09b59dc77b8e771bb31fa79 /configure.in | |
parent | b4b16947b781c8e14c3ed874bb082cd76ecc2292 (diff) | |
download | hdf5-c909c5e7cf43828027e52a21b2dbea220134586b.zip hdf5-c909c5e7cf43828027e52a21b2dbea220134586b.tar.gz hdf5-c909c5e7cf43828027e52a21b2dbea220134586b.tar.bz2 |
[svn-r17941] Description:
Bring r17939 from trunk to 1.8 branch:
Handle external links from symlinked files by adding another check to
look for "child" files for links from the actual location of the "parent" file,
instead of from the location of the symlink.
Tested on:
FreeBSD/32 6.3 (duty)
(h5committested on trunk)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 53531af..6884ca4 100644 --- a/configure.in +++ b/configure.in @@ -1989,7 +1989,8 @@ dnl 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) +AC_CHECK_FUNCS(snprintf srandom strdup symlink system) +AC_CHECK_FUNCS(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 |