diff options
author | Vinson Lee <[email protected]> | 2012-05-23 17:26:20 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2012-05-24 18:49:40 -0700 |
commit | 5cf693266faebd1fc130709fd7e7b2452bbd156c (patch) | |
tree | c93463f84490aba3871068e89ab413b0b7495581 /src | |
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 <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/SConscript | 2 | ||||
-rw-r--r-- | src/gallium/SConscript | 2 | ||||
-rw-r--r-- | src/gallium/winsys/sw/xlib/SConscript | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/SConscript b/src/SConscript index e4cda2fd03e..3d0087887f4 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') diff --git a/src/gallium/SConscript b/src/gallium/SConscript index e212ed184cf..f281f4c6567 100644 --- a/src/gallium/SConscript +++ b/src/gallium/SConscript @@ -124,7 +124,7 @@ SConscript([ ]) if not env['embedded']: - if env['platform'] not in ('cygwin', 'darwin', 'haiku', 'sunos'): + if env['platform'] not in ('cygwin', 'darwin', 'freebsd', 'haiku', 'sunos'): SConscript([ 'targets/egl-static/SConscript' ]) diff --git a/src/gallium/winsys/sw/xlib/SConscript b/src/gallium/winsys/sw/xlib/SConscript index e9c274059bd..7b1cc8c86fb 100644 --- a/src/gallium/winsys/sw/xlib/SConscript +++ b/src/gallium/winsys/sw/xlib/SConscript @@ -4,7 +4,7 @@ Import('*') -if env['platform'] in ('cygwin', 'linux', 'sunos'): +if env['platform'] in ('cygwin', 'freebsd', 'linux', 'sunos'): env = env.Clone() |