diff options
author | rakuco <rakuco@FreeBSD.org> | 2013-11-18 05:38:26 +0800 |
---|---|---|
committer | rakuco <rakuco@FreeBSD.org> | 2013-11-18 05:38:26 +0800 |
commit | f73f1de188770cfc9014b1eba688d0d30b0f113e (patch) | |
tree | 584352248d874fd5f1abc7558e9d1e484c828421 /astro/xglobe | |
parent | 7258de6f3e27a5bc069b9779b43c995fd57dd48d (diff) | |
download | freebsd-ports-gnome-f73f1de188770cfc9014b1eba688d0d30b0f113e.tar.gz freebsd-ports-gnome-f73f1de188770cfc9014b1eba688d0d30b0f113e.tar.zst freebsd-ports-gnome-f73f1de188770cfc9014b1eba688d0d30b0f113e.zip |
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.
Diffstat (limited to 'astro/xglobe')
-rw-r--r-- | astro/xglobe/files/patch-Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/astro/xglobe/files/patch-Makefile b/astro/xglobe/files/patch-Makefile index dd9ce83093a8..c408904c8fcb 100644 --- a/astro/xglobe/files/patch-Makefile +++ b/astro/xglobe/files/patch-Makefile @@ -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 |