drm: Branch 'master'
[email protected] (Emil Velikov)
| Newsgroups | gmane.comp.video.dri.patches |
|---|---|
| Message-ID | <[email protected]> |
xf86drm.c | 1 + 1 file changed, 1 insertion(+) New commits: commit 4031dc17bb728850c9b079c8d5f9cc0a379b9d46 Author: Felix Janda <[email protected]> Date: Sat Sep 26 08:08:43 2015 +0200 xf86drm: include <limits.h> for PATH_MAX fixes compilation error with musl libc and Solaris based platforms. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=92082 Signed-off-by: Felix Janda <[email protected]> Reviewed-by: Emil Velikov <[email protected]> diff --git a/xf86drm.c b/xf86drm.c index a9f5c29..c1cab1b 100644 --- a/xf86drm.c +++ b/xf86drm.c @@ -45,6 +45,7 @@ #include <stddef.h> #include <fcntl.h> #include <errno.h> +#include <limits.h> #include <signal.h> #include <time.h> #include <sys/types.h> ------------------------------------------------------------------------------ --