Skip to content
Snippets Groups Projects
Commit b023f9bd authored by Yang Tse's avatar Yang Tse
Browse files

When running testcurl.pl display definitions from curlbuild.h

parent b7ac885d
No related branches found
No related tags found
No related merge requests found
......@@ -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>) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment