Changes in / [131d1eb:a280ed1]


Ignore:
Files:
2 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • .circleci/config.yml

    r131d1eb ra280ed1  
    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 libvorbis-dev
     5    sudo apt-get -y install make sox pkg-config libavcodec-dev libavformat-dev libavresample-dev libavutil-dev libsndfile1-dev libsamplerate-dev
    66
    77pip-install: &pip-install
  • .travis.yml

    r131d1eb ra280ed1  
    6262    - libsndfile1-dev
    6363    - libsamplerate-dev
    64     - libvorbis-dev
    6564    - libjack-dev
    6665    - libasound2-dev
     
    7372    - ffmpeg
    7473    - libsndfile
    75     - libvorbis
    7674    - lcov
    7775    #update: true
  • azure-pipelines.yml

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

    r131d1eb ra280ed1  
    1212uselib += ['AVRESAMPLE']
    1313uselib += ['AVUTIL']
    14 uselib += ['VORBISENC']
    1514uselib += ['BLAS']
    1615
  • wscript

    r131d1eb ra280ed1  
    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')
    7269    add_option_enable_disable(ctx, 'samplerate', default = None,
    7370            help_str = 'compile with samplerate (auto)',
     
    432429                ctx.define('HAVE_AVRESAMPLE', 1)
    433430            ctx.define('HAVE_LIBAV', 1)
    434 
    435     # check for vorbisenc
    436     if (ctx.options.enable_vorbis != False):
    437         ctx.check_cfg(package = 'vorbisenc vorbis ogg',
    438                 args = '--cflags --libs',
    439                 uselib_store = 'VORBISENC',
    440                 mandatory = ctx.options.enable_vorbis)
    441431
    442432    if (ctx.options.enable_wavread != False):
Note: See TracChangeset for help on using the changeset viewer.