Commit 5f1490e1 authored by Guenter Knauf's avatar Guenter Knauf
Browse files

added some lines to fetch ares version.

parent 2c3e557b
Loading
Loading
Loading
Loading
+37 −14
Original line number Diff line number Diff line
@@ -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 "";
  }
}