svn commit: r321037 - head/net-mgmt/pads

William Grzybowski wg at FreeBSD.org
Sun Jun 16 11:29:28 UTC 2013


Author: wg
Date: Sun Jun 16 11:29:27 2013
New Revision: 321037
URL: http://svnweb.freebsd.org/changeset/ports/321037

Log:
  net-mgmt/pads: fix build with clang
  
  - Fix build wuth clang, -Wno-return-type, gnu89 C std
  
  Approved by:	culot / jpaetzel (mentors, implicit)

Modified:
  head/net-mgmt/pads/Makefile

Modified: head/net-mgmt/pads/Makefile
==============================================================================
--- head/net-mgmt/pads/Makefile	Sun Jun 16 11:27:34 2013	(r321036)
+++ head/net-mgmt/pads/Makefile	Sun Jun 16 11:29:27 2013	(r321037)
@@ -10,6 +10,9 @@ MASTER_SITES=	SF/passive/${PORTNAME}/${P
 MAINTAINER=	ports at FreeBSD.org
 COMMENT=	Passively detect network assets
 
+CFLAGS+=	-Wno-return-type
+USE_CSTD=	gnu89
+
 LIB_DEPENDS=	pcre:${PORTSDIR}/devel/pcre
 
 GNU_CONFIGURE=	yes


More information about the svn-ports-head mailing list