Some fixes I had to do in order to correctly build and install latest CVS csound5. Regards -Carlos SConstruct // CCFLAGS is a sequence of flags, not a flag, "-DXX" will result in -D X X 467,468c467,468 < commonEnvironment.Append(CCFLAGS = "-DLINUX") < commonEnvironment.Append(CPPFLAGS = '-DHAVE_SOCKETS') --- > commonEnvironment.Append(CCFLAGS = ["-DLINUX"]) > commonEnvironment.Append(CCFLAGS = ['-DHAVE_SOCKETS']) 473c473 < commonEnvironment.Append(CCFLAGS = "-DPIPES") --- > commonEnvironment.Append(CPPFLAGS = "-DPIPES") 1091c1091 < csoundLibraryEnvironment.Append(CCFLAGS='-fPIC') --- > csoundLibraryEnvironment.Append(CCFLAGS=['-fPIC']) 1143c1143 < csoundLibraryEnvironment.Append(CCFLAGS='-fPIC') --- > csoundLibraryEnvironment.Append(CCFLAGS=['-fPIC']) 2498c2498 < csLadspaEnv.Append(CCFLAGS='-I./frontends/csladspa') --- > csLadspaEnv.Append(CCFLAGS=['-I./frontends/csladspa']) Engine/otran.c // locale stuff fixes 25a26 > #include 281c282 < setlocate(LC_NUMERIC, "C"); /* Ensure C syntax */ --- > setlocale(LC_NUMERIC, "C"); /* Ensure C syntax */ install.py // localization files ignore instdir 336c336 < fileName = concatPath([xmgDir, i, 'LC_MESSAGES/csound5.mo']) --- > fileName = concatPath([instDir, xmgDir, i, 'LC_MESSAGES/csound5.mo']) ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net