diff options
author | Michel Dänzer <[email protected]> | 2009-12-08 11:45:19 +0100 |
---|---|---|
committer | Michel Dänzer <[email protected]> | 2009-12-08 11:45:19 +0100 |
commit | 32ccc9b0bbfad46d2f4ce3b9ac4cdd182d7b64e4 (patch) | |
tree | 825f46bbd1bd8761e766a50b4b203f5f38ab7856 | |
parent | 9e42683fb3ecd453267a5885a138b425a2b79236 (diff) |
vmware/xorg: Fix SCons build.
Not sure how vmw_screen.c could build at all though...
-rw-r--r-- | src/gallium/winsys/drm/vmware/xorg/SConscript | 2 | ||||
-rw-r--r-- | src/gallium/winsys/drm/vmware/xorg/vmw_screen.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/winsys/drm/vmware/xorg/SConscript b/src/gallium/winsys/drm/vmware/xorg/SConscript index ff7b2ed34ed..b8968e7137b 100644 --- a/src/gallium/winsys/drm/vmware/xorg/SConscript +++ b/src/gallium/winsys/drm/vmware/xorg/SConscript @@ -42,6 +42,8 @@ if env['platform'] == 'linux': ]) sources = [ + 'vmw_ioctl.c', + 'vmw_screen.c', 'vmw_xorg.c', ] diff --git a/src/gallium/winsys/drm/vmware/xorg/vmw_screen.c b/src/gallium/winsys/drm/vmware/xorg/vmw_screen.c index 421906da996..18cb509189a 100644 --- a/src/gallium/winsys/drm/vmware/xorg/vmw_screen.c +++ b/src/gallium/winsys/drm/vmware/xorg/vmw_screen.c @@ -33,6 +33,8 @@ #include "vmw_hook.h" #include "vmw_driver.h" +#include "cursorstr.h" + /* modified version of crtc functions */ xf86CrtcFuncsRec vmw_screen_crtc_funcs; |