~ubuntu-branches/ubuntu/lucid/xmms2/lucid

« back to all changes in this revision

Viewing changes to src/plugins/coreaudio/wscript

  • Committer: Bazaar Package Importer
  • Author(s): Benjamin Drung
  • Date: 2010-03-07 04:11:24 UTC
  • mfrom: (1.1.7 upstream) (6.1.13 sid)
  • Revision ID: james.westby@ubuntu.com-20100307041124-df7p8f9yejg1u1qn
Tags: 0.7DrNo-3ubuntu1
* Merge from Debian unstable (LP: #532278), remaining changes:
  - Use PulseAudio as default output plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
def plugin_configure(conf):
4
4
    if conf.check_cc(header_name='AudioUnit/AudioUnit.h', defines="HAVE_COREAUDIO"):
5
 
        conf.env['LINKFLAGS_coreaudio'] = ['-framework CoreAudio', '-framework AudioUnit']
 
5
        conf.env['LINKFLAGS_coreaudio'] = ['-framework', 'CoreAudio',
 
6
                                           '-framework', 'AudioUnit',
 
7
                                           '-framework', 'CoreServices']
6
8
        return True
7
9
    return False
8
10