diff options
author | José Fonseca <[email protected]> | 2013-03-13 01:25:30 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2013-03-13 01:29:47 +0000 |
commit | f7ef83cdf4220ac6076491b8ec438615d235f9dc (patch) | |
tree | bd5a0901da56eacfb2bbe21a215c631b51ac770c /src | |
parent | 6f86b934e618c6b55d3d9414720d1935c654ae7b (diff) |
scons: Define PACKAGE_xxx
Should get the builds going again.
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/SConscript | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/SConscript b/src/mesa/SConscript index ca9b70bad93..3502e3067ce 100644 --- a/src/mesa/SConscript +++ b/src/mesa/SConscript @@ -21,6 +21,11 @@ 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 |