Gentoo Archives: gentoo-commits

From: "Alexandre Rostovtsev (tetromino)" <tetromino@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-base/gnome-applets/files: gnome-applets-2.32.1.1-mixer-libm.patch
Date: Sun, 05 Jan 2014 08:40:21
Message-Id: 20140105084017.C9AD62004C@flycatcher.gentoo.org
1 tetromino 14/01/05 08:40:17
2
3 Added: gnome-applets-2.32.1.1-mixer-libm.patch
4 Log:
5 Fix underlinking problem (bug #497118, thanks to d_dart).
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key CF0ADD61)
8
9 Revision Changes Path
10 1.1 gnome-base/gnome-applets/files/gnome-applets-2.32.1.1-mixer-libm.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-applets/files/gnome-applets-2.32.1.1-mixer-libm.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-applets/files/gnome-applets-2.32.1.1-mixer-libm.patch?rev=1.1&content-type=text/plain
14
15 Index: gnome-applets-2.32.1.1-mixer-libm.patch
16 ===================================================================
17 From f2a7c6548ad508c94398e10c49c962363e15d739 Mon Sep 17 00:00:00 2001
18 From: Ray Strode <rstrode@××××××.com>
19 Date: Wed, 19 Sep 2012 18:27:22 -0400
20 Subject: [PATCH] configure: add -lm dependency on mixer libs
21
22 the mixer applet requires -lm to build.
23 this commit adds that dependency.
24 ---
25 configure.in | 1 +
26 1 file changed, 1 insertion(+)
27
28 diff --git a/configure.in b/configure.in
29 index 7c1c8fc..b318fb5 100644
30 --- a/configure.in
31 +++ b/configure.in
32 @@ -297,6 +297,7 @@ if test "x$enable_mixer" != "xno"; then
33 AC_MSG_ERROR([Mixer applet explicitly requested but a compatible gstreamer version was not found])
34 fi
35 fi
36 +MIXER_LIBS="$MIXER_LIBS -lm"
37 AM_CONDITIONAL(BUILD_MIXER_APPLET, test "x$enable_mixer" = "xyes")
38 AC_SUBST(MIXER_CFLAGS)
39 AC_SUBST(MIXER_LIBS)
40 --
41 1.8.5.2