From: Nicolas Chauvet (kwizart) Date: Wed, 13 May 2009 13:26:32 +0000 (+0200) Subject: Fix missing symbol in libxvmc_plugin.so X-Git-Tag: 1.1.0-ff~6004 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=9530b16f796c31447ec17b3dee57f0015ad7456a;p=vlc Fix missing symbol in libxvmc_plugin.so 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 --- 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" ]) ])