diff options
author | Vailin Choi <vchoi@hdfgroup.org> | 2008-04-02 18:29:17 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@hdfgroup.org> | 2008-04-02 18:29:17 (GMT) |
commit | 04c174bde0e54b4432c0502f63b279731dda2559 (patch) | |
tree | 6e1557f6cdfe14ea18907947070beb1b42a57785 /configure.in | |
parent | 977f4a6b8310ecb761b8d3ed7c89ff3e9385f1c2 (diff) | |
download | hdf5-04c174bde0e54b4432c0502f63b279731dda2559.zip hdf5-04c174bde0e54b4432c0502f63b279731dda2559.tar.gz hdf5-04c174bde0e54b4432c0502f63b279731dda2559.tar.bz2 |
[svn-r14789] Add handling for external link:
1. src/H5F.c, src/H5system.c: formulate path for mainfile
2. src/H5Lexternal.c: add search for target file
3. configure.in: add H5_HAVE_WINDOW_PATH
4. test/links.c: add tests for external link
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 2a4c06c..67f881c 100644 --- a/configure.in +++ b/configure.in @@ -2814,6 +2814,24 @@ else AC_MSG_RESULT([false]) fi +dnl ---------------------------------------------------------------------- +dnl Set the flag to indicate that the machine has window style pathname, +dnl that is, "drive-letter:\" (e.g. "C:") or "drive-letter:/" (e.g. "C:/"). +dnl (This flag should be _unset_ for all machines, except for Windows, where +dnl it's set in the custom Windows H5pubconf.h file) +dnl +AC_MSG_CHECKING([if the machine has window style path name]) +AC_CACHE_VAL([hdf5_have_window_path], [hdf5_have_window_path=no]) + +if test ${hdf5_have_window_path} = "yes"; then + AC_DEFINE([HAVE_WINDOW_PATH], [1], + [Define if your system has window style path name.]) + AC_MSG_RESULT([true]) +else + AC_MSG_RESULT([false]) +fi + + dnl ----------------------------------------------------------------------- dnl Set flag to indicate that the machine can handle conversion from dnl long double to integers accurately. This flag should be set "yes" for |