mirror of
https://github.com/curl/curl.git
synced 2026-04-26 09:52:11 +03:00
When running testcurl.pl display definitions from curlbuild.h
This commit is contained in:
parent
b7ac885d38
commit
b023f9bd2a
1 changed files with 8 additions and 0 deletions
|
|
@ -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>) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue