Changes between Version 2 and Version 3 of Xorg
- Timestamp:
- 11/29/2007 03:52:31 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Xorg
v2 v3 5 5 6 6 While building a minimal Xorg 6.9.0 some problems were encountered while running 'make Everything': 7 7 {{{ 8 8 In file included from xf86Ur-98.c:12: 9 9 /usr/include/linux/joystick.h:131: error: expected specifier-qualifier-list before '__s64' 10 10 }}} 11 11 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: 12 12 {{{ 13 13 #undef __STRICT_ANSI__ 14 14 #include <linux/joystick.h> 15 15 #define __STRICT_ANSI__ 16 16 }}}