diff options
author | Vinson Lee <vlee@freedesktop.org> | 2012-05-23 17:26:20 -0700 |
---|---|---|
committer | Vinson Lee <vlee@freedesktop.org> | 2012-05-24 18:49:40 -0700 |
commit | 5cf693266faebd1fc130709fd7e7b2452bbd156c (patch) | |
tree | c93463f84490aba3871068e89ab413b0b7495581 /src/SConscript | |
parent | 33e7db9a1dafdcf5c7c745180831403e0485544d (diff) |
scons: Fix SCons build infrastructure for FreeBSD.
This patch gets the FreeBSD SCons build working again. The build still
fails though.
Signed-off-by: Vinson Lee <vlee@freedesktop.org>
Reviewed-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'src/SConscript')
-rw-r--r-- | src/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SConscript b/src/SConscript index e4cda2fd03..3d0087887f 100644 --- a/src/SConscript +++ b/src/SConscript @@ -22,7 +22,7 @@ SConscript('mesa/SConscript') SConscript('mapi/vgapi/SConscript') if not env['embedded']: - if env['platform'] not in ('cygwin', 'darwin', 'haiku', 'windows'): + if env['platform'] not in ('cygwin', 'darwin', 'freebsd', 'haiku', 'windows'): SConscript('glx/SConscript') if env['platform'] not in ['darwin', 'haiku', 'sunos']: SConscript('egl/main/SConscript') |