From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Ph4LZ-0004Tm-Jp for garchives@archives.gentoo.org; Sun, 23 Jan 2011 18:07:29 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C992E09A9; Sun, 23 Jan 2011 18:07:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 5D922E09A9 for ; Sun, 23 Jan 2011 18:07:22 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BD6CA1B4077 for ; Sun, 23 Jan 2011 18:07:21 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2276) id 9093520054; Sun, 23 Jan 2011 18:07:19 +0000 (UTC) From: "Andreas HAttel (dilfridge)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, dilfridge@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in app-office/krita/files: krita-2.3.1-linkx11.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: krita-2.3.1-linkx11.patch X-VCS-Directories: app-office/krita/files X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas HAttel Content-Type: text/plain; charset=utf8 Message-Id: <20110123180719.9093520054@flycatcher.gentoo.org> Date: Sun, 23 Jan 2011 18:07:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 0a9c823a6a2eda21c332b95acf8048b4 dilfridge 11/01/23 18:07:19 Added: krita-2.3.1-linkx11.patch Log: Fix linkage against X11 libs, bug 352425 =20 (Portage version: 2.1.9.35/cvs/Linux x86_64) Revision Changes Path 1.1 app-office/krita/files/krita-2.3.1-linkx11.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/krita/f= iles/krita-2.3.1-linkx11.patch?rev=3D1.1&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/krita/f= iles/krita-2.3.1-linkx11.patch?rev=3D1.1&content-type=3Dtext/plain Index: krita-2.3.1-linkx11.patch =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D diff -ruN krita-2.3.1.orig/krita/ui/CMakeLists.txt krita-2.3.1/krita/ui/C= MakeLists.txt --- krita-2.3.1.orig/krita/ui/CMakeLists.txt 2011-01-15 21:07:11.00000000= 0 +0100 +++ krita-2.3.1/krita/ui/CMakeLists.txt 2011-01-23 18:56:56.824000099 +01= 00 @@ -216,6 +216,10 @@ =20 target_link_libraries(kritaui ${KDE4_THREADWEAVER_LIBRARIES} kritaimage = komain kowidgets ${PNG_LIBRARIES} ${EXIV2_LIBRARIES}) =20 +IF(Q_WS_X11) + TARGET_LINK_LIBRARIES(kritaui ${X11_LIBRARIES}) +ENDIF(Q_WS_X11) + if(HAVE_OPENGL) target_link_libraries(kritaui ${OPENGL_LIBRARIES} ${QT_QTOPENGL_LIBR= ARY} ${OPENEXR_LIBRARIES}) set (GL_INTERFACE_LIBRARIES ";${OPENGL_LIBRARIES};${QT_QTOPENGL_LIBR= ARY}")