diff options
author | marha <marha@users.sourceforge.net> | 2011-04-06 20:33:32 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-04-06 20:33:32 +0000 |
commit | 704e01fc69ebf6302aa1876906805147248abdaa (patch) | |
tree | 55a4a5ffdf2d39f193d218785155a096966f30a6 /mesalib/src/mesa/SConscript | |
parent | eaedc21febeadad4cf0e370f5d97e7bdb4470870 (diff) | |
download | vcxsrv-704e01fc69ebf6302aa1876906805147248abdaa.tar.gz vcxsrv-704e01fc69ebf6302aa1876906805147248abdaa.tar.bz2 vcxsrv-704e01fc69ebf6302aa1876906805147248abdaa.zip |
xserver libX11 libxcb mesa git update 6 Apr 2011
Diffstat (limited to 'mesalib/src/mesa/SConscript')
-rw-r--r-- | mesalib/src/mesa/SConscript | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mesalib/src/mesa/SConscript b/mesalib/src/mesa/SConscript index 3ea84fd01..c6c3ddd12 100644 --- a/mesalib/src/mesa/SConscript +++ b/mesalib/src/mesa/SConscript @@ -390,6 +390,18 @@ if env['gcc'] and env['platform'] != 'windows': # build dir) to the include path
env.Append(CPPPATH = [matypes[0].dir])
+
+# Create the git_sha1.h file if it doesn't exist already
+try:
+ f = open('main/git_sha1.h', 'r')
+ f.close()
+except IOError:
+ f = open('main/git_sha1.h', 'w')
+ f.close()
+# and update CPPPATH so the git_sha1.h header can be found
+env.Append(CPPPATH = ["#" + env['build_dir'] + "/mesa/main"])
+
+
#
# Libraries
#
|