From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul Menzel Subject: [PATCH 1/2] configure.ac: Do not include `xext` and `xfixes` in `XVMCLIB` Date: Sat, 02 Feb 2013 22:53:28 +0100 Message-ID: <1359842008.5545.5.camel@mattotaupa> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1783310220==" Return-path: Received: from mail.gw90.de (mail.gw90.de [188.40.100.199]) by gabe.freedesktop.org (Postfix) with ESMTP id 00C4AE60DA for ; Sat, 2 Feb 2013 13:53:31 -0800 (PST) Received: from e178076012.adsl.alicedsl.de ([85.178.76.12] helo=[192.168.2.49]) by mail.gw90.de with esmtpsa (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.72) (envelope-from ) id 1U1l1f-0008JS-Rn for intel-gfx@lists.freedesktop.org; Sat, 02 Feb 2013 21:53:32 +0000 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: intel-gfx-bounces+gcfxdi-intel-gfx=m.gmane.org@lists.freedesktop.org Errors-To: intel-gfx-bounces+gcfxdi-intel-gfx=m.gmane.org@lists.freedesktop.org To: intel-gfx@lists.freedesktop.org List-Id: intel-gfx@lists.freedesktop.org --===============1783310220== Content-Type: multipart/signed; micalg="pgp-sha1"; protocol="application/pgp-signature"; boundary="=-JHk2A1zKkNGkTzfI//7l" --=-JHk2A1zKkNGkTzfI//7l Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Date: Sat, 2 Feb 2013 11:44:54 +0100 Building the package under Debian Sid/unstable, `dh_shlibdeps` informs that `libIntelXvMC.so.1.0.0` does not need to be linked against `libXext.so.6` or `libXfixes.so.3` [1]. $ debuild -b -us -uc [=E2=80=A6] make[1]: Entering directory `/build/buildd-xserver-xorg-video-intel= _2.19.0-6-i386-9thLfo/xserver-xorg-video-intel-2.19.0' dh_shlibdeps -- --warnings=3D6 dpkg-shlibdeps: warning: debian/xserver-xorg-video-intel/usr/lib/li= bIntelXvMC.so.1.0.0 should not be linked against libXext.so.6 (it uses none= of the library's symbols) dpkg-shlibdeps: warning: debian/xserver-xorg-video-intel/usr/lib/li= bIntelXvMC.so.1.0.0 should not be linked against libXfixes.so.3 (it uses no= ne of the library's symbols) dpkg-shlibdeps: warning: debian/xserver-xorg-video-intel/usr/lib/li= bI810XvMC.so.1.0.0 should not be linked against libXext.so.6 (it uses none = of the library's symbols) dpkg-shlibdeps: warning: debian/xserver-xorg-video-intel/usr/lib/li= bI810XvMC.so.1.0.0 should not be linked against libXfixes.so.3 (it uses non= e of the library's symbols) dpkg-shlibdeps: warning: debian/xserver-xorg-video-intel/usr/lib/li= bI810XvMC.so.1.0.0 should not be linked against libX11-xcb.so.1 (it uses no= ne of the library's symbols) dpkg-shlibdeps: warning: debian/xserver-xorg-video-intel/usr/lib/li= bI810XvMC.so.1.0.0 should not be linked against libxcb-dri2.so.0 (it uses n= one of the library's symbols) dpkg-shlibdeps: warning: debian/xserver-xorg-video-intel/usr/lib/li= bI810XvMC.so.1.0.0 should not be linked against libxcb-util.so.0 (it uses n= one of the library's symbols) dpkg-shlibdeps: warning: debian/xserver-xorg-video-intel/usr/lib/li= bI810XvMC.so.1.0.0 should not be linked against libxcb.so.1 (it uses none o= f the library's symbols) dpkg-shlibdeps: warning: package could avoid a useless dependency i= f debian/xserver-xorg-video-intel/usr/lib/libIntelXvMC.so.1.0.0 debian/xser= ver-xorg-video-intel/usr/lib/libI810XvMC.so.1.0.0 were not linked against l= ibXext.so.6 (they use none of the library's symbols) dpkg-shlibdeps: warning: package could avoid a useless dependency i= f debian/xserver-xorg-video-intel/usr/lib/libIntelXvMC.so.1.0.0 debian/xser= ver-xorg-video-intel/usr/lib/libI810XvMC.so.1.0.0 were not linked against l= ibXfixes.so.3 (they use none of the library's symbols) make[1]: Leaving directory `/build/buildd-xserver-xorg-video-intel_= 2.19.0-6-i386-9thLfo/xserver-xorg-video-intel-2.19.0' dh_installdeb -a -O--builddirectory=3Dbuild/ [=E2=80=A6] Not populating `XVMCLIB` with `xext` and `xfixes` makes the warning go away and the libraries are still built without any issues. [1] https://buildd.debian.org/status/fetch.php?pkg=3Dxserver-xorg-video-int= el&arch=3Di386&ver=3D2%3A2.19.0-6&stamp=3D1347825458 Signed-off-by: Paul Menzel --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 5135ecc..e6ab9d0 100644 --- a/configure.ac +++ b/configure.ac @@ -404,7 +404,7 @@ AC_MSG_RESULT([$DRI2]) =20 if test "$XVMC" =3D yes; then PKG_CHECK_MODULES(XVMCLIB, - [xvmc xext xfixes dri2proto x11-xcb xcb-dri2 xcb-aux], + [xvmc dri2proto x11-xcb xcb-dri2 xcb-aux], [XVMC=3Dyes], [XVMC=3Dno]) fi AC_MSG_CHECKING([whether to include XvMC support]) --=20 1.7.10.4 --=-JHk2A1zKkNGkTzfI//7l Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) iEYEABECAAYFAlENitgACgkQPX1aK2wOHViOhwCeKC5x2VKQ1w0PzQdzZ/ifh3pe 7msAn19Zrv22cZROCKHgtb/4PZ3fqGxc =lUrd -----END PGP SIGNATURE----- --=-JHk2A1zKkNGkTzfI//7l-- --===============1783310220== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/intel-gfx --===============1783310220==--