diff options
author | dim <dim@FreeBSD.org> | 2014-01-05 15:39:37 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2014-01-05 15:39:37 +0000 |
commit | dafd81e458aa56a9841e3c51b18340409c362b0b (patch) | |
tree | e080861742d5a2a513e113253e09a9e5f54ee3c6 /sys/modules/ibcore | |
parent | e3ce8ac51cdbc777c2e1d9b988232c3dd95251a1 (diff) | |
download | FreeBSD-src-dafd81e458aa56a9841e3c51b18340409c362b0b.zip FreeBSD-src-dafd81e458aa56a9841e3c51b18340409c362b0b.tar.gz |
Revert MFC of r260102 for now, until I can merge the required fix from
head. This should fix building modules which require -fms-extensions to
compile them with gcc.
Diffstat (limited to 'sys/modules/ibcore')
-rw-r--r-- | sys/modules/ibcore/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/ibcore/Makefile b/sys/modules/ibcore/Makefile index d7973c8..154a89a 100644 --- a/sys/modules/ibcore/Makefile +++ b/sys/modules/ibcore/Makefile @@ -20,7 +20,7 @@ CFLAGS+= -DINET6 -DINET -DOFED .include <bsd.kmod.mk> -CFLAGS+= -Wno-cast-qual -Wno-pointer-arith ${GCC_MS_EXTENSIONS} +CFLAGS+= -Wno-cast-qual -Wno-pointer-arith -fms-extensions CWARNFLAGS.cm.c= -Wno-unused-function CWARNFLAGS+= ${CWARNFLAGS.${.IMPSRC:T}} |