Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
ebe0484d
Commit
ebe0484d
authored
Aug 22, 2005
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Aug 22, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prefer sys/limits.h over machine/limits.h.
parent
8f3cc76e
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
1 deletion
+9
-1
configure
configure
+2
-0
configure.ac
configure.ac
+1
-0
time.c
dlls/kernel/time.c
+3
-1
config.h.in
include/config.h.in
+3
-0
No files found.
configure
View file @
ebe0484d
...
@@ -7036,6 +7036,7 @@ done
...
@@ -7036,6 +7036,7 @@ done
for
ac_header
in
\
for
ac_header
in
\
IOKit/IOKitLib.h
\
IOKit/IOKitLib.h
\
alsa/asoundlib.h
\
alsa/asoundlib.h
\
...
@@ -7106,6 +7107,7 @@ for ac_header in \
...
@@ -7106,6 +7107,7 @@ for ac_header in \
sys/filio.h
\
sys/filio.h
\
sys/ioctl.h
\
sys/ioctl.h
\
sys/ipc.h
\
sys/ipc.h
\
sys/limits.h
\
sys/link.h
\
sys/link.h
\
sys/lwp.h
\
sys/lwp.h
\
sys/mman.h
\
sys/mman.h
\
...
...
configure.ac
View file @
ebe0484d
...
@@ -241,6 +241,7 @@ AC_CHECK_HEADERS(\
...
@@ -241,6 +241,7 @@ AC_CHECK_HEADERS(\
sys/filio.h \
sys/filio.h \
sys/ioctl.h \
sys/ioctl.h \
sys/ipc.h \
sys/ipc.h \
sys/limits.h \
sys/link.h \
sys/link.h \
sys/lwp.h \
sys/lwp.h \
sys/mman.h \
sys/mman.h \
...
...
dlls/kernel/time.c
View file @
ebe0484d
...
@@ -33,7 +33,9 @@
...
@@ -33,7 +33,9 @@
#ifdef HAVE_SYS_TIMES_H
#ifdef HAVE_SYS_TIMES_H
# include <sys/times.h>
# include <sys/times.h>
#endif
#endif
#ifdef HAVE_MACHINE_LIMITS_H
#ifdef HAVE_SYS_LIMITS_H
#include <sys/limits.h>
#elif defined(HAVE_MACHINE_LIMITS_H)
#include <machine/limits.h>
#include <machine/limits.h>
#endif
#endif
...
...
include/config.h.in
View file @
ebe0484d
...
@@ -644,6 +644,9 @@
...
@@ -644,6 +644,9 @@
/* Define to 1 if you have the <sys/ipc.h> header file. */
/* Define to 1 if you have the <sys/ipc.h> header file. */
#undef HAVE_SYS_IPC_H
#undef HAVE_SYS_IPC_H
/* Define to 1 if you have the <sys/limits.h> header file. */
#undef HAVE_SYS_LIMITS_H
/* Define to 1 if you have the <sys/link.h> header file. */
/* Define to 1 if you have the <sys/link.h> header file. */
#undef HAVE_SYS_LINK_H
#undef HAVE_SYS_LINK_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