From owner-svn-ports-head@freebsd.org Sat Mar 19 14:26:06 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 16137AD4051; Sat, 19 Mar 2016 14:26:06 +0000 (UTC) (envelope-from rakuco@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 C258ED03; Sat, 19 Mar 2016 14:26:05 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2JEQ4VO003569; Sat, 19 Mar 2016 14:26:04 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2JEQ4NG003568; Sat, 19 Mar 2016 14:26:04 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201603191426.u2JEQ4NG003568@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sat, 19 Mar 2016 14:26:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r411403 - head/emulators/aqemu/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.21 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: Sat, 19 Mar 2016 14:26:06 -0000 Author: rakuco Date: Sat Mar 19 14:26:04 2016 New Revision: 411403 URL: https://svnweb.freebsd.org/changeset/ports/411403 Log: Add patch to stop building the libvncclient target. The libvncclient target was removed because it was not used anywhere (aqemu links against the systems libvncclient.so, only the definitions and includes are needed from this block) and did not declare its dependency on the moc and ui files, possibly causing problems in parallel builds (way more often with CMake 3.5.0). PR: 208033 Modified: head/emulators/aqemu/files/patch-CMakeLists.txt Modified: head/emulators/aqemu/files/patch-CMakeLists.txt ============================================================================== --- head/emulators/aqemu/files/patch-CMakeLists.txt Sat Mar 19 14:23:54 2016 (r411402) +++ head/emulators/aqemu/files/patch-CMakeLists.txt Sat Mar 19 14:26:04 2016 (r411403) @@ -1,6 +1,18 @@ ---- ./CMakeLists.txt.orig 2010-12-21 19:45:24.000000000 +0300 -+++ ./CMakeLists.txt 2011-04-17 13:03:32.608958928 +0400 -@@ -318,6 +318,6 @@ +The libvncclient target was removed because it was not used anywhere (aqemu +links against the systems libvncclient.so, only the definitions and includes +are needed from this block) and did not declare its dependency on the moc and +ui files, possibly causing problems in parallel builds. +--- CMakeLists.txt.orig 2011-01-14 19:38:53 UTC ++++ CMakeLists.txt +@@ -164,7 +164,6 @@ IF( NOT WITHOUT_EMBEDDED_DISPLAY ) + Embedded_Display/vncclientthread.cpp Embedded_Display/vncview.cpp ) + + ADD_DEFINITIONS( -DVNC_DISPLAY -DQTONLY ) +- ADD_LIBRARY( libvncclient SHARED ${aqemu_headers} ${aqemu_sources} ) + + INCLUDE_DIRECTORIES( ${VNCCLIENT_INCLUDE_DIRS} ${LIBVNCCLIENT_INCLUDE_DIR} ) + ENDIF( NOT WITHOUT_EMBEDDED_DISPLAY ) +@@ -318,6 +317,6 @@ IF( INSTALL_MAN ) MESSAGE( STATUS "MAN_PAGE_COMPRESSOR flag not set. Available values: gzip, bzip2, lzma" ) MESSAGE( STATUS "Will be installed not compressed MAN pages" )