wiki:Xorg

Version 3 (modified by David Mott, 15 years ago) ( diff )

--

Xorg

Up
Top

While building a minimal Xorg 6.9.0 some problems were encountered while running 'make Everything':

 In file included from xf86Ur-98.c:12:
 /usr/include/linux/joystick.h:131: error: expected specifier-qualifier-list before '__s64'

This was resolved by modifying xcbuild/programs/Xserver/hw/xfree86/input/ur98/xf86Ur-98.c at line 12 and surrounding #include <linux/joystick.h> with:

#undef __STRICT_ANSI__
#include <linux/joystick.h>
#define __STRICT_ANSI__
Note: See TracWiki for help on using the wiki.