When running testcurl.pl display definitions from curlbuild.h

This commit is contained in:
Yang Tse 2008-08-09 23:14:40 +00:00
parent b7ac885d38
commit b023f9bd2a
1 changed files with 8 additions and 0 deletions

View File

@ -495,6 +495,14 @@ if ($configurebuild) {
}
}
logit "display include/curl/curlbuild.h";
if(open(F, "include/curl/curlbuild.h")) {
while (<F>) {
print if /^ *#define/;
}
close(F);
}
logit "display lib/config$confsuffix.h";
open(F, "lib/config$confsuffix.h") or die "lib/config$confsuffix.h: $!";
while (<F>) {