scons: drop unused HAVE_STDINT_H macro

This was required back when MSVC didn't support C99 and was missing this
header, but since MSVC 2013 (or maybe earlier?) this isn't it does and
this code isn't doing anything anymore.

Signed-off-by: Eric Engestrom <eric.engestrom@intel.com>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
This commit is contained in:
Eric Engestrom
2018-10-28 17:30:26 +00:00
parent a18d726621
commit 6f9309d5d4
4 changed files with 0 additions and 14 deletions

View File

@@ -99,9 +99,6 @@ def generate(env):
return
env.Prepend(CPPPATH = [os.path.join(llvm_dir, 'include')])
env.AppendUnique(CPPDEFINES = [
'HAVE_STDINT_H',
])
env.Prepend(LIBPATH = [os.path.join(llvm_dir, 'lib')])
# LIBS should match the output of `llvm-config --libs engine mcjit bitwriter x86asmprinter irreader`
if llvm_version >= distutils.version.LooseVersion('5.0'):

View File

@@ -8,10 +8,6 @@ if env['suncc']:
print('warning: not building svga')
Return()
env.Append(CPPDEFINES = [
'HAVE_STDINT_H',
])
env.Prepend(CPPPATH = [
'include',
])

View File

@@ -28,12 +28,6 @@
#include "pipe/p_compiler.h"
#if defined(PIPE_CC_GCC)
#ifndef HAVE_STDINT_H
#define HAVE_STDINT_H
#endif
#endif
#include "svga_types.h"
#include "svga3d_reg.h"

View File

@@ -5,7 +5,6 @@ env = env.Clone()
env.PkgUseModules('DRM')
env.Append(CPPDEFINES = [
'HAVE_STDINT_H',
'-D_FILE_OFFSET_BITS=64',
])