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 520-525 Link Here
520
	sys/strtio.h \
520
	sys/strtio.h \
521
	sys/syscall.h \
521
	sys/syscall.h \
522
	sys/sysinfo.h \
522
	sys/sysinfo.h \
523
	sys/sysmacros.h \
523
	sys/tihdr.h \
524
	sys/tihdr.h \
524
	sys/time.h \
525
	sys/time.h \
525
	sys/timeout.h \
526
	sys/timeout.h \
(-)a/wine-1.9.7/dlls/ntdll/cdrom.c (+6 lines)
Lines 28-33 Link Here
28
#include <string.h>
28
#include <string.h>
29
#include <stdarg.h>
29
#include <stdarg.h>
30
#include <stdio.h>
30
#include <stdio.h>
31
#include <features.h>
31
#ifdef HAVE_IO_H
32
#ifdef HAVE_IO_H
32
# include <io.h>
33
# include <io.h>
33
#endif
34
#endif
Lines 38-43 Link Here
38
#ifdef HAVE_SYS_STAT_H
39
#ifdef HAVE_SYS_STAT_H
39
# include <sys/stat.h>
40
# include <sys/stat.h>
40
#endif
41
#endif
42
#if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 23
43
    #ifdef HAVE_SYS_SYSMACROS_H
44
    #include <sys/sysmacros.h>
45
    #endif
46
#endif
41
#include <sys/types.h>
47
#include <sys/types.h>
42
48
43
#ifdef HAVE_SYS_IOCTL_H
49
#ifdef HAVE_SYS_IOCTL_H
(-)a/wine-1.9.7/dlls/ntdll/directory.c (+6 lines)
Lines 41-46 Link Here
41
#include <stdlib.h>
41
#include <stdlib.h>
42
#include <stdio.h>
42
#include <stdio.h>
43
#include <limits.h>
43
#include <limits.h>
44
#include <features.h>
44
#ifdef HAVE_MNTENT_H
45
#ifdef HAVE_MNTENT_H
45
#include <mntent.h>
46
#include <mntent.h>
46
#endif
47
#endif
Lines 89-94 Link Here
89
#ifdef HAVE_SYS_STATFS_H
90
#ifdef HAVE_SYS_STATFS_H
90
#include <sys/statfs.h>
91
#include <sys/statfs.h>
91
#endif
92
#endif
93
#if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 23
94
    #ifdef HAVE_SYS_SYSMACROS_H
95
    #include <sys/sysmacros.h>
96
    #endif
97
#endif
92
#ifdef HAVE_TERMIOS_H
98
#ifdef HAVE_TERMIOS_H
93
# include <termios.h>
99
# include <termios.h>
94
#endif
100
#endif
(-)a/wine-1.9.7/dlls/ntdll/file.c (+6 lines)
Lines 24-29 Link Here
24
#include <stdio.h>
24
#include <stdio.h>
25
#include <errno.h>
25
#include <errno.h>
26
#include <assert.h>
26
#include <assert.h>
27
#include <features.h>
27
#ifdef HAVE_UNISTD_H
28
#ifdef HAVE_UNISTD_H
28
# include <unistd.h>
29
# include <unistd.h>
29
#endif
30
#endif
Lines 57-62 Link Here
57
#ifdef HAVE_SYS_SOCKET_H
58
#ifdef HAVE_SYS_SOCKET_H
58
#include <sys/socket.h>
59
#include <sys/socket.h>
59
#endif
60
#endif
61
#if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 23
62
    #ifdef HAVE_SYS_SYSMACROS_H
63
    #include <sys/sysmacros.h>
64
    #endif
65
#endif
60
#ifdef HAVE_UTIME_H
66
#ifdef HAVE_UTIME_H
61
# include <utime.h>
67
# include <utime.h>
62
#endif
68
#endif
(-)a/wine-1.9.7/server/fd.c (+6 lines)
Lines 31-36 Link Here
31
#include <stdio.h>
31
#include <stdio.h>
32
#include <string.h>
32
#include <string.h>
33
#include <stdlib.h>
33
#include <stdlib.h>
34
#include <features.h>
34
#ifdef HAVE_POLL_H
35
#ifdef HAVE_POLL_H
35
#include <poll.h>
36
#include <poll.h>
36
#endif
37
#endif
Lines 88-93 Link Here
88
#ifdef HAVE_SYS_SYSCALL_H
89
#ifdef HAVE_SYS_SYSCALL_H
89
#include <sys/syscall.h>
90
#include <sys/syscall.h>
90
#endif
91
#endif
92
#if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 23
93
    #ifdef HAVE_SYS_SYSMACROS_H
94
    #include <sys/sysmacros.h>
95
    #endif
96
#endif
91
97
92
#include "ntstatus.h"
98
#include "ntstatus.h"
93
#define WIN32_NO_STATUS
99
#define WIN32_NO_STATUS

Return to bug 580046