diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2022-07-18 17:23:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-18 17:23:37 (GMT) |
commit | f6997681335f0b5fe2e8904f9108a71c5200fb2d (patch) | |
tree | edc5aabdcae1035ce6e888bde550e15b1ad2e878 /configure.ac | |
parent | 7f9a5f0b6e58e9c04a18ea83ff0400f95294c6ac (diff) | |
download | hdf5-f6997681335f0b5fe2e8904f9108a71c5200fb2d.zip hdf5-f6997681335f0b5fe2e8904f9108a71c5200fb2d.tar.gz hdf5-f6997681335f0b5fe2e8904f9108a71c5200fb2d.tar.bz2 |
1.12 eliminate unnecessary errors in the error stack (#1880)
* Eliminate unnecessary error output
* Fix merge typo
* fix format
* Fix object address to tokens
* Fix conflict
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index e3d8971..d32fdd5 100644 --- a/configure.ac +++ b/configure.ac @@ -1366,9 +1366,8 @@ case "`uname`" in UNAME_CYGWIN="yes" ;; MINGW*) - # The Winsock library AC_CHECK_HEADERS([io.h winsock2.h sys/timeb.h]) - AC_CHECK_LIB([ws2_32], [GetUserName]) + AC_HAVE_LIBRARY([ws2_32]) ;; *) AC_CHECK_HEADERS([io.h winsock2.h sys/timeb.h]) |