diff options
author | José Fonseca <jfonseca@vmware.com> | 2013-03-13 13:13:08 +0000 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2013-03-13 13:13:37 +0000 |
commit | cff70dcfb2c6d2ad220b1d8f1fd781c1e39ad995 (patch) | |
tree | 02bad4eab79a1bf7c0bff4b286d80622c1399709 /SConstruct | |
parent | a6bb7a94957468453c436e3860ee2dd47575c461 (diff) |
scons: Define PACKAGE_VERSION/BUGREPORT globally.
Fixes the scons build.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct index 4a3fef0805..1807ff8353 100644 --- a/SConstruct +++ b/SConstruct @@ -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', |