1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

no need to display src/config.h anymore since it is a duplicate of lib/config.h

but we could use having a look at ares/config.h when that is used
This commit is contained in:
Daniel Stenberg 2005-05-09 07:45:30 +00:00
parent 708ed6fded
commit b2b66f749a

View File

@ -435,16 +435,16 @@ while (<F>) {
} }
close(F); close(F);
logit "display src/config$confsuffix.h";
open(F, "src/config$confsuffix.h") or die "src/config$confsuffix.h: $!";
while (<F>) {
print if /^ *#/;
}
close(F);
if (grepfile("define USE_ARES", "lib/config$confsuffix.h")) { if (grepfile("define USE_ARES", "lib/config$confsuffix.h")) {
logit "setup to build ares"; logit "setup to build ares";
logit "display ares/config$confsuffix.h";
open(F, "ares/config$confsuffix.h") or die "ares/config$confsuffix.h: $!";
while (<F>) {
print if /^ *#/;
}
close(F);
logit "build ares"; logit "build ares";
chdir "ares"; chdir "ares";