svn commit: r424271 - head/x11/qterminal

John Marino marino at FreeBSD.org
Wed Oct 19 16:19:30 UTC 2016


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>


More information about the svn-ports-head mailing list