summaryrefslogtreecommitdiff
path: root/get_ver.awk
diff options
context:
space:
mode:
authorGunter Knauf <gk@gknw.de>2008-02-27 01:51:40 +0000
committerGunter Knauf <gk@gknw.de>2008-02-27 01:51:40 +0000
commitfb6dbb28e0741b936f4a4e044325d5fa2a9c04d5 (patch)
treed2529379ffa87eb20025ef9810d806c22cda4480 /get_ver.awk
parentf1a99137a29b9b0cea340bd73e51ea41c6baa856 (diff)
downloadc-ares-fb6dbb28e0741b936f4a4e044325d5fa2a9c04d5.tar.gz
c-ares-fb6dbb28e0741b936f4a4e044325d5fa2a9c04d5.tar.bz2
c-ares-fb6dbb28e0741b936f4a4e044325d5fa2a9c04d5.zip
added get_ver.awk since c-ares is a standalone project, and should therefore also compile when cURL is absent.
Diffstat (limited to 'get_ver.awk')
-rw-r--r--get_ver.awk36
1 files changed, 36 insertions, 0 deletions
diff --git a/get_ver.awk b/get_ver.awk
new file mode 100644
index 0000000..322f280
--- /dev/null
+++ b/get_ver.awk
@@ -0,0 +1,36 @@
+# ***************************************************************************
+# * Project: c-ares
+# *
+# * $Id$
+# ***************************************************************************
+# awk script which fetches c-ares version number and string from input
+# file and writes them to STDOUT. Here you can get an awk version for Win32:
+# http://www.gknw.net/development/prgtools/awk-20070501.zip
+#
+BEGIN {
+ if (match (ARGV[1], /ares_version.h/)) {
+ while ((getline < ARGV[1]) > 0) {
+ if (match ($0, /^#define ARES_COPYRIGHT "[^"]+"$/)) {
+ libcares_copyright_str = substr($0, 25, length($0)-25);
+ }
+ else if (match ($0, /^#define ARES_VERSION_STR "[^"]+"$/)) {
+ libcares_ver_str = substr($3, 2, length($3)-2);
+ }
+ else if (match ($0, /^#define ARES_VERSION_MAJOR [0-9]+$/)) {
+ libcares_ver_major = substr($3, 1, length($3));
+ }
+ else if (match ($0, /^#define ARES_VERSION_MINOR [0-9]+$/)) {
+ libcares_ver_minor = substr($3, 1, length($3));
+ }
+ else if (match ($0, /^#define ARES_VERSION_PATCH [0-9]+$/)) {
+ 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 "";
+ print "LIBCARES_COPYRIGHT_STR = " libcares_copyright_str "";
+ }
+}
+
+