Changes in / [05774ba3:d81e16d]


Ignore:
Files:
2 added
5 edited

Legend:

Unmodified
Added
Removed
  • .circleci/config.yml

    r05774ba3 rd81e16d  
    33  command: |
    44    sudo apt-get update
    5     sudo apt-get -y install make sox pkg-config libavcodec-dev libavformat-dev libavresample-dev libavutil-dev libsndfile1-dev libsamplerate-dev
     5    sudo apt-get -y install make sox pkg-config libavcodec-dev libavformat-dev libavresample-dev libavutil-dev libsndfile1-dev libsamplerate-dev libvorbis-dev
    66
    77pip-install: &pip-install
  • .travis.yml

    r05774ba3 rd81e16d  
    5858    - libsndfile1-dev
    5959    - libsamplerate-dev
     60    - libvorbis-dev
    6061    - libjack-dev
    6162    - libasound2-dev
     
    6869    - ffmpeg
    6970    - libsndfile
     71    - libvorbis
    7072    - lcov
    7173    #update: true
  • azure-pipelines.yml

    r05774ba3 rd81e16d  
    3030      brew update
    3131      brew install pkg-config gnupg
    32       brew install sox ffmpeg libsndfile lcov
     32      brew install sox ffmpeg libsndfile libvorbis lcov
    3333    displayName: 'brew install'
    3434  - script: |
  • src/wscript_build

    r05774ba3 rd81e16d  
    1212uselib += ['AVRESAMPLE']
    1313uselib += ['AVUTIL']
     14uselib += ['VORBISENC']
    1415uselib += ['BLAS']
    1516
  • wscript

    r05774ba3 rd81e16d  
    6767            help_str = 'compile with libavcodec (auto)',
    6868            help_disable_str = 'disable libavcodec')
     69    add_option_enable_disable(ctx, 'vorbis', default = None,
     70            help_str = 'compile with libvorbis (auto)',
     71            help_disable_str = 'disable libvorbis')
    6972    add_option_enable_disable(ctx, 'samplerate', default = None,
    7073            help_str = 'compile with samplerate (auto)',
     
    429432                ctx.define('HAVE_AVRESAMPLE', 1)
    430433            ctx.define('HAVE_LIBAV', 1)
     434
     435    # check for vorbisenc
     436    if (ctx.options.enable_vorbis != False):
     437        ctx.check_cfg(package = 'vorbisenc',
     438                args = '--cflags --libs',
     439                uselib_store = 'VORBISENC',
     440                mandatory = ctx.options.enable_vorbis)
    431441
    432442    if (ctx.options.enable_wavread != False):
Note: See TracChangeset for help on using the changeset viewer.