svn commit: r334125 - head/astro/xglobe/files

Raphael Kubo da Costa rakuco at FreeBSD.org
Sun Nov 17 21:38:27 UTC 2013


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


More information about the svn-ports-all mailing list