pacho 14/06/22 15:59:08 Added: gxine-0.5.907-underlinking.patch Log: Drop support for old gnome-screensaver, fix underlinking and spidermonkey detection (#481442) (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Revision Changes Path 1.1 media-video/gxine/files/gxine-0.5.907-underlinking.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/gxine/files/gxine-0.5.907-underlinking.patch?rev=1.1&view=markup 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 Index: gxine-0.5.907-underlinking.patch =================================================================== --- configure.ac +++ configure.ac @@ -333,6 +333,20 @@ AC_SUBST(THREAD_LIBS) dnl --------------------------------------------- +dnl Check for libdl/libdld for dlopen() +dnl --------------------------------------------- +AC_SEARCH_LIBS([dlopen], [dl dld], [], [ + AC_MSG_ERROR([unable to find the dlopen() function]) +]) + +dnl --------------------------------------------- +dnl Check for libm for log10() +dnl --------------------------------------------- +AC_SEARCH_LIBS([log10], [m], [], [ + AC_MSG_ERROR([unable to find the log10() function]) +]) + +dnl --------------------------------------------- dnl Check for xine-lib dnl --------------------------------------------- AM_PATH_XINE([$XINE_LIB_MIN_VER],, AC_MSG_ERROR([*** Please install xine-lib (devel) first ***]))
