[kaffe] CVS kaffe (robilad): Added check for fstat

Kaffe CVS cvs-commits at kaffe.org
Wed Aug 3 18:02:54 PDT 2005


PatchSet 6780 
Date: 2005/08/04 00:57:40
Author: robilad
Branch: HEAD
Tag: (none) 
Log:
Added check for fstat

2005-08-03 Dalibor Topic  <robilad at kaffe.org>

        * configure.ac: Check for fstat.

        Reported by:  Ito Kazumitsu  <kaz at maczuka.gcd.org>

Members: 
	ChangeLog:1.4305->1.4306 
	configure:1.474->1.475 
	configure.ac:1.157->1.158 
	config/config.h.in:1.148->1.149 

Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.4305 kaffe/ChangeLog:1.4306
--- kaffe/ChangeLog:1.4305	Wed Aug  3 23:09:14 2005
+++ kaffe/ChangeLog	Thu Aug  4 00:57:40 2005
@@ -1,5 +1,11 @@
 2005-08-03 Dalibor Topic  <robilad at kaffe.org>
 
+	* configure.ac: Check for fstat.
+
+	Reported by:  Ito Kazumitsu  <kaz at maczuka.gcd.org>
+
+2005-08-03 Dalibor Topic  <robilad at kaffe.org>
+
 	* test/regression/BufferedInputStreamAvailableTest.java:
 	Use file TestScript for testing input, as it exists in
 	both builddir and srcdir, so if these are different, the 
Index: kaffe/configure
diff -u kaffe/configure:1.474 kaffe/configure:1.475
--- kaffe/configure:1.474	Sat Jul 30 16:39:00 2005
+++ kaffe/configure	Thu Aug  4 00:57:41 2005
@@ -37934,7 +37934,8 @@
 
 
 
-for ac_func in select socket getsockname getpagesize
+
+for ac_func in select socket getsockname getpagesize fstat
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
 echo "$as_me:$LINENO: checking for $ac_func" >&5
Index: kaffe/configure.ac
diff -u kaffe/configure.ac:1.157 kaffe/configure.ac:1.158
--- kaffe/configure.ac:1.157	Sat Jul 30 16:39:06 2005
+++ kaffe/configure.ac	Thu Aug  4 00:57:46 2005
@@ -1330,7 +1330,7 @@
 AC_FUNC_MMAP
 AC_FUNC_UTIME_NULL
 
-AC_CHECK_FUNCS([select socket getsockname getpagesize])
+AC_CHECK_FUNCS([select socket getsockname getpagesize fstat])
 AC_CHECK_FUNCS([memcpy memmove])
 AC_CHECK_FUNCS([mkdir rmdir])
 AC_CHECK_FUNCS([getcwd chdir getwd gettimeofday ftime time uname getuid])
Index: kaffe/config/config.h.in
diff -u kaffe/config/config.h.in:1.148 kaffe/config/config.h.in:1.149
--- kaffe/config/config.h.in:1.148	Sat Jul 30 16:39:06 2005
+++ kaffe/config/config.h.in	Thu Aug  4 00:57:49 2005
@@ -135,6 +135,9 @@
 /* Define to 1 if you have the `fork' function. */
 #undef HAVE_FORK
 
+/* Define to 1 if you have the `fstat' function. */
+#undef HAVE_FSTAT
+
 /* Define to 1 if you have the `fsync' function. */
 #undef HAVE_FSYNC
 



More information about the kaffe mailing list