Hi,
While playing with libev's ev_stat I had some seriously weird result
in the ev_statdata members, after a little bit of investigation it
boils down to the fact that python (i'm using libev with python) has
been compiled with support for large files while libev hasn't.
The small fix below allows libev to compile with large file support if
the system supports it.
small fix:
--- configure.ac 2008-01-25 16:49:11.000000000 +0100
+++ configure.ac.new 2008-03-02 09:29:43.000000000 +0100
@@ -8,6 +8,8 @@
AC_PROG_INSTALL
AC_PROG_LIBTOOL
+AC_SYS_LARGEFILE
+
if test "x$GCC" = xyes ; then
CFLAGS="$CFLAGS -O3"
fi
hope it helps
malek
_______________________________________________
libev mailing list
[email protected]
http://lists.schmorp.de/cgi-bin/mailman/listinfo/libev