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/gbm/main | |
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/gbm/main')
-rw-r--r-- | src/gbm/main/gbm.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gbm/main/gbm.c b/src/gbm/main/gbm.c index 5a6e758e7a5..20ff3f280a7 100644 --- a/src/gbm/main/gbm.c +++ b/src/gbm/main/gbm.c @@ -31,7 +31,12 @@ #include <string.h> #include <stdint.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> #include <errno.h> |