~ubuntu-branches/ubuntu/gutsy/audacity/gutsy-backports

« back to all changes in this revision

Viewing changes to lib-src/portaudio-v19/SConstruct

  • Committer: Bazaar Package Importer
  • Author(s): John Dong
  • Date: 2008-02-18 21:58:19 UTC
  • mfrom: (13.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080218215819-tmbcf1rx238r8gdv
Tags: 1.3.4-1.1ubuntu1~gutsy1
Automated backport upload; no source changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
if not env["enableAsserts"]:
53
53
    env.AppendUnique(CPPDEFINES=["-DNDEBUG"])
54
54
if env["customCFlags"]:
55
 
    env.Append(CCFLAGS=env["customCFlags"])
 
55
    env.Append(CCFLAGS=Split(env["customCFlags"]))
56
56
if env["customCxxFlags"]:
57
 
    env.Append(CXXFLAGS=env["customCxxFlags"])
 
57
    env.Append(CXXFLAGS=Split(env["customCxxFlags"]))
58
58
if env["customLinkFlags"]:
59
 
    env.Append(LINKFLAGS=env["customLinkFlags"])
 
59
    env.Append(LINKFLAGS=Split(env["customLinkFlags"]))
60
60
 
61
61
env.Append(CPPPATH=[os.path.join("#", "include"), "common"])
62
62