summaryrefslogtreecommitdiffstats
path: root/src/c-ares/get_ver.awk
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 18:24:20 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 18:24:20 +0000
commit483eb2f56657e8e7f419ab1a4fab8dce9ade8609 (patch)
treee5d88d25d870d5dedacb6bbdbe2a966086a0a5cf /src/c-ares/get_ver.awk
parentInitial commit. (diff)
downloadceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.tar.xz
ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.zip
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/c-ares/get_ver.awk')
-rw-r--r--src/c-ares/get_ver.awk27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/c-ares/get_ver.awk b/src/c-ares/get_ver.awk
new file mode 100644
index 00000000..5e3db6db
--- /dev/null
+++ b/src/c-ares/get_ver.awk
@@ -0,0 +1,27 @@
+# ***************************************************************************
+# * Project: c-ares
+# *
+# ***************************************************************************
+# 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-20100523.zip
+#
+BEGIN {
+ while ((getline < ARGV[1]) > 0) {
+ sub("\r", "") # make MSYS gawk work with CRLF header input.
+ if (match ($0, /^#define ARES_COPYRIGHT "[^"]+"$/))
+ copyright_string = substr($0, 25, length($0)-25)
+ else if (match ($0, /^#define ARES_VERSION_STR "[^"]+"$/))
+ version_string = substr($3, 2, length($3)-2)
+ else if (match ($0, /^#define ARES_VERSION_MAJOR [0-9]+$/))
+ version_major = $3
+ else if (match ($0, /^#define ARES_VERSION_MINOR [0-9]+$/))
+ version_minor = $3
+ else if (match ($0, /^#define ARES_VERSION_PATCH [0-9]+$/))
+ version_patch = $3
+ }
+ print "LIBCARES_VERSION = " version_major "," version_minor "," version_patch
+ print "LIBCARES_VERSION_STR = " version_string
+ print "LIBCARES_COPYRIGHT_STR = " copyright_string
+}
+