2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 05:28:00 +00:00

use EXT_CFLAGS to pass -Wno-builtin to gcc, allowing missing prototypes for

functions that have builtins to be properly noticed.
This commit is contained in:
David Lawrence 2000-05-09 01:54:35 +00:00
parent 9752cb7aa6
commit 5daef09d45

View File

@ -249,6 +249,12 @@ comment on the same line as the #include.
================================================================
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("", ".");
}