aboutsummaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2001-07-27 16:23:53 +0000
committerPeter Wemm <peter@FreeBSD.org>2001-07-27 16:23:53 +0000
commit791da841a1a1f427ba0d5a554a9e0e3b4e10593d (patch)
tree7357ced7c0cd182afdb1b15dae5c3ad3f9b46392 /share
parentd13600a5af0db6476b48bcbbb045648e2e0490b2 (diff)
Notes
Diffstat (limited to 'share')
-rw-r--r--share/examples/etc/make.conf5
1 files changed, 3 insertions, 2 deletions
diff --git a/share/examples/etc/make.conf b/share/examples/etc/make.conf
index 3a0f1b4e7ef6..1fd2ffa147f4 100644
--- a/share/examples/etc/make.conf
+++ b/share/examples/etc/make.conf
@@ -50,10 +50,11 @@
#
# BDECFLAGS are a set of gcc warning settings that Bruce Evans has suggested
# for use in developing FreeBSD and testing changes. They can be used by
-# putting "CFLAGS+=${BDECFLAGS}" in /etc/make.conf.
+# putting "CFLAGS+=${BDECFLAGS}" in /etc/make.conf. -Wconversion is not
+# included here due to compiler bugs, eg: mkdir()'s mode_t argument.
#
BDECFLAGS= -W -Wall -ansi -pedantic -Wbad-function-cast -Wcast-align \
- -Wcast-qual -Wchar-subscripts -Wconversion -Winline \
+ -Wcast-qual -Wchar-subscripts -Winline \
-Wmissing-prototypes -Wnested-externs -Wpointer-arith \
-Wredundant-decls -Wshadow -Wstrict-prototypes -Wwrite-strings
#