Browse Source

Move opus to common bootstrap

Signed-off-by: falkTX <falktx@falktx.com>
tags/v1.1
falkTX 4 years ago
parent
commit
f869a6020b
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 13 additions and 13 deletions
  1. +13
    -0
      bootstrap-common.sh
  2. +0
    -13
      bootstrap-jack2.sh

+ 13
- 0
bootstrap-common.sh View File

@@ -90,6 +90,19 @@ download flac "${FLAC_VERSION}" "https://ftp.osuosl.org/pub/xiph/releases/flac"
patch_file flac "${FLAC_VERSION}" "configure" 's/amd64|x86_64/amd64|arm|x86_64/'
build_autoconf flac "${FLAC_VERSION}" "${FLAC_EXTRAFLAGS}"

# ---------------------------------------------------------------------------------------------------------------------
# opus

OPUS_EXTRAFLAGS="--disable-extra-programs --enable-custom-modes --enable-float-approx"

# FIXME
if [ "${MACOS_UNIVERSAL}" -eq 1 ]; then
OPUS_EXTRAFLAGS+=" --disable-asm --disable-rtcd --disable-intrinsics"
fi

download opus "${OPUS_VERSION}" "https://archive.mozilla.org/pub/opus"
build_autoconf opus "${OPUS_VERSION}" "${OPUS_EXTRAFLAGS}"

# ---------------------------------------------------------------------------------------------------------------------
# libsamplerate



+ 0
- 13
bootstrap-jack2.sh View File

@@ -102,19 +102,6 @@ fi

# --enable-posixmutexes --enable-compat185 --enable-cxx --enable-dbm --enable-stl

# ---------------------------------------------------------------------------------------------------------------------
# opus

OPUS_EXTRAFLAGS="--disable-extra-programs --enable-custom-modes --enable-float-approx"

# FIXME
if [ "${MACOS_UNIVERSAL}" -eq 1 ]; then
OPUS_EXTRAFLAGS+=" --disable-asm --disable-rtcd --disable-intrinsics"
fi

download opus "${OPUS_VERSION}" "https://archive.mozilla.org/pub/opus"
build_autoconf opus "${OPUS_VERSION}" "${OPUS_EXTRAFLAGS}"

# ---------------------------------------------------------------------------------------------------------------------
# rtaudio (download, win32 only)



Loading…
Cancel
Save