Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 19 Oct 2016 16:19:29 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r424271 - head/x11/qterminal
Message-ID:  <201610191619.u9JGJTSb030903@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Wed Oct 19 16:19:28 2016
New Revision: 424271
URL: https://svnweb.freebsd.org/changeset/ports/424271

Log:
  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

Modified:
  head/x11/qterminal/Makefile

Modified: head/x11/qterminal/Makefile
==============================================================================
--- head/x11/qterminal/Makefile	Wed Oct 19 16:17:40 2016	(r424270)
+++ head/x11/qterminal/Makefile	Wed Oct 19 16:19:28 2016	(r424271)
@@ -23,6 +23,10 @@ CMAKE_ARGS+=	-DUSE_SYSTEM_QXT:BOOL=OFF -
 USE_GITHUB=	yes
 GH_ACCOUNT=	lxde
 
+.include <bsd.port.pre.mk>
+
+.if ${OPSYS} == FreeBSD
 LDFLAGS+=	-lulog
+.endif
 
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>



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