diff options
author | Nomis101 <[email protected]> | 2019-08-29 21:59:01 +0200 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2019-09-07 21:51:33 -0400 |
commit | c3f769dbfcdce32f1d496f8daf129d8b909cf148 (patch) | |
tree | e520c2b7e6e7ceaaa7a75ec7630046763f65a86b | |
parent | b61c16e52283e38b65b44c4abf9448efcfc0006d (diff) |
contrib: Fix some configure-related warnings.
-rw-r--r-- | contrib/fribidi/module.defs | 5 | ||||
-rw-r--r-- | contrib/libogg/module.defs | 2 | ||||
-rw-r--r-- | contrib/libopus/module.defs | 4 |
3 files changed, 4 insertions, 7 deletions
diff --git a/contrib/fribidi/module.defs b/contrib/fribidi/module.defs index 2e29553a8..c843d2ee2 100644 --- a/contrib/fribidi/module.defs +++ b/contrib/fribidi/module.defs @@ -8,8 +8,3 @@ FRIBIDI.FETCH.basename = fribidi-1.0.5.tar.gz FRIBIDI.CONFIGURE.bootstrap = rm -fr aclocal.m4 autom4te.cache configure; autoreconf -I m4 -fiv; -ifeq (1-mingw,$(HOST.cross)-$(HOST.system)) - FRIBIDI.CONFIGURE.extra = --with-glib=no -else ifeq (darwin,$(HOST.system)) - FRIBIDI.CONFIGURE.extra = --with-glib=no -endif diff --git a/contrib/libogg/module.defs b/contrib/libogg/module.defs index df44d71f3..3a205ec14 100644 --- a/contrib/libogg/module.defs +++ b/contrib/libogg/module.defs @@ -5,6 +5,4 @@ LIBOGG.FETCH.url = https://download.handbrake.fr/handbrake/contrib/libogg-1. LIBOGG.FETCH.url += https://downloads.xiph.org/releases/ogg/libogg-1.3.3.tar.gz LIBOGG.FETCH.sha256 = c2e8a485110b97550f453226ec644ebac6cb29d1caef2902c007edab4308d985 -LIBOGG.CONFIGURE.extra = --disable-sdl - LIBOGG.CONFIGURE.bootstrap = rm -fr aclocal.m4 autom4te.cache configure; autoreconf -fiv; diff --git a/contrib/libopus/module.defs b/contrib/libopus/module.defs index 66dc56a55..8b64294d2 100644 --- a/contrib/libopus/module.defs +++ b/contrib/libopus/module.defs @@ -8,4 +8,8 @@ LIBOPUS.FETCH.sha256 = 4f3d69aefdf2dbaf9825408e452a8a414ffc60494c70633560700398 LIBOPUS.CONFIGURE.shared = --enable-shared=no LIBOPUS.CONFIGURE.extra = --disable-doc --disable-extra-programs +# Suppress a warning given by opus_decoder.c that tells us +# optimizations are turned off. +LIBOPUS.GCC.args.extra += -DOPUS_WILL_BE_SLOW + LIBOPUS.CONFIGURE.bootstrap = rm -fr aclocal.m4 autom4te.cache configure; autoreconf -fiv; |