aboutsummaryrefslogtreecommitdiff
path: root/packages/NetWare/get_ver.awk
diff options
context:
space:
mode:
authorGunter Knauf <gk@gknw.de>2004-07-11 17:59:07 +0000
committerGunter Knauf <gk@gknw.de>2004-07-11 17:59:07 +0000
commit5f1490e1bd248d8e61a306969576a9f4da4b8691 (patch)
treebaed7774792b7453a8175ff04e3b71bd4b24af47 /packages/NetWare/get_ver.awk
parent2c3e557b5ccc745cec20be687c300077b1e04338 (diff)
added some lines to fetch ares version.
Diffstat (limited to 'packages/NetWare/get_ver.awk')
-rw-r--r--packages/NetWare/get_ver.awk51
1 files changed, 37 insertions, 14 deletions
diff --git a/packages/NetWare/get_ver.awk b/packages/NetWare/get_ver.awk
index 3ae223664..ff3b468a5 100644
--- a/packages/NetWare/get_ver.awk
+++ b/packages/NetWare/get_ver.awk
@@ -25,21 +25,44 @@
# http://www.gknw.com/development/prgtools/awk.zip
#
BEGIN {
- while ((getline < ARGV[1]) > 0) {
- if (match ($0, /^#define LIBCURL_VERSION "[^"]+"/)) {
- libcurl_ver_str = substr($3, 2, length($3)-2);
+ 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);
+ }
+ else if (match ($0, /^#define LIBCURL_VERSION_MAJOR [^"]+/)) {
+ libcurl_ver_major = substr($3, 1, length($3));
+ }
+ else if (match ($0, /^#define LIBCURL_VERSION_MINOR [^"]+/)) {
+ libcurl_ver_minor = substr($3, 1, length($3));
+ }
+ else if (match ($0, /^#define LIBCURL_VERSION_PATCH [^"]+/)) {
+ libcurl_ver_patch = substr($3, 1, length($3));
+ }
}
- else if (match ($0, /^#define LIBCURL_VERSION_MAJOR [^"]+/)) {
- libcurl_ver_major = substr($3, 1, length($3));
- }
- else if (match ($0, /^#define LIBCURL_VERSION_MINOR [^"]+/)) {
- libcurl_ver_minor = substr($3, 1, length($3));
- }
- else if (match ($0, /^#define LIBCURL_VERSION_PATCH [^"]+/)) {
- libcurl_ver_patch = substr($3, 1, length($3));
+ libcurl_ver = libcurl_ver_major "," libcurl_ver_minor "," libcurl_ver_patch;
+ 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 "";
}
- libcurl_ver = libcurl_ver_major "," libcurl_ver_minor "," libcurl_ver_patch;
- print "LIBCURL_VERSION = " libcurl_ver "";
- print "LIBCURL_VERSION_STR = " libcurl_ver_str "";
}
+
+