diff options
author | marino <marino@FreeBSD.org> | 2013-10-08 08:15:34 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2013-10-08 08:15:34 +0800 |
commit | ad2e6d9cbccd260dd87a0b628896acf13b94a652 (patch) | |
tree | 39be84d6997d264d9ca2a8ab4f521d044421e824 /textproc | |
parent | 2cdc7a8011d68e815fb70ceef695ab41675a6ca2 (diff) | |
download | freebsd-ports-gnome-ad2e6d9cbccd260dd87a0b628896acf13b94a652.tar.gz freebsd-ports-gnome-ad2e6d9cbccd260dd87a0b628896acf13b94a652.tar.zst freebsd-ports-gnome-ad2e6d9cbccd260dd87a0b628896acf13b94a652.zip |
Explicitly link libraries on 10 unmaintained ports
The following ports will not build with a binutils 2.22+ linker built
with standard options. This has been obvious with DPorts, but difficult
to see on FreeBSD. However, setting the ports compiler as a recent gcc
(e.g lang/gcc48) is an excellent way to detect the unspecified but needed
libraries as these recent GCC compilers use the latest binutils linkers.
These patches were tested on FreeBSD 8.4 and DragonFly 3.5
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/dixit/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/textproc/dixit/Makefile b/textproc/dixit/Makefile index 47751f9463e9..e5c73c25373f 100644 --- a/textproc/dixit/Makefile +++ b/textproc/dixit/Makefile @@ -22,6 +22,7 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}.${QT_VER} USE_QT4= corelib gui network moc_build qmake_build rcc_build HAS_CONFIGURE= yes +QMAKEFLAGS= QMAKE_LFLAGS="-lz" PLIST_SUB= _DB=${_DB} DB_DIR=${DB_DIR} _DB_F=${_DB_F} |