FreeBSD: turn off some warnings
authorJon Trulson <jon@radscan.com>
Fri, 15 Jun 2018 01:05:40 +0000 (01:05 +0000)
committerJon Trulson <jon@radscan.com>
Fri, 15 Jun 2018 01:08:49 +0000 (19:08 -0600)
Someday these can be addressed, but for now they are just noise.

cde/config/cf/FreeBSD.cf

index 1b56256b48e0fd957126bd32a2eba081876b7dbe..e327e3fa7fd4e1ad5c62281c0f4e354255b84afd 100644 (file)
@@ -182,7 +182,8 @@ USE_GCC = UseGcc
 /* The GCC strength-reduce bug is fixed for FreeBSD 2.1.5 and later */
 #ifndef DefaultGcc2i386Opt
 #if OSMajorVersion > 2 || (OSMajorVersion == 2 && OSMinorVersion > 1) || (OSMajorVersion == 2 && OSMinorVersion == 1 && OSTeenyVersion >= 5)
-#define DefaultGcc2i386Opt -O2 -fno-strict-aliasing
+#define DefaultGcc2i386Opt -O2 -fno-strict-aliasing -Wno-write-strings \
+        -Wno-unused-result -Wno-deprecated-register
 #endif
 #endif