Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 19 Dec 2011 15:46:16 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r228712 - in head/sbin: hastctl hastd
Message-ID:  <201112191546.pBJFkGHZ064018@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201112191546.pBJFkGHZ064018>