[Libsysio-commit] RedStorm: libsysio configure.in
Brought to you by:
lward
|
From: Lee W. <lw...@us...> - 2003-07-29 19:53:20
|
Update of /cvsroot/libsysio/libsysio
In directory sc8-pr-cvs1:/tmp/cvs-serv12924
Modified Files:
Tag: RedStorm
configure.in
Log Message:
Pull in recent changes from the HEAD branch, to incorporate fixes there.
Index: configure.in
===================================================================
RCS file: /cvsroot/libsysio/libsysio/configure.in,v
retrieving revision 1.5.6.2
retrieving revision 1.5.6.3
diff -u -w -b -B -p -r1.5.6.2 -r1.5.6.3
--- configure.in 19 May 2003 13:51:20 -0000 1.5.6.2
+++ configure.in 29 Jul 2003 19:05:06 -0000 1.5.6.3
@@ -213,6 +213,19 @@ AC_MSG_RESULT($have__st_ino)
if test x$have__st_ino = xyes; then
AC_DEFINE(HAVE__ST_INO)
fi
+# Check for st_gen
+#
+AC_MSG_CHECKING(for st_gen)
+AC_TRY_COMPILE([
+#include <sys/stat.h>],
+[struct stat st;
+st.st_gen = 0;],
+ have_st_gen=yes,
+ have_st_gen=no)
+AC_MSG_RESULT($have_st_gen)
+if test x$have_st_gen = xyes; then
+ AC_DEFINE(HAVE_GENERATION)
+fi
# Check for getdents64 call
#
|