From 9530b16f796c31447ec17b3dee57f0015ad7456a Mon Sep 17 00:00:00 2001 From: "Nicolas Chauvet (kwizart)" Date: Wed, 13 May 2009 15:26:32 +0200 Subject: [PATCH] Fix missing symbol in libxvmc_plugin.so MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit the XvMC plugin use xcommon.c where some part use HAVE_XINERAMA conditions. Missing symbols are : XineramaQueryScreens XineramaQueryExtension XineramaIsActive Signed-off-by: Rémi Duraffort --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.ac b/configure.ac index 41dc3c210a..34de252e25 100644 --- a/configure.ac +++ b/configure.ac @@ -4014,12 +4014,14 @@ AS_IF([test "$enable_xinerama" != "no"], [ VLC_ADD_LIBS([xvideo],[-lXinerama_pic]) VLC_ADD_LIBS([x11],[-lXinerama_pic]) VLC_ADD_LIBS([glx],[-lXinerama_pic]) + VLC_ADD_LIBS([xvmc],[-lXinerama_pic]) ac_cv_have_xinerama="yes" ],[ AC_CHECK_LIB(Xinerama, XineramaQueryExtension,[ VLC_ADD_LIBS([xvideo],[-lXinerama]) VLC_ADD_LIBS([x11],[-lXinerama]) VLC_ADD_LIBS([glx],[-lXinerama]) + VLC_ADD_LIBS([xvmc],[-lXinerama]) ac_cv_have_xinerama="yes" ]) ]) -- 2.39.2