Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 17 Nov 2013 21:38:26 +0000 (UTC)
From:      Raphael Kubo da Costa <rakuco@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r334125 - head/astro/xglobe/files
Message-ID:  <201311172138.rAHLcQep074599@svn.freebsd.org>

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



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