Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
c7cb3e6c
Commit
c7cb3e6c
authored
Dec 15, 2011
by
Francois Gouget
Committed by
Alexandre Julliard
Dec 15, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Use errno.h instead of the non-standard sys/errno.h header.
parent
759d76ae
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
3 additions
and
44 deletions
+3
-44
configure
configure
+0
-1
configure.ac
configure.ac
+0
-1
avicap32_main.c
dlls/avicap32/avicap32_main.c
+1
-3
joystick_linux.c
dlls/dinput/joystick_linux.c
+0
-3
joystick_linuxinput.c
dlls/dinput/joystick_linuxinput.c
+0
-3
file.c
dlls/ntdll/file.c
+0
-3
virtual.c
dlls/ntdll/virtual.c
+0
-3
v4l.c
dlls/qcap/v4l.c
+1
-3
joystick.c
dlls/winejoystick.drv/joystick.c
+1
-3
midi.c
dlls/wineoss.drv/midi.c
+0
-3
mmaux.c
dlls/wineoss.drv/mmaux.c
+0
-3
socket.c
dlls/ws2_32/socket.c
+0
-3
config.h.in
include/config.h.in
+0
-3
change.c
server/change.c
+0
-3
file.c
server/file.c
+0
-3
sock.c
server/sock.c
+0
-3
No files found.
configure
View file @
c7cb3e6c
...
...
@@ -5815,7 +5815,6 @@ for ac_header in \
sys/cdio.h
\
sys/elf32.h
\
sys/epoll.h
\
sys/errno.h
\
sys/event.h
\
sys/exec_elf.h
\
sys/filio.h
\
...
...
configure.ac
View file @
c7cb3e6c
...
...
@@ -460,7 +460,6 @@ AC_CHECK_HEADERS(\
sys/cdio.h \
sys/elf32.h \
sys/epoll.h \
sys/errno.h \
sys/event.h \
sys/exec_elf.h \
sys/filio.h \
...
...
dlls/avicap32/avicap32_main.c
View file @
c7cb3e6c
...
...
@@ -29,9 +29,7 @@
#ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
#ifdef HAVE_SYS_ERRNO_H
# include <sys/errno.h>
#endif
#include <errno.h>
#ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
#endif
...
...
dlls/dinput/joystick_linux.c
View file @
c7cb3e6c
...
...
@@ -43,9 +43,6 @@
# include <sys/ioctl.h>
#endif
#include <errno.h>
#ifdef HAVE_SYS_ERRNO_H
# include <sys/errno.h>
#endif
#ifdef HAVE_LINUX_IOCTL_H
# include <linux/ioctl.h>
#endif
...
...
dlls/dinput/joystick_linuxinput.c
View file @
c7cb3e6c
...
...
@@ -39,9 +39,6 @@
# include <sys/ioctl.h>
#endif
#include <errno.h>
#ifdef HAVE_SYS_ERRNO_H
# include <sys/errno.h>
#endif
#ifdef HAVE_LINUX_INPUT_H
# include <linux/input.h>
# undef SW_MAX
...
...
dlls/ntdll/file.c
View file @
c7cb3e6c
...
...
@@ -27,9 +27,6 @@
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#ifdef HAVE_SYS_ERRNO_H
#include <sys/errno.h>
#endif
#ifdef HAVE_LINUX_MAJOR_H
# include <linux/major.h>
#endif
...
...
dlls/ntdll/virtual.c
View file @
c7cb3e6c
...
...
@@ -23,9 +23,6 @@
#include <assert.h>
#include <errno.h>
#ifdef HAVE_SYS_ERRNO_H
#include <sys/errno.h>
#endif
#include <fcntl.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
...
...
dlls/qcap/v4l.c
View file @
c7cb3e6c
...
...
@@ -38,9 +38,7 @@
#ifdef HAVE_SYS_MMAN_H
#include <sys/mman.h>
#endif
#ifdef HAVE_SYS_ERRNO_H
#include <sys/errno.h>
#endif
#include <errno.h>
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
...
...
dlls/winejoystick.drv/joystick.c
View file @
c7cb3e6c
...
...
@@ -60,9 +60,7 @@
#define JOYDEV_NEW "/dev/input/js%d"
#define JOYDEV_OLD "/dev/js%d"
#endif
#ifdef HAVE_SYS_ERRNO_H
#include <sys/errno.h>
#endif
#include <errno.h>
#include "windef.h"
#include "winbase.h"
...
...
dlls/wineoss.drv/midi.c
View file @
c7cb3e6c
...
...
@@ -60,9 +60,6 @@
#ifdef HAVE_SYS_POLL_H
#include <sys/poll.h>
#endif
#ifdef HAVE_SYS_ERRNO_H
#include <sys/errno.h>
#endif
#include <sys/soundcard.h>
#include "windef.h"
...
...
dlls/wineoss.drv/mmaux.c
View file @
c7cb3e6c
...
...
@@ -31,9 +31,6 @@
#ifdef HAVE_SYS_IOCTL_H
# include <sys/ioctl.h>
#endif
#ifdef HAVE_SYS_ERRNO_H
#include <sys/errno.h>
#endif
#include <sys/soundcard.h>
#include "windef.h"
...
...
dlls/ws2_32/socket.c
View file @
c7cb3e6c
...
...
@@ -76,9 +76,6 @@
#include <ctype.h>
#include <fcntl.h>
#include <errno.h>
#ifdef HAVE_SYS_ERRNO_H
#include <sys/errno.h>
#endif
#ifdef HAVE_NETDB_H
#include <netdb.h>
#endif
...
...
include/config.h.in
View file @
c7cb3e6c
...
...
@@ -884,9 +884,6 @@
/* Define to 1 if you have the <sys/epoll.h> header file. */
#undef HAVE_SYS_EPOLL_H
/* Define to 1 if you have the <sys/errno.h> header file. */
#undef HAVE_SYS_ERRNO_H
/* Define to 1 if you have the <sys/event.h> header file. */
#undef HAVE_SYS_EVENT_H
...
...
server/change.c
View file @
c7cb3e6c
...
...
@@ -32,9 +32,6 @@
#include <limits.h>
#include <dirent.h>
#include <errno.h>
#ifdef HAVE_SYS_ERRNO_H
#include <sys/errno.h>
#endif
#include "ntstatus.h"
#define WIN32_NO_STATUS
...
...
server/file.c
View file @
c7cb3e6c
...
...
@@ -28,9 +28,6 @@
#include <string.h>
#include <stdlib.h>
#include <errno.h>
#ifdef HAVE_SYS_ERRNO_H
#include <sys/errno.h>
#endif
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/types.h>
...
...
server/sock.c
View file @
c7cb3e6c
...
...
@@ -30,9 +30,6 @@
#include <string.h>
#include <stdlib.h>
#include <errno.h>
#ifdef HAVE_SYS_ERRNO_H
# include <sys/errno.h>
#endif
#include <sys/time.h>
#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment