From f8489ea1e614ff0320f440cea3b933b34f88c16e Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Thu, 7 Jan 2010 03:13:26 +0000 Subject: [PATCH] Attempt to fix build error on Windows --- intern/audaspace/SConscript | 3 +++ 1 file changed, 3 insertions(+) diff --git a/intern/audaspace/SConscript b/intern/audaspace/SConscript index ac3f8ca71a0..bbd2442c480 100644 --- a/intern/audaspace/SConscript +++ b/intern/audaspace/SConscript @@ -36,4 +36,7 @@ if env['WITH_BF_FFTW3']: incs += ' fftw ' + env['BF_FFTW3_INC'] defs.append('WITH_FFTW3') +if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc'): + incs += ' ' + env['BF_PTHREADS_INC'] + env.BlenderLib ('bf_audaspace', sources, Split(incs), defs, libtype=['intern','player'], priority = [25,215] )