From owner-svn-ports-head@FreeBSD.ORG Sun Nov 17 21:38:27 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 301C1B6; Sun, 17 Nov 2013 21:38:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2008D2617; Sun, 17 Nov 2013 21:38:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rAHLcQxQ074600; Sun, 17 Nov 2013 21:38:26 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rAHLcQep074599; Sun, 17 Nov 2013 21:38:26 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201311172138.rAHLcQep074599@svn.freebsd.org> From: Raphael Kubo da Costa Date: Sun, 17 Nov 2013 21:38:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r334125 - head/astro/xglobe/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.16 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: Sun, 17 Nov 2013 21:38:27 -0000 Author: rakuco Date: Sun Nov 17 21:38:26 2013 New Revision: 334125 URL: http://svnweb.freebsd.org/changeset/ports/334125 Log: Fix the build on FreeBSD 10 and 11. Explicitly link the final executable against libQtCore.so, as the linker does not add implicit dependencies anymore. The dependency was already registered in the Makefile, so no PORTREVISION bump is required. Modified: head/astro/xglobe/files/patch-Makefile Modified: head/astro/xglobe/files/patch-Makefile ============================================================================== --- head/astro/xglobe/files/patch-Makefile Sun Nov 17 21:35:00 2013 (r334124) +++ head/astro/xglobe/files/patch-Makefile Sun Nov 17 21:38:26 2013 (r334125) @@ -47,7 +47,7 @@ LIB_DIRS = -L$(QT_LIB_DIR) -L$(X11_LIB_DIR) -LIBS = -lX11 -lqt -lm -+LIBS = -lX11 -lQt3Support -lQtGui -lm -pthread ++LIBS = -lX11 -lQtCore -lQt3Support -lQtGui -lm -pthread # If you want to use the QImageIO lib (to support jpg and png maps) use the # next two lines and comment the one above #WITH_QIMGIO = -DWITH_QIMAGEIO