diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-03-22 14:30:04 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-03-22 14:42:09 -0700 |
commit | bf087659f0fb747c471e26c5b287c35877818040 (patch) | |
tree | f2c44d500c4bfc3c02cda0a9db7856c101c3ea00 /include | |
parent | d9fdae5f4a648a10653e18dbc602646f3e22e522 (diff) |
Add necessary headers for major()/minor() on Solaris to xf86Xinput.c
Without these, after commit fdb4ec86c29d85c, it fails to build on Solaris,
with errors of:
xf86Xinput.c: In function 'xf86stat':
xf86Xinput.c:816:5: error: implicit declaration of function 'major' [-Werror=implicit-function-declaration]
xf86Xinput.c:817:5: error: implicit declaration of function 'minor' [-Werror=implicit-function-declaration]
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/xorg-config.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/xorg-config.h.in b/include/xorg-config.h.in index 487d7addb..77a1aae55 100644 --- a/include/xorg-config.h.in +++ b/include/xorg-config.h.in @@ -118,6 +118,9 @@ /* Have execinfo.h */ #undef HAVE_EXECINFO_H +/* Define to 1 if you have the <sys/mkdev.h> header file. */ +#undef HAVE_SYS_MKDEV_H + /* Path to text files containing PCI IDs */ #undef PCI_TXT_IDS_PATH |