svn commit: r228712 - in head/sbin: hastctl hastd

Dimitry Andric dim at FreeBSD.org
Mon Dec 19 15:46:16 UTC 2011


Author: dim
Date: Mon Dec 19 15:46:15 2011
New Revision: 228712
URL: http://svn.freebsd.org/changeset/base/228712

Log:
  Use NO_WCAST_ALIGN for usr.bin/hastctl and usr.bin/hastd; the alignment
  warnings in sbin/hastd/lzf.c are only emitted for i386 and amd64, and
  there they can be safely ignored.
  
  MFC after:	1 week

Modified:
  head/sbin/hastctl/Makefile
  head/sbin/hastd/Makefile

Modified: head/sbin/hastctl/Makefile
==============================================================================
--- head/sbin/hastctl/Makefile	Mon Dec 19 15:35:05 2011	(r228711)
+++ head/sbin/hastctl/Makefile	Mon Dec 19 15:46:15 2011	(r228712)
@@ -20,6 +20,7 @@ SRCS+=	y.tab.h
 MAN=	hastctl.8
 
 NO_WFORMAT=
+NO_WCAST_ALIGN=
 CFLAGS+=-I${.CURDIR}/../hastd
 CFLAGS+=-DHAVE_CAPSICUM
 CFLAGS+=-DINET

Modified: head/sbin/hastd/Makefile
==============================================================================
--- head/sbin/hastd/Makefile	Mon Dec 19 15:35:05 2011	(r228711)
+++ head/sbin/hastd/Makefile	Mon Dec 19 15:46:15 2011	(r228712)
@@ -20,6 +20,7 @@ SRCS+=	y.tab.h
 MAN=	hastd.8 hast.conf.5
 
 NO_WFORMAT=
+NO_WCAST_ALIGN=
 CFLAGS+=-I${.CURDIR}
 CFLAGS+=-DHAVE_CAPSICUM
 CFLAGS+=-DPROTO_TCP_DEFAULT_PORT=8457


More information about the svn-src-all mailing list