mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-30 13:58:15 +02:00
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>
23 lines
493 B
Python
23 lines
493 B
Python
#######################################################################
|
|
# SConscript for xlib winsys
|
|
|
|
|
|
Import('*')
|
|
|
|
if env['platform'] in ('cygwin', 'freebsd', 'linux', 'sunos'):
|
|
|
|
env = env.Clone()
|
|
|
|
env.Append(CPPPATH = [
|
|
'#/src/gallium/include',
|
|
'#/src/gallium/auxiliary',
|
|
'#/src/gallium/drivers',
|
|
])
|
|
|
|
ws_xlib = env.ConvenienceLibrary(
|
|
target = 'ws_xlib',
|
|
source = [
|
|
'xlib_sw_winsys.c',
|
|
]
|
|
)
|
|
Export('ws_xlib')
|