Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/lash/files: lash-0.5.4-underlinking.patch lash-0.5.4-strcmp.patch
Date: Wed, 09 Jul 2014 18:25:54
Message-Id: 20140709182549.55CC32004E@flycatcher.gentoo.org
1 ssuominen 14/07/09 18:25:49
2
3 Added: lash-0.5.4-underlinking.patch
4 lash-0.5.4-strcmp.patch
5 Log:
6 Fix underlinking bugs #367589 (missing -luuid) and #514748 (missing -lm). Thanks to Diego Elio Pettenò, Christian Compagnon and Ted Tanberry. Fix missing include of string.h for strcmp() while at it.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
9
10 Revision Changes Path
11 1.1 media-sound/lash/files/lash-0.5.4-underlinking.patch
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lash/files/lash-0.5.4-underlinking.patch?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lash/files/lash-0.5.4-underlinking.patch?rev=1.1&content-type=text/plain
15
16 Index: lash-0.5.4-underlinking.patch
17 ===================================================================
18 http://bugs.gentoo.org/367589
19 http://bugs.gentoo.org/514748
20
21 --- clients/control/Makefile.am
22 +++ clients/control/Makefile.am
23 @@ -18,6 +18,7 @@
24
25 lash_control_LDADD = \
26 $(top_builddir)/liblash/liblash.la \
27 - $(LASH_LIBS) @READLINE_LIBS@
28 + $(LASH_LIBS) @READLINE_LIBS@ \
29 + $(UUID_LIBS)
30
31 endif
32 --- clients/synth/Makefile.am
33 +++ clients/synth/Makefile.am
34 @@ -20,4 +20,5 @@
35 $(JACK_LIBS) \
36 $(ALSA_LIBS) \
37 $(GTK2_LIBS) \
38 - -lpthread
39 + -lpthread \
40 + -lm
41
42
43
44 1.1 media-sound/lash/files/lash-0.5.4-strcmp.patch
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lash/files/lash-0.5.4-strcmp.patch?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lash/files/lash-0.5.4-strcmp.patch?rev=1.1&content-type=text/plain
48
49 Index: lash-0.5.4-strcmp.patch
50 ===================================================================
51 clients/synth/lash.c:85:2: warning: implicit declaration of function ‘strcmp’ [-Wimplicit-function-declaration]
52
53 --- clients/synth/lash.c
54 +++ clients/synth/lash.c
55 @@ -22,6 +22,7 @@
56
57 #include "config.h"
58
59 +#include <string.h>
60 #include <unistd.h>
61
62 #include <lash/lash.h>