From owner-svn-ports-head@freebsd.org Thu Sep 29 05:07:28 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C1E00C00F42; Thu, 29 Sep 2016 05:07:28 +0000 (UTC) (envelope-from dbn@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 78194A25; Thu, 29 Sep 2016 05:07:28 +0000 (UTC) (envelope-from dbn@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8T57Rf6021325; Thu, 29 Sep 2016 05:07:27 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8T57R4P021323; Thu, 29 Sep 2016 05:07:27 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201609290507.u8T57R4P021323@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Thu, 29 Sep 2016 05:07:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422903 - in head/x11/kde4-workspace: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Sep 2016 05:07:28 -0000 Author: dbn Date: Thu Sep 29 05:07:27 2016 New Revision: 422903 URL: https://svnweb.freebsd.org/changeset/ports/422903 Log: x11/kde4-workspace: fix OpenGL test for nvidia-driver. Restore patch introduced in r408463 and accidentially removed in r417328. MFH: 2016Q3 Added: head/x11/kde4-workspace/files/patch-kwin_opengltest_CMakeLists.txt - copied unchanged from r417327, head/x11/kde4-workspace/files/patch-kwin_opengltest_CMakeLists.txt Modified: head/x11/kde4-workspace/Makefile Modified: head/x11/kde4-workspace/Makefile ============================================================================== --- head/x11/kde4-workspace/Makefile Thu Sep 29 04:07:58 2016 (r422902) +++ head/x11/kde4-workspace/Makefile Thu Sep 29 05:07:27 2016 (r422903) @@ -2,7 +2,7 @@ PORTNAME= kde-workspace PORTVERSION= ${KDE4_WORKSPACE_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11 kde MASTER_SITES= KDE/${KDE4_APPLICATIONS_BRANCH}/applications/${KDE4_APPLICATIONS_VERSION}/src DIST_SUBDIR= KDE/${PORTVERSION} Copied: head/x11/kde4-workspace/files/patch-kwin_opengltest_CMakeLists.txt (from r417327, head/x11/kde4-workspace/files/patch-kwin_opengltest_CMakeLists.txt) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/kde4-workspace/files/patch-kwin_opengltest_CMakeLists.txt Thu Sep 29 05:07:27 2016 (r422903, copy of r417327, head/x11/kde4-workspace/files/patch-kwin_opengltest_CMakeLists.txt) @@ -0,0 +1,15 @@ +--- kwin/opengltest/CMakeLists.txt.orig 2014-11-06 22:36:58 UTC ++++ kwin/opengltest/CMakeLists.txt +@@ -2,9 +2,11 @@ + + set(kwin_opengl_test_SRCS opengltest.cpp ) + ++find_package(Threads) ++ + kde4_add_executable(kwin_opengl_test ${kwin_opengl_test_SRCS}) + +-target_link_libraries(kwin_opengl_test ${X11_LIBRARIES} ${OPENGL_gl_LIBRARY}) ++target_link_libraries(kwin_opengl_test ${X11_LIBRARIES} ${OPENGL_gl_LIBRARY} ${CMAKE_THREAD_LIBS_INIT}) + + install(TARGETS kwin_opengl_test DESTINATION ${LIBEXEC_INSTALL_DIR} ) +