2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

-fno-builtin, not -Wno-builtin, and put it in CFLAGS

This commit is contained in:
David Lawrence
2000-05-10 03:02:29 +00:00
parent 0cdff5948e
commit bb6ead0a9e

View File

@@ -193,7 +193,7 @@ compile($) {
my $output = $debug ? "/dev/tty" : "/dev/null";
open(COMPILE, "make $obj 2>&1 >$output |");
open(COMPILE, "make -e $obj 2>&1 >$output |");
my $stderr_lines = join('', <COMPILE>);
print $stderr_lines if $debug;
close(COMPILE);
@@ -253,7 +253,7 @@ EOF
# 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";
$ENV{'CFLAGS'} = "-fno-builtin";
do_dir("", ".");
}