added some lines to fetch ares version.

This commit is contained in:
Gunter Knauf 2004-07-11 17:59:07 +00:00
parent 2c3e557b5c
commit 5f1490e1bd
1 changed files with 38 additions and 15 deletions

View File

@ -25,6 +25,7 @@
# http://www.gknw.com/development/prgtools/awk.zip
#
BEGIN {
if (match (ARGV[1], /curlver.h/)) {
while ((getline < ARGV[1]) > 0) {
if (match ($0, /^#define LIBCURL_VERSION "[^"]+"/)) {
libcurl_ver_str = substr($3, 2, length($3)-2);
@ -43,3 +44,25 @@ BEGIN {
print "LIBCURL_VERSION = " libcurl_ver "";
print "LIBCURL_VERSION_STR = " libcurl_ver_str "";
}
if (match (ARGV[1], /ares_version.h/)) {
while ((getline < ARGV[1]) > 0) {
if (match ($0, /^#define ARES_VERSION_STR "[^"]+"/)) {
libcares_ver_str = substr($3, 2, length($3)-2);
}
else if (match ($0, /^#define ARES_VERSION_MAJOR [^"]+/)) {
libcares_ver_major = substr($3, 1, length($3));
}
else if (match ($0, /^#define ARES_VERSION_MINOR [^"]+/)) {
libcares_ver_minor = substr($3, 1, length($3));
}
else if (match ($0, /^#define ARES_VERSION_PATCH [^"]+/)) {
libcares_ver_patch = substr($3, 1, length($3));
}
}
libcares_ver = libcares_ver_major "," libcares_ver_minor "," libcares_ver_patch;
print "LIBCARES_VERSION = " libcares_ver "";
print "LIBCARES_VERSION_STR = " libcares_ver_str "";
}
}