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-libs/libdc1394/files: libdc1394-2.2.1-pthread.patch
Date: Fri, 20 Jun 2014 12:54:27
Message-Id: 20140620125423.EBD5E2004F@flycatcher.gentoo.org
1 ssuominen 14/06/20 12:54:23
2
3 Added: libdc1394-2.2.1-pthread.patch
4 Log:
5 Since capture.c in dc1394/usb/ directory is using pthread_join and pthread_create functions, link to -lpthread accordingly wrt #514008
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
8
9 Revision Changes Path
10 1.1 media-libs/libdc1394/files/libdc1394-2.2.1-pthread.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdc1394/files/libdc1394-2.2.1-pthread.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdc1394/files/libdc1394-2.2.1-pthread.patch?rev=1.1&content-type=text/plain
14
15 Index: libdc1394-2.2.1-pthread.patch
16 ===================================================================
17 http://bugs.gentoo.org/514008
18
19 --- dc1394/usb/Makefile.am
20 +++ dc1394/usb/Makefile.am
21 @@ -8,7 +8,7 @@
22 endif
23
24 AM_CFLAGS = -I$(top_srcdir) -I$(top_srcdir)/dc1394 $(LIBUSB_CFLAGS)
25 -libdc1394_usb_la_LIBADD = $(LIBUSB_LIBS)
26 +libdc1394_usb_la_LIBADD = $(LIBUSB_LIBS) -lpthread
27 libdc1394_usb_la_SOURCES = \
28 control.c \
29 usb.h \