Fiddle about with the configure script so it notices the need for
[sgt/agedu] / agedu.h
diff --git a/agedu.h b/agedu.h
index fecce2e..5a4e72b 100644 (file)
--- a/agedu.h
+++ b/agedu.h
 
 extern char pathsep;
 
-#ifdef HAVE_LSTAT64
+#if defined HAVE_LSTAT64 && HAVE_STAT64
 #define STRUCT_STAT struct stat64
 #define LSTAT lstat64
+#define STAT stat64
 #else
 #define STRUCT_STAT struct stat
 #define LSTAT lstat
+#define STAT stat
 #endif
+
+#define max(x,y) ( (x) > (y) ? (x) : (y) )
+#define min(x,y) ( (x) < (y) ? (x) : (y) )