Alexandre Julliard : server: Disable large files for procfs on Solaris.
1 Sep
2009
1 Sep
'09
11:06 a.m.
Module: wine Branch: master Commit: a30778b34a12fc917300c7a0a98914f0f7e607fc URL: http://source.winehq.org/git/wine.git/?a=commit;h=a30778b34a12fc917300c7a0a9... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Tue Sep 1 17:39:51 2009 +0200 server: Disable large files for procfs on Solaris. --- server/procfs.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/server/procfs.c b/server/procfs.c index 3b74e14..f7d9073 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 <procfs.h> static int open_proc_as( struct process *process, int flags )
5947
Age (days ago)
5947
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard