svn commit: r389989 - head/comms/hcidump

Dmitry Marakasov amdmi3 at FreeBSD.org
Wed Jun 17 18:58:11 UTC 2015


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>


More information about the svn-ports-all mailing list