[vlc-commits] contrib: speex: remove unneeded patch
Rafaël Carré
git at videolan.org
Fri Jul 25 19:23:59 CEST 2014
vlc | branch: master | Rafaël Carré <funman at videolan.org> | Fri Jul 25 19:23:23 2014 +0200| [72d1a6b5f1950f6886d382c3e6f96591ff589aec] | committer: Rafaël Carré
contrib: speex: remove unneeded patch
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=72d1a6b5f1950f6886d382c3e6f96591ff589aec
---
...-binaries-option-to-build-only-the-librar.patch | 40 --------------------
contrib/src/speex/rules.mak | 3 +-
2 files changed, 1 insertion(+), 42 deletions(-)
diff --git a/contrib/src/speex/0001-Add-disable-binaries-option-to-build-only-the-librar.patch b/contrib/src/speex/0001-Add-disable-binaries-option-to-build-only-the-librar.patch
deleted file mode 100644
index 7211e6c..0000000
--- a/contrib/src/speex/0001-Add-disable-binaries-option-to-build-only-the-librar.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-From 20bc88f0cda8325cf5d22ee470f7f93c87891a91 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Rafa=C3=ABl=20Carr=C3=A9?= <funman at videolan.org>
-Date: Sun, 8 Dec 2013 08:44:07 +0100
-Subject: [PATCH] Add --disable-binaries option to build only the library
-
----
- configure.ac | 10 ++++++++--
- 1 file changed, 8 insertions(+), 2 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 07ebff2..01dbfba 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -109,7 +109,13 @@ AC_MSG_RESULT($has_visibility)
-
- AC_CHECK_HEADERS(sys/soundcard.h sys/audioio.h)
-
--XIPH_PATH_OGG([src="src"], [src=""])
-+AC_ARG_ENABLE(binaries, [ --disable-binaries Do not build the encoder and decoder binaries, only the library])
-+if test "$enable_binaries" != no; then
-+ XIPH_PATH_OGG([src="src"], [src=""])
-+else
-+ src=""
-+fi
-+
- AC_SUBST(src)
-
- LT_LIB_M
-@@ -339,7 +345,7 @@ AC_CONFIG_HEADERS([config.h])
- AC_OUTPUT
-
-
--if test "x$src" = "x"; then
-+if test "x$src" = "x" -a "$enable_binaries" != no; then
- echo "**IMPORTANT**"
- echo "You don't seem to have the development package for libogg (libogg-devel) installed. Only the Speex library (libspeex) will be built (no encoder/decoder executable)"
- echo "You can download libogg from http://downloads.xiph.org/releases/ogg/"
---
-1.8.3.2
-
diff --git a/contrib/src/speex/rules.mak b/contrib/src/speex/rules.mak
index 99c5a1b..a5d056a 100644
--- a/contrib/src/speex/rules.mak
+++ b/contrib/src/speex/rules.mak
@@ -25,10 +25,9 @@ speex: speex-$(SPEEX_VERSION).tar.gz .sum-speex
rm -Rf $@-git $@
mkdir -p $@-git
$(ZCAT) "$<" | (cd $@-git && tar xv --strip-components=1)
- $(APPLY) $(SRC)/speex/0001-Add-disable-binaries-option-to-build-only-the-librar.patch
$(MOVE)
-SPEEX_CONF := --disable-binaries
+SPEEX_CONF :=
ifndef HAVE_FPU
SPEEX_CONF += --enable-fixed-point
ifeq ($(ARCH),arm)
More information about the vlc-commits
mailing list