From 6b67a185db7d655e0ce74f47b6d51458ab4dc43b Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Mon, 16 Oct 2006 19:25:18 +0000 Subject: Don't check for AC_HEADER_DIRENT on any mingw32 platform. (refs #3) --- configure.ac | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index c6b27fea..5ce21491 100644 --- a/configure.ac +++ b/configure.ac @@ -84,9 +84,13 @@ Upgrade or read the documentation for alternatives]]) ### Checks for header files. -if test "$target_os" != "mingw32"; then +case $target_os in +mingw32*) ;; +winnt*) ;; +*) AC_HEADER_DIRENT -fi + ;; +esac AC_HEADER_STDC AC_HEADER_SYS_WAIT -- cgit v1.2.3