OSDN Git Service

scons: Define PACKAGE_VERSION/BUGREPORT globally.
authorJosé Fonseca <jfonseca@vmware.com>
Wed, 13 Mar 2013 13:13:08 +0000 (13:13 +0000)
committerJosé Fonseca <jfonseca@vmware.com>
Wed, 13 Mar 2013 13:13:37 +0000 (13:13 +0000)
Fixes the scons build.

SConstruct
src/gallium/state_trackers/vega/SConscript
src/mesa/SConscript

index 4a3fef0..1807ff8 100644 (file)
@@ -69,6 +69,11 @@ if env['gles']:
 #######################################################################
 # Environment setup
 
+env.Append(CPPDEFINES = [
+    ('PACKAGE_VERSION', '\\"9.2-devel\\"'),
+    ('PACKAGE_BUGREPORT', '\\"https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa\\"'),
+])
+
 # Includes
 env.Prepend(CPPPATH = [
        '#/include',
index 0a42231..394eaff 100644 (file)
@@ -12,7 +12,6 @@ env.Append(CPPPATH = [
     Dir('.'),
 ])
 env.Append(CPPDEFINES = [
-    'PACKAGE_VERSION=',
     'KHRONOS_DLL_EXPORTS',
 ])
 
index 3502e30..ca9b70b 100644 (file)
@@ -21,11 +21,6 @@ env.Append(CPPPATH = [
 enabled_apis = []
 enabled_apis += ['GL']
 
-env.Append(CPPDEFINES = [
-    ('PACKAGE_VERSION', '\\"9.2-devel\\"'),
-    ('PACKAGE_BUGREPORT', '\\"https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa\\"'),
-])
-
 if env['platform'] == 'windows':
     env.Append(CPPDEFINES = [
         '_GDI32_', # prevent gl* being declared __declspec(dllimport) in MS headers