Hello community, here is the log from the commit of package alsa-plugins for openSUSE:Factory checked in at 2013-05-28 07:24:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/alsa-plugins (Old) and /work/SRC/openSUSE:Factory/.alsa-plugins.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "alsa-plugins" Changes: -------- --- /work/SRC/openSUSE:Factory/alsa-plugins/alsa-plugins.changes 2013-04-14 10:11:23.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.alsa-plugins.new/alsa-plugins.changes 2013-05-28 07:24:20.000000000 +0200 @@ -1,0 +2,7 @@ +Thu May 23 15:47:52 CEST 2013 - [email protected] + +- Backport upstream fixes: + 0001-Check-for-and-include-libavutil.h-to-avoid-unresolve.patch + 0002-Add-AM_MAINTAINER_MODE-enable-to-configure.in.patch + +------------------------------------------------------------------- New: ---- 0001-Check-for-and-include-libavutil.h-to-avoid-unresolve.patch 0002-Add-AM_MAINTAINER_MODE-enable-to-configure.in.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ alsa-plugins.spec ++++++ --- /var/tmp/diff_new_pack.lDxHRJ/_old 2013-05-28 07:24:21.000000000 +0200 +++ /var/tmp/diff_new_pack.lDxHRJ/_new 2013-05-28 07:24:21.000000000 +0200 @@ -51,6 +51,9 @@ Source1: asound-pulse.conf Source2: alsa-pulse.conf Source3: baselibs.conf +# upstream fixes +Patch1: 0001-Check-for-and-include-libavutil.h-to-avoid-unresolve.patch +Patch2: 0002-Add-AM_MAINTAINER_MODE-enable-to-configure.in.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -128,6 +131,8 @@ %prep %setup -q -n %{name}-%{package_version} +%patch1 -p1 +%patch2 -p1 %build export AUTOMAKE_JOBS="%{?_smp_mflags}" ++++++ 0001-Check-for-and-include-libavutil.h-to-avoid-unresolve.patch ++++++ >From 2227c95be6267f7ad1ec3ad2fc09dbb5146bae0f Mon Sep 17 00:00:00 2001 From: Jordi Mallach <[email protected]> Date: Wed, 15 May 2013 19:11:47 +0200 Subject: [PATCH 1/2] Check for and include libavutil.h to avoid unresolved symbols. The a52 plugin uses av_free(), but does not check for libavutil availability. Patch configure.in to check for the module, and include libavutil.h. Signed-off-by: Jordi Mallach <[email protected]> Signed-off-by: Takashi Iwai <[email protected]> --- a52/pcm_a52.c | 1 + configure.in | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/a52/pcm_a52.c b/a52/pcm_a52.c index c40aadc..75c68bd 100644 --- a/a52/pcm_a52.c +++ b/a52/pcm_a52.c @@ -26,6 +26,7 @@ #include <alsa/pcm_external.h> #include <alsa/pcm_plugin.h> #include AVCODEC_HEADER +#include <libavutil/avutil.h> #if LIBAVCODEC_VERSION_MAJOR >= 53 && LIBAVCODEC_VERSION_MINOR >= 34 #include <libavutil/audioconvert.h> diff --git a/configure.in b/configure.in index 6f345f5..bf8676b 100644 --- a/configure.in +++ b/configure.in @@ -67,7 +67,7 @@ AC_ARG_ENABLE([avcodec], AS_HELP_STRING([--disable-avcodec], [Don't build plugins depending on avcodec (a52)])) if test "x$enable_avcodec" != "xno"; then - PKG_CHECK_MODULES(AVCODEC, [libavcodec], [HAVE_AVCODEC=yes], [HAVE_AVCODEC=no]) + PKG_CHECK_MODULES(AVCODEC, [libavcodec libavutil], [HAVE_AVCODEC=yes], [HAVE_AVCODEC=no]) fi if test "x$HAVE_AVCODEC" = "xno"; then -- 1.8.2.3 ++++++ 0002-Add-AM_MAINTAINER_MODE-enable-to-configure.in.patch ++++++ >From 7158444238d072c35b543d6eed4f9351115fec7d Mon Sep 17 00:00:00 2001 From: Jordi Mallach <[email protected]> Date: Wed, 15 May 2013 19:11:48 +0200 Subject: [PATCH 2/2] Add AM_MAINTAINER_MODE([enable]) to configure.in. Signed-off-by: Jordi Mallach <[email protected]> Signed-off-by: Takashi Iwai <[email protected]> --- configure.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.in b/configure.in index bf8676b..abc7013 100644 --- a/configure.in +++ b/configure.in @@ -3,6 +3,8 @@ AC_INIT(oss/pcm_oss.c) AM_INIT_AUTOMAKE(alsa-plugins, 1.0.27) AC_PREFIX_DEFAULT(/usr) +AM_MAINTAINER_MODE([enable]) + AC_CONFIG_HEADERS(config.h) AC_CONFIG_MACRO_DIR([m4]) -- 1.8.2.3 -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
