diff options
author | dim <dim@FreeBSD.org> | 2013-12-30 20:34:53 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2013-12-30 20:34:53 +0000 |
commit | 076aa80e8fe1eabade669c7154184730631a9b41 (patch) | |
tree | 7a016fe5f61c11d9f2c394240883db0585716120 /sys/modules/mthca | |
parent | a54ccfd7d63be0285f5e4adcb2f0d0ee943fd02f (diff) | |
download | FreeBSD-src-076aa80e8fe1eabade669c7154184730631a9b41.zip FreeBSD-src-076aa80e8fe1eabade669c7154184730631a9b41.tar.gz |
Similar to r260020, only use -fms-extensions with gcc, for all other
modules which require this flag to compile. Use a GCC_MS_EXTENSIONS
variable, defined in kern.pre.mk, which can be used to easily supply the
flag (or not), depending on the compiler type.
MFC after: 3 days
Diffstat (limited to 'sys/modules/mthca')
-rw-r--r-- | sys/modules/mthca/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/mthca/Makefile b/sys/modules/mthca/Makefile index 9b56499..a306289 100644 --- a/sys/modules/mthca/Makefile +++ b/sys/modules/mthca/Makefile @@ -28,4 +28,4 @@ opt_inet6.h: .include <bsd.kmod.mk> -CFLAGS+= -Wno-cast-qual -Wno-pointer-arith -fms-extensions +CFLAGS+= -Wno-cast-qual -Wno-pointer-arith ${GCC_MS_EXTENSIONS} |