summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2013-08-14 18:09:08 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2013-08-14 18:09:08 (GMT)
commit4a51e83e60336381c7bb6370ec61b97fc9194918 (patch)
tree7201d20805838ba05a16b194803e235a6898fd7a /configure.ac
parent6155473c380ad5b436d68067100e04c8e47eb387 (diff)
downloadhdf5-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.ac9
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])