diff options
author | Matt Macy <mmacy@FreeBSD.org> | 2018-08-21 03:45:09 +0000 |
---|---|---|
committer | Matt Macy <mmacy@FreeBSD.org> | 2018-08-21 03:45:09 +0000 |
commit | d12e91d584d77d621cfe497d0882c40c1fc97836 (patch) | |
tree | a295adbb842c68ea529a3341b911de0a8d0fb3a7 /cddl/usr.sbin | |
parent | 2aae9642a5cac5000b8c76e1f4c5b1dceb4f866b (diff) | |
download | src-d12e91d584d77d621cfe497d0882c40c1fc97836.tar.gz src-d12e91d584d77d621cfe497d0882c40c1fc97836.zip |
Make dnode definition uniform on !x86
gcc4 requires -fms-extensions to accept anonymous union members
Notes
Notes:
svn path=/head/; revision=338128
Diffstat (limited to 'cddl/usr.sbin')
-rw-r--r-- | cddl/usr.sbin/zdb/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cddl/usr.sbin/zdb/Makefile b/cddl/usr.sbin/zdb/Makefile index cccfe15c823b..8c919341f8e3 100644 --- a/cddl/usr.sbin/zdb/Makefile +++ b/cddl/usr.sbin/zdb/Makefile @@ -25,6 +25,7 @@ CFLAGS+= -I${SRCTOP}/cddl/contrib/opensolaris/head LIBADD= nvpair umem uutil zfs zpool +CFLAGS.gcc+= -fms-extensions # Since there are many asserts in this program, it makes no sense to compile # it without debugging. CFLAGS+= -g -DDEBUG=1 |