Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 580046 | Differences between
and this patch

Collapse All | Expand All

(-)a/wine-1.9.7/configure.ac (+1 lines)
Lines 538-543 Link Here
538
	valgrind/valgrind.h \
538
	valgrind/valgrind.h \
539
	zlib.h
539
	zlib.h
540
)
540
)
541
AC_HEADER_MAJOR()
541
AC_HEADER_STAT()
542
AC_HEADER_STAT()
542
543
543
dnl **** Checks for headers that depend on other ones ****
544
dnl **** Checks for headers that depend on other ones ****
(-)a/wine-1.9.7/dlls/ntdll/cdrom.c (+5 lines)
Lines 38-43 Link Here
38
#ifdef HAVE_SYS_STAT_H
38
#ifdef HAVE_SYS_STAT_H
39
# include <sys/stat.h>
39
# include <sys/stat.h>
40
#endif
40
#endif
41
#if defined(MAJOR_IN_MKDEV)
42
#include <sys/mkdev.h>
43
#elif defined(MAJOR_IN_SYSMACROS)
44
#include <sys/sysmacros.h>
45
#endif
41
#include <sys/types.h>
46
#include <sys/types.h>
42
47
43
#ifdef HAVE_SYS_IOCTL_H
48
#ifdef HAVE_SYS_IOCTL_H
(-)a/wine-1.9.7/dlls/ntdll/directory.c (+5 lines)
Lines 30-35 Link Here
30
#undef HAVE_GETDIRENTRIES
30
#undef HAVE_GETDIRENTRIES
31
31
32
#include <assert.h>
32
#include <assert.h>
33
#if defined(MAJOR_IN_MKDEV)
34
#include <sys/mkdev.h>
35
#elif defined(MAJOR_IN_SYSMACROS)
36
#include <sys/sysmacros.h>
37
#endif
33
#include <sys/types.h>
38
#include <sys/types.h>
34
#ifdef HAVE_DIRENT_H
39
#ifdef HAVE_DIRENT_H
35
# include <dirent.h>
40
# include <dirent.h>
(-)a/wine-1.9.7/dlls/ntdll/file.c (+5 lines)
Lines 57-62 Link Here
57
#ifdef HAVE_SYS_SOCKET_H
57
#ifdef HAVE_SYS_SOCKET_H
58
#include <sys/socket.h>
58
#include <sys/socket.h>
59
#endif
59
#endif
60
#if defined(MAJOR_IN_MKDEV)
61
#include <sys/mkdev.h>
62
#elif defined(MAJOR_IN_SYSMACROS)
63
#include <sys/sysmacros.h>
64
#endif
60
#ifdef HAVE_UTIME_H
65
#ifdef HAVE_UTIME_H
61
# include <utime.h>
66
# include <utime.h>
62
#endif
67
#endif
(-)a/wine-1.9.7/server/fd.c (+5 lines)
Lines 83-88 Link Here
83
#endif
83
#endif
84
#include <sys/stat.h>
84
#include <sys/stat.h>
85
#include <sys/time.h>
85
#include <sys/time.h>
86
#if defined(MAJOR_IN_MKDEV)
87
#include <sys/mkdev.h>
88
#elif defined(MAJOR_IN_SYSMACROS)
89
#include <sys/sysmacros.h>
90
#endif
86
#include <sys/types.h>
91
#include <sys/types.h>
87
#include <unistd.h>
92
#include <unistd.h>
88
#ifdef HAVE_SYS_SYSCALL_H
93
#ifdef HAVE_SYS_SYSCALL_H

Return to bug 580046