Changes between Version 2 and Version 3 of Xorg


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

--

Legend:

Unmodified
Added
Removed
Modified
  • Xorg

    v2 v3  
    55
    66While building a minimal Xorg 6.9.0 some problems were encountered while running 'make Everything':
    7 
     7{{{
    88 In file included from xf86Ur-98.c:12:
    99 /usr/include/linux/joystick.h:131: error: expected specifier-qualifier-list before '__s64'
    10 
     10}}}
    1111This 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{{{
    1313#undef __STRICT_ANSI__
    1414#include <linux/joystick.h>
    1515#define __STRICT_ANSI__
    16 
     16}}}