Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 17 Jun 2015 18:58:11 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r389989 - head/comms/hcidump
Message-ID:  <201506171858.t5HIwBZu066246@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Wed Jun 17 18:58:10 2015
New Revision: 389989
URL: https://svnweb.freebsd.org/changeset/ports/389989

Log:
  - Fix build on CURRENT
  
  In base revision r281198, sockaddr_l2cap structure was changed, and
  an #error which fires by default was added as a safety measure to
  make sure all structure consumers are updated to initialize new
  fields. This port, however, doesn't seem to use this structure, so
  it should be safe to just disable the error.

Modified:
  head/comms/hcidump/Makefile

Modified: head/comms/hcidump/Makefile
==============================================================================
--- head/comms/hcidump/Makefile	Wed Jun 17 18:46:56 2015	(r389988)
+++ head/comms/hcidump/Makefile	Wed Jun 17 18:58:10 2015	(r389989)
@@ -14,6 +14,8 @@ LICENSE=	GPLv2
 USES=		uidfix
 WRKSRC=		${WRKDIR}/${PORTNAME}
 
+CFLAGS+=	-DL2CAP_SOCKET_CHECKED=yes
+
 PLIST_FILES=	bin/hcidump man/man1/hcidump.1.gz
 
 .include <bsd.port.mk>



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