On Solaris, #include <sys/mkdev.h> in xf86drm.c
authorAlan Coopersmith <alan.coopersmith@oracle.com>
Sat, 7 Mar 2015 19:44:32 +0000 (11:44 -0800)
committerAlan Coopersmith <alan.coopersmith@oracle.com>
Sat, 14 Mar 2015 15:37:36 +0000 (08:37 -0700)
Needed on Solaris for the definitions of major() & minor() used in
drmGetNodeTypeFromFd() and makedev() used in drmOpenMinor()

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
configure.ac
xf86drm.c

index 106d970..1fd0818 100644 (file)
@@ -42,6 +42,8 @@ AC_USE_SYSTEM_EXTENSIONS
 AC_SYS_LARGEFILE
 AC_FUNC_ALLOCA
 
+AC_CHECK_HEADERS([sys/mkdev.h])
+
 # Initialize libtool
 LT_PREREQ([2.2])
 LT_INIT([disable-static])
index 194cd35..34728be 100644 (file)
--- a/xf86drm.c
+++ b/xf86drm.c
@@ -52,6 +52,9 @@
 #include <sys/ioctl.h>
 #include <sys/time.h>
 #include <stdarg.h>
+#ifdef HAVE_SYS_MKDEV_H
+# include <sys/mkdev.h> /* defines major(), minor(), and makedev() on Solaris */
+#endif
 
 /* Not all systems have MAP_FAILED defined */
 #ifndef MAP_FAILED