On 12/19/05, Istvan Varga wrote: > On Monday 19 December 2005 21:46, schwaahed wrote: > > > How would one build without lua? I am only interested in the python interface at > > this point. > > Well, I do not see any option in SConstruct to build without the Lua > wrapper, so currently you can only disable it by replacing this at > line 357: > > luaFound = configure.CheckHeader("lua.h", language = "C") > > with > > luaFound = 0 > -- > Send bugs reports to this list. > To unsubscribe, send email to csound-unsubscribe@lists.bath.ac.uk > Thank's, I was able to get throught the build finally, after changing line 357 as shown above in my SConstruct file. I wasn't able to find the csnd module from my python interpreter, until I did: cd /usr/local/lib && ln -s lib_csnd.so _csnd.so - I Appreciate your help schwaahed