Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/gxine/files: gxine-0.5.907-underlinking.patch
Date: Sun, 22 Jun 2014 15:59:12
Message-Id: 20140622155908.72DA020036@flycatcher.gentoo.org
1 pacho 14/06/22 15:59:08
2
3 Added: gxine-0.5.907-underlinking.patch
4 Log:
5 Drop support for old gnome-screensaver, fix underlinking and spidermonkey detection (#481442)
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
8
9 Revision Changes Path
10 1.1 media-video/gxine/files/gxine-0.5.907-underlinking.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/gxine/files/gxine-0.5.907-underlinking.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/gxine/files/gxine-0.5.907-underlinking.patch?rev=1.1&content-type=text/plain
14
15 Index: gxine-0.5.907-underlinking.patch
16 ===================================================================
17 --- configure.ac
18 +++ configure.ac
19 @@ -333,6 +333,20 @@
20 AC_SUBST(THREAD_LIBS)
21
22 dnl ---------------------------------------------
23 +dnl Check for libdl/libdld for dlopen()
24 +dnl ---------------------------------------------
25 +AC_SEARCH_LIBS([dlopen], [dl dld], [], [
26 + AC_MSG_ERROR([unable to find the dlopen() function])
27 +])
28 +
29 +dnl ---------------------------------------------
30 +dnl Check for libm for log10()
31 +dnl ---------------------------------------------
32 +AC_SEARCH_LIBS([log10], [m], [], [
33 + AC_MSG_ERROR([unable to find the log10() function])
34 +])
35 +
36 +dnl ---------------------------------------------
37 dnl Check for xine-lib
38 dnl ---------------------------------------------
39 AM_PATH_XINE([$XINE_LIB_MIN_VER],, AC_MSG_ERROR([*** Please install xine-lib (devel) first ***]))