Gentoo Archives: gentoo-commits

From: "Tom Wijsman (tomwij)" <tomwij@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/tapestrea/files: tapestrea-0.1.0.5-r1-underlinking-alsa-pthread.patch
Date: Thu, 30 Jan 2014 01:29:16
Message-Id: 20140130012912.9CBEC2004E@flycatcher.gentoo.org
1 tomwij 14/01/30 01:29:12
2
3 Added:
4 tapestrea-0.1.0.5-r1-underlinking-alsa-pthread.patch
5 Log:
6 [QA] Revision bump. EAPI 5. Fixed underlinking bug #369759 and LDFLAGS bug #333743 (with contribution by iamnr3), both reported by flameeyes; and some other small fixes.
7
8 (Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D)
9
10 Revision Changes Path
11 1.1 media-sound/tapestrea/files/tapestrea-0.1.0.5-r1-underlinking-alsa-pthread.patch
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/tapestrea/files/tapestrea-0.1.0.5-r1-underlinking-alsa-pthread.patch?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/tapestrea/files/tapestrea-0.1.0.5-r1-underlinking-alsa-pthread.patch?rev=1.1&content-type=text/plain
15
16 Index: tapestrea-0.1.0.5-r1-underlinking-alsa-pthread.patch
17 ===================================================================
18 --- a/src/makefile.alsa
19 +++ b/src/makefile.alsa
20 @@ -3,7 +3,7 @@
21 CHUCK_DIR=../scripting/chuck-1.2.1.2/src
22 INCLUDES=-I$(CHUCK_DIR)
23 FLAGS=-D__LINUX_ALSA__ `pkg-config --cflags gtk+-2.0` $(CFLAGS) -c
24 -LIBS=-lasound -lstdc++ -lm -lsndfile -lGL -lGLU -lglut `pkg-config --libs gtk+-2.0`
25 +LIBS=-lasound -lstdc++ -lm -lsndfile -lGL -lGLU -lglut `pkg-config --libs gtk+-2.0` -lpthread
26
27 TAPS_OBJS= taps_analysis.o taps_birdbrain.o taps_driver.o \
28 taps_featurelibrary.o taps_pvc.o taps_regioncomparer.o \
29 --- a/scripting/chuck-1.2.1.2/src/makefile.alsa
30 +++ b/scripting/chuck-1.2.1.2/src/makefile.alsa
31 @@ -5,7 +5,7 @@
32 INCLUDES=
33 CFLAGS?= -O3
34 FLAGS= -D__LINUX_ALSA__ -c $(CFLAGS)
35 -LIBS=-lasound -lstdc++ -ldl -lm
36 +LIBS=-lasound -lstdc++ -lm -lpthread -ldl
37 SF_OBJ=util_sndfile.o
38
39 ifneq ($(CHUCK_DEBUG),)
40 diff -Naur a/src/makefile.alsa b/src/makefile.alsa
41 --- a/src/makefile.alsa 2014-01-30 02:21:02.173891275 +0100
42 +++ b/src/makefile.alsa 2014-01-30 02:21:23.026891253 +0100
43 @@ -48,7 +48,7 @@
44 OBJS+=ui_scripting.o
45 # scripting disable needs most of chuck anyway due to includes
46 # in latest rtaudio.cpp, so always keep this line:
47 -LIBS+=$(CHUCK_OBJS)
48 +LIBS+=$(CHUCK_OBJS) -ldl
49
50 # uncomment to use preconfigured sndfile
51 #FLAGS+=-D__USE_SNDFILE_PRECONF__