gallium/radeon: use PRIX64 instead of PRIu64
[mesa.git] / src / gallium / SConscript
index c53cd391b1f7dcb4e17cd2f06b196de5b9ccd175..df71b9aeada7daf9aa09d43862de58913305a863 100644 (file)
@@ -21,25 +21,6 @@ SConscript([
     'drivers/trace/SConscript',
 ])
 
-if not env['msvc']:
-    # These drivers do not build on MSVC compilers
-    SConscript([
-        'drivers/i915/SConscript',
-    ])
-
-if env['drm']:
-    # These drivers depend on drm headers
-    # XXX: nouveau drivers have a tight dependency on libdrm, so to enable
-    # we need some version logic before we enable them. Also, ATM there is
-    # no nouveau target in scons
-    # if env['drm_nouveau']:
-    #     SConscript([
-    #         'drivers/nouveau/SConscript', 
-    #         'drivers/nv50/SConscript', 
-    #         'drivers/nvc0/SConscript', 
-    #         'drivers/nvfx/SConscript',
-    #     ])
-
 #
 # State trackers
 #
@@ -58,9 +39,6 @@ if not env['embedded']:
     if env['dri']:
         SConscript('state_trackers/dri/SConscript')
 
-    if env['dri'] and env['xorg']:
-        SConscript('state_trackers/xorg/SConscript')
-
     if env['platform'] == 'windows':
         SConscript('state_trackers/wgl/SConscript')
 
@@ -82,9 +60,9 @@ if env['platform'] == 'windows':
         'winsys/sw/gdi/SConscript',
     ])
 
-if not env['msvc']:
+if env['platform'] == 'haiku':
     SConscript([
-        'winsys/i915/sw/SConscript',
+        'winsys/sw/hgl/SConscript',
     ])
 
 if env['dri']:
@@ -96,11 +74,6 @@ if env['dri']:
         'winsys/svga/drm/SConscript',
     ])
 
-    if env['drm_intel']:
-        SConscript([
-            'winsys/i915/drm/SConscript',
-        ])
-
 #
 # Targets
 #
@@ -127,22 +100,15 @@ if not env['embedded']:
             'targets/libgl-gdi/SConscript',
         ])
 
-    if env['dri']:
+    if env['platform'] == 'haiku':
         SConscript([
-            'targets/SConscript.dri',
-            'targets/dri-swrast/SConscript',
-            'targets/dri-vmwgfx/SConscript',
-            #'targets/dri-nouveau/SConscript',
+            'targets/haiku-softpipe/SConscript',
         ])
-        if env['drm_intel']:
-            SConscript([
-                'targets/dri-i915/SConscript',
-            ])
 
-    if env['xorg'] and env['drm']:
+    if env['dri']:
         SConscript([
-            #'targets/xorg-i915/SConscript',
-            #'targets/xorg-nouveau/SConscript',
+            'targets/dri-swrast/SConscript',
+            'targets/dri/SConscript',
         ])