Update of /cvsroot/libsysio/libsysio
In directory sc8-pr-cvs1:/tmp/cvs-serv29635
Modified Files:
Tag: b_lustre
configure.in
Log Message:
fixes for build libsysio under Cygwin:
- add include/cygwin-defs.h
- disable _LARGEFILE64_SOURCE
- autoconf test for host_os "cygwin"
- exclude getdentries.c, bypass.c, stat64.c for cygwin build
- don't include <syscall.h>, <statvfs.h>
Index: configure.in
===================================================================
RCS file: /cvsroot/libsysio/libsysio/configure.in,v
retrieving revision 1.5.4.1
retrieving revision 1.5.4.2
diff -u -w -b -B -p -r1.5.4.1 -r1.5.4.2
--- configure.in 15 Aug 2003 07:43:14 -0000 1.5.4.1
+++ configure.in 18 Aug 2003 13:56:04 -0000 1.5.4.2
@@ -5,6 +5,8 @@ AC_CANONICAL_HOST
case "$host_os" in
linux-gnu)
;;
+ cygwin)
+ ;;
*)
AC_MSG_WARN('***' ${host_os}: Unsupported OS target)
;;
@@ -97,6 +99,8 @@ AC_ARG_WITH(cplant_tests,
esac],
[with_cplant_tests=no])
AM_CONDITIONAL(WITH_CPLANT_TESTS, test x$with_cplant_tests != xno)
+
+AM_CONDITIONAL(CYGWIN, test x$host_os = xcygwin)
# We keep the original values in `$config_*' and never modify them, so we
# can write them unchanged into config.make. Everything else uses
|