+2005-06-20 Erez Zadok <ezk@cs.sunysb.edu>
+
+ * minor new port: i386-pc-linux-suse9.3.
+
+Mon Jun 20 17:48:58 2005 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
+
+ * configure.in (linux/nfs_mount.h): Move __KERNEL__ definition up
+ so u32 is available for <linux/sunrpc/msg_prot.h>.
+
2005-06-16 Erez Zadok <ezk@cs.sunysb.edu>
* amd/mapc.c (maptypes): move MAP_EXEC after MAP_FILE, because
dnl
dnl AC_CONFIG_AUX_DIR(m4)
AC_PREREQ(2.52)
-AC_REVISION($Revision: 1.96 $)
+AC_REVISION($Revision: 1.97 $)
AC_COPYRIGHT([Copyright (c) 1997-2005 Erez Zadok])
dnl find out system type
AC_MSG_NOTICE(*** SYSTEM TYPES ***)
linux/nfs_mount.h \
], [], [],
[
+/*
+ * Needed to find nfs2_fh and nfs_fh on older systems (yellowdog2.3, gentoo,
+ * etc.)
+ * Needs to be defined before <asm/types.h> so u32 is available for
+ * <linux/sunrpc/msg_prot.h>.
+ */
+# ifndef __KERNEL__
+# define __KERNEL__
+# endif /* __KERNEL__ */
#ifdef HAVE_LINUX_SOCKET_H
# include <linux/socket.h>
#endif /* HAVE_LINUX_SOCKET_H */
/* next dev_t lines needed due to changes in kernel code */
#undef dev_t
#define dev_t unsigned short /* compatible with Red Hat and SuSE */
-/* needed to find nfs2_fh and nfs_fh on older systems (yellowdog2.3, gentoo, etc.) */
-# ifndef __KERNEL__
-# define __KERNEL__
-# endif /* __KERNEL__ */
])
dnl ======================================================================