scons: use python3-compatible print()
[mesa.git] / src / gallium / drivers / svga / SConscript
index 94c35ed712dadc1486969387553ec086fe56bba4..9c4806c715855b180d1c912fee36425d2421bf44 100644 (file)
@@ -2,16 +2,16 @@ Import('*')
 
 env = env.Clone()
 
+env.MSVC2013Compat()
+
 if env['suncc']:
-       print 'warning: not building svga'
+       print('warning: not building svga')
        Return()
 
-if env['gcc']:
-       env.Append(CPPDEFINES = [
-               'HAVE_STDINT_H', 
-               'HAVE_SYS_TYPES_H',
-       ])
-       
+env.Append(CPPDEFINES = [
+       'HAVE_STDINT_H',
+])
+
 env.Prepend(CPPPATH = [
        'include',
 ])