[Box Backup-commit] COMMIT r1071 - box/chris/merge

boxbackup-dev at fluffy.co.uk boxbackup-dev at fluffy.co.uk
Mon Oct 16 20:25:18 BST 2006


Author: chris
Date: 2006-10-16 20:25:18 +0100 (Mon, 16 Oct 2006)
New Revision: 1071

Modified:
   box/chris/merge/configure.ac
Log:
Don't check for AC_HEADER_DIRENT on any mingw32 platform. (refs #3)


Modified: box/chris/merge/configure.ac
===================================================================
--- box/chris/merge/configure.ac	2006-10-16 19:23:47 UTC (rev 1070)
+++ box/chris/merge/configure.ac	2006-10-16 19:25:18 UTC (rev 1071)
@@ -84,9 +84,13 @@
 
 ### 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




More information about the Boxbackup-commit mailing list