aboutsummaryrefslogtreecommitdiff
path: root/configure.ac.pamphlet
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac.pamphlet')
-rw-r--r--configure.ac.pamphlet14
1 files changed, 12 insertions, 2 deletions
diff --git a/configure.ac.pamphlet b/configure.ac.pamphlet
index d0498d1c..bdc65f0a 100644
--- a/configure.ac.pamphlet
+++ b/configure.ac.pamphlet
@@ -225,7 +225,17 @@ seem necessary. That restriction should be removed as soon as possible.
<<C headers and libraries>>=
AC_CHECK_HEADERS([sys/stat.h],
[],
- [AC_MSG_ERROR([OpenAxiom needs <sys/stat.h>.])])
+ [AC_MSG_ERROR([OpenAxiom needs <sys/stat.h>])])
+case $host in
+ *mingw*)
+ ;;
+ *)
+ AC_CHECK_HEADERS([dirent.h],
+ [],
+ [AC_MSG_ERROR([OpenAxiom needs <dirent.h>])])
+ ;;
+esac
+
AC_CHECK_HEADERS([unistd.h], [],
[AC_MSG_ERROR([OpenAxiom needs <unistd.h>])])
AC_CHECK_DECLS([getuid, geteuid, getgid, getegid], [], [],
@@ -1059,7 +1069,7 @@ information:
<<Autoconf init>>=
sinclude(config/open-axiom.m4)
sinclude(config/aclocal.m4)
-AC_INIT([OpenAxiom], [1.2.0-2008-03-16],
+AC_INIT([OpenAxiom], [1.2.0-2008-03-17],
[open-axiom-bugs@lists.sf.net])
@