Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
5daef09d
Commit
5daef09d
authored
May 09, 2000
by
David Lawrence
Browse files
use EXT_CFLAGS to pass -Wno-builtin to gcc, allowing missing prototypes for
functions that have builtins to be properly noticed.
parent
9752cb7a
Changes
1
Hide whitespace changes
Inline
Side-by-side
util/check-sources.pl
View file @
5daef09d
...
@@ -249,6 +249,12 @@ comment on the same line as the #include.
...
@@ -249,6 +249,12 @@ comment on the same line as the #include.
================================================================
================================================================
EOF
EOF
# XXX gcc-specific
# Disable builtin memcmp/memcpy/strcmp/strcpy/etc. When they are
# available, gcc won't warn about the lack of a prototype in a header
# file.
$ENV
{'
EXT_CFLAGS
'}
=
"
-Wno-builtin
";
do_dir
("",
"
.
");
do_dir
("",
"
.
");
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment