Changes between Version 1 and Version 2 of Xorg


Ignore:
Timestamp:
11/29/2007 03:51:47 PM (16 years ago)
Author:
David Mott
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Xorg

    v1 v2  
    33[wiki:XWindowSystemEnvironment Up][[br]]
    44[wiki:BlfsNotes Top]
     5
     6While building a minimal Xorg 6.9.0 some problems were encountered while running 'make Everything':
     7
     8 In file included from xf86Ur-98.c:12:
     9 /usr/include/linux/joystick.h:131: error: expected specifier-qualifier-list before '__s64'
     10
     11This 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
     13#undef __STRICT_ANSI__
     14#include <linux/joystick.h>
     15#define __STRICT_ANSI__
     16