Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 29 Sep 2016 05:07:27 +0000 (UTC)
From:      David Naylor <dbn@FreeBSD.org>
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
Message-ID:  <201609290507.u8T57R4P021323@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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} )
+ 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609290507.u8T57R4P021323>