svn commit: r229193 - in stable/9/sbin: hastctl hastd

Dimitry Andric dim at FreeBSD.org
Sun Jan 1 19:19:49 UTC 2012


Author: dim
Date: Sun Jan  1 19:19:48 2012
New Revision: 229193
URL: http://svn.freebsd.org/changeset/base/229193

Log:
  MFC r228712:
  
  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.

Modified:
  stable/9/sbin/hastctl/Makefile
  stable/9/sbin/hastd/Makefile
Directory Properties:
  stable/9/sbin/hastctl/   (props changed)
  stable/9/sbin/hastd/   (props changed)

Modified: stable/9/sbin/hastctl/Makefile
==============================================================================
--- stable/9/sbin/hastctl/Makefile	Sun Jan  1 19:15:52 2012	(r229192)
+++ stable/9/sbin/hastctl/Makefile	Sun Jan  1 19:19:48 2012	(r229193)
@@ -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: stable/9/sbin/hastd/Makefile
==============================================================================
--- stable/9/sbin/hastd/Makefile	Sun Jan  1 19:15:52 2012	(r229192)
+++ stable/9/sbin/hastd/Makefile	Sun Jan  1 19:19:48 2012	(r229193)
@@ -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-stable mailing list