diff options
author | joerg <joerg@pkgsrc.org> | 2017-06-22 16:09:53 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2017-06-22 16:09:53 +0000 |
commit | 1e257da23cd44ee9396c1496f78874b29a3ebe3a (patch) | |
tree | d759ecc080684733f1f6b479b0e17994711ed26e | |
parent | 60ac1c52e52aaa62241434c90a680109c5b4ffcc (diff) | |
download | pkgsrc-1e257da23cd44ee9396c1496f78874b29a3ebe3a.tar.gz |
Don't care about potentially unaligned access to packed structures.
-rw-r--r-- | sysutils/xentools48/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sysutils/xentools48/Makefile b/sysutils/xentools48/Makefile index 97e9c9c4de7..47a23848775 100644 --- a/sysutils/xentools48/Makefile +++ b/sysutils/xentools48/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2017/04/13 13:08:34 bouyer Exp $ +# $NetBSD: Makefile,v 1.3 2017/06/22 16:09:53 joerg Exp $ # VERSION= 4.8.0 VERSION_IPXE= 827dd1bfee67daa683935ce65316f7e0f057fe1c @@ -281,7 +281,8 @@ EXTRA_CFLAGS+= -Wno-error=ignored-attributes -no-integrated-as \ -Wno-error=unused-const-variable \ -Wno-error=gnu-designator -Wno-error=uninitialized \ -Wno-error=parentheses-equality \ - -Wno-error=enum-conversion + -Wno-error=enum-conversion \ + -Wno-error=address-of-packed-member BUILDLINK_TRANSFORM+= rm:-falign-jumps=1 rm:-falign-loops=1 \ rm:-mpreferred-stack-boundary=2 .endif |