2
0

get_ver.awk 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. # ***************************************************************************
  2. # * Project: c-ares
  3. # *
  4. # * $Id$
  5. # ***************************************************************************
  6. # awk script which fetches c-ares version number and string from input
  7. # file and writes them to STDOUT. Here you can get an awk version for Win32:
  8. # http://www.gknw.net/development/prgtools/awk-20070501.zip
  9. #
  10. BEGIN {
  11. if (match (ARGV[1], /ares_version.h/)) {
  12. while ((getline < ARGV[1]) > 0) {
  13. if (match ($0, /^#define ARES_COPYRIGHT "[^"]+"$/)) {
  14. libcares_copyright_str = substr($0, 25, length($0)-25);
  15. }
  16. else if (match ($0, /^#define ARES_VERSION_STR "[^"]+"$/)) {
  17. libcares_ver_str = substr($3, 2, length($3)-2);
  18. }
  19. else if (match ($0, /^#define ARES_VERSION_MAJOR [0-9]+$/)) {
  20. libcares_ver_major = substr($3, 1, length($3));
  21. }
  22. else if (match ($0, /^#define ARES_VERSION_MINOR [0-9]+$/)) {
  23. libcares_ver_minor = substr($3, 1, length($3));
  24. }
  25. else if (match ($0, /^#define ARES_VERSION_PATCH [0-9]+$/)) {
  26. libcares_ver_patch = substr($3, 1, length($3));
  27. }
  28. }
  29. libcares_ver = libcares_ver_major "," libcares_ver_minor "," libcares_ver_patch;
  30. print "LIBCARES_VERSION = " libcares_ver "";
  31. print "LIBCARES_VERSION_STR = " libcares_ver_str "";
  32. print "LIBCARES_COPYRIGHT_STR = " libcares_copyright_str "";
  33. }
  34. }