From a30778b34a12fc917300c7a0a98914f0f7e607fc Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 1 Sep 2009 17:39:51 +0200 Subject: [PATCH] server: Disable large files for procfs on Solaris. --- server/procfs.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server/procfs.c b/server/procfs.c index 3b74e14f6ea..f7d9073607c 100644 --- a/server/procfs.c +++ b/server/procfs.c @@ -39,6 +39,9 @@ #ifdef USE_PROCFS +/* procfs doesn't support large files */ +# undef _FILE_OFFSET_BITS +# define _FILE_OFFSET_BITS 32 #include static int open_proc_as( struct process *process, int flags )