~ubuntu-branches/ubuntu/vivid/mpv/vivid

« back to all changes in this revision

Viewing changes to wscript

  • Committer: Package Import Robot
  • Author(s): Alessandro Ghedini
  • Date: 2014-03-11 16:00:20 UTC
  • mfrom: (1.1.15)
  • Revision ID: package-import@ubuntu.com-20140311160020-mtvkr0tgot2gdpxc
Tags: 0.3.6-1
* New upstream release
* Update 03_waf.patch to newer waf version

Show diffs side-by-side

added added

removed removed

Lines of Context:
289
289
    }, {
290
290
        'name': '--mpg123',
291
291
        'desc': 'mpg123 support',
292
 
        'func': check_pkg_config('libmpg123', '>= 1.2.0'),
 
292
        'func': check_pkg_config('libmpg123', '>= 1.14.0'),
293
293
    }, {
294
294
        'name': '--ladspa',
295
295
        'desc': 'LADSPA plugin support',
505
505
        'desc': 'GDI',
506
506
        'func': check_cc(lib='gdi32')
507
507
    } , {
 
508
        'name': 'winmm',
 
509
        'desc': 'WinMM',
 
510
        'func': check_cc(lib='winmm')
 
511
    } , {
 
512
        'name': 'ole',
 
513
        'desc': 'OLE',
 
514
        'func': check_cc(lib='ole32')
 
515
    } , {
 
516
        'name': 'uuid',
 
517
        'desc': 'UUID',
 
518
        'func': check_cc(lib='uuid')
 
519
    } , {
508
520
        'name': '--wayland',
509
521
        'desc': 'Wayland',
510
522
        'func': check_pkg_config('wayland-client', '>= 1.3.0',
570
582
    } , {
571
583
        'name': '--gl-win32',
572
584
        'desc': 'OpenGL Win32 Backend',
573
 
        'deps': [ 'gdi' ],
 
585
        'deps': [ 'gdi', 'winmm', 'ole', 'uuid' ],
574
586
        'groups': [ 'gl' ],
575
587
        'func': check_statement('windows.h', 'wglCreateContext(0)',
576
588
                                lib='opengl32')
633
645
    }, {
634
646
        'name': '--direct3d',
635
647
        'desc': 'Direct3D support',
636
 
        'deps': [ 'gdi' ],
 
648
        'deps': [ 'gdi', 'winmm', 'ole', 'uuid' ],
637
649
        'func': check_cc(header_name='d3d9.h'),
638
650
    }
639
651
]