x11/qterminal: Adjust LDFLAGS to support DragonFly

The ulog library is FreeBSD-specific so make it conditional based on
OPSYS to fix linking on DragonFly.

Approved by:	DF blanket
This commit is contained in:
John Marino 2016-10-19 16:19:28 +00:00
parent 33551e6e99
commit 39d12e80e2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=424271

View file

@ -23,6 +23,10 @@ CMAKE_ARGS+= -DUSE_SYSTEM_QXT:BOOL=OFF -DUSE_QT5:BOOL=ON
USE_GITHUB= yes
GH_ACCOUNT= lxde
LDFLAGS+= -lulog
.include <bsd.port.pre.mk>
.include <bsd.port.mk>
.if ${OPSYS} == FreeBSD
LDFLAGS+= -lulog
.endif
.include <bsd.port.post.mk>