diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2013-08-14 18:09:08 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2013-08-14 18:09:08 (GMT) |
commit | 4a51e83e60336381c7bb6370ec61b97fc9194918 (patch) | |
tree | 7201d20805838ba05a16b194803e235a6898fd7a /configure.ac | |
parent | 6155473c380ad5b436d68067100e04c8e47eb387 (diff) | |
download | hdf5-4a51e83e60336381c7bb6370ec61b97fc9194918.zip hdf5-4a51e83e60336381c7bb6370ec61b97fc9194918.tar.gz hdf5-4a51e83e60336381c7bb6370ec61b97fc9194918.tar.bz2 |
[svn-r24010] Remove check for GetConsoleScreenBuffer in CYGWIN (false positive).
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index a039a5b..e3eb700 100644 --- a/configure.ac +++ b/configure.ac @@ -2188,7 +2188,14 @@ AC_TRY_COMPILE([ ## ---------------------------------------------------------------------- ## How do we figure out the width of a tty in characters? ## -AC_CHECK_FUNCS([_getvideoconfig gettextinfo GetConsoleScreenBufferInfo]) +AC_CHECK_FUNCS([_getvideoconfig gettextinfo]) +case "`uname`" in + CYGWIN*) + ;; + *) + AC_CHECK_FUNCS([GetConsoleScreenBufferInfo]) + ;; +esac AC_CHECK_FUNCS([_scrsize ioctl]) AC_MSG_CHECKING([for struct videoconfig]) |