diff options
author | Matt Turner <[email protected]> | 2016-07-21 11:46:23 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2016-07-26 12:12:41 -0700 |
commit | 20553e4a2d952f6dc37f40f63d2c86b0718c58f9 (patch) | |
tree | 3c615a5ff9e9237920bedd873794fbb4ce539e8f /src/gallium/winsys | |
parent | 815135166c9891de4042990a05d0ef24bb90e409 (diff) |
mesa: Use AC_HEADER_MAJOR to include correct header for major().
Gentoo has been smoke testing an upcoming change to glibc.
Bugzilla: https://bugs.gentoo.org/show_bug.cgi?id=580392
Diffstat (limited to 'src/gallium/winsys')
-rw-r--r-- | src/gallium/winsys/svga/drm/vmw_screen.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gallium/winsys/svga/drm/vmw_screen.c b/src/gallium/winsys/svga/drm/vmw_screen.c index 7fcb6d27714..74c77c54e84 100644 --- a/src/gallium/winsys/svga/drm/vmw_screen.c +++ b/src/gallium/winsys/svga/drm/vmw_screen.c @@ -31,7 +31,12 @@ #include "util/u_memory.h" #include "pipe/p_compiler.h" #include "util/u_hash_table.h" -#include <sys/types.h> +#ifdef MAJOR_IN_MKDEV +#include <sys/mkdev.h> +#endif +#ifdef MAJOR_IN_SYSMACROS +#include <sys/sysmacros.h> +#endif #include <sys/stat.h> #include <unistd.h> |