Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Zsolt Vadász
wine
Commits
ebe0484d
Commit
ebe0484d
authored
19 years ago
by
Gerald Pfeifer
Committed by
Alexandre Julliard
19 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Prefer sys/limits.h over machine/limits.h.
parent
8f3cc76e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
configure
+2
-0
2 additions, 0 deletions
configure
configure.ac
+1
-0
1 addition, 0 deletions
configure.ac
dlls/kernel/time.c
+3
-1
3 additions, 1 deletion
dlls/kernel/time.c
include/config.h.in
+3
-0
3 additions, 0 deletions
include/config.h.in
with
9 additions
and
1 deletion
configure
+
2
−
0
View file @
ebe0484d
...
...
@@ -7034,6 +7034,7 @@ done
for ac_header in \
...
...
@@ -7106,6 +7107,7 @@ for ac_header in \
sys/filio.h \
sys/ioctl.h \
sys/ipc.h \
sys/limits.h \
sys/link.h \
sys/lwp.h \
sys/mman.h \
...
...
This diff is collapsed.
Click to expand it.
configure.ac
+
1
−
0
View file @
ebe0484d
...
...
@@ -241,6 +241,7 @@ AC_CHECK_HEADERS(\
sys/filio.h \
sys/ioctl.h \
sys/ipc.h \
sys/limits.h \
sys/link.h \
sys/lwp.h \
sys/mman.h \
...
...
This diff is collapsed.
Click to expand it.
dlls/kernel/time.c
+
3
−
1
View file @
ebe0484d
...
...
@@ -33,7 +33,9 @@
#ifdef HAVE_SYS_TIMES_H
# include <sys/times.h>
#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>
#endif
...
...
This diff is collapsed.
Click to expand it.
include/config.h.in
+
3
−
0
View file @
ebe0484d
...
...
@@ -644,6 +644,9 @@
/* Define to 1 if you have the <sys/ipc.h> header file. */
#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. */
#undef HAVE_SYS_LINK_H
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment