1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00
freebsd-ports/net/widentd/Makefile
John Marino 524649b6ea net/widentd: disable -Werror
On gcc, this warning is given:

widentd.c: In function 'main':
widentd.c:194:3: error: 'memset' used with constant zero length parameter;
  this could be due to transposed parameters
  [-Werror=memset-transposed-args]
   memset(buff, sizeof(buff), 0);
   ^

Removing -Werror is blanket-approved.  This is another port that uses
<bsd.prog.mk> instead of providing an independent makefile, so the
-Werror is coming from the system build framework.
2015-04-01 21:19:33 +00:00

24 lines
570 B
Makefile

# Created by: Dirk-Willem van Gulik / dirkx@webweaving.org
# $FreeBSD$
PORTNAME= widentd
PORTVERSION= 1.04
CATEGORIES= net ipv6
MASTER_SITES= http://BSDforge.com/projects/source/net/widentd/
MAINTAINER= portmaster@BSDforge.com
COMMENT= RFC1413 auth/identd daemon providing a fixed fake reply
LICENSE= BSD3CLAUSE
USES= uidfix tar:xz
MAKE_ENV+= BINDIR="${PREFIX}/sbin" MANDIR="${PREFIX}/man/man"
MAKE_ENV+= NO_WERROR="defined"
PLIST_FILES= sbin/widentd man/man8/widentd.8.gz
USE_RC_SUBR= widentd
BROKEN_powerpc= Does not compile on powerpc
.include <bsd.port.mk>