From 3f739acf24004f736fd3accf3c5e47de38147d74 Mon Sep 17 00:00:00 2001 From: Gunter Knauf Date: Tue, 8 Jun 2004 14:52:32 +0000 Subject: converted to UNIX format. --- packages/NetWare/get_ver.awk | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) (limited to 'packages/NetWare/get_ver.awk') diff --git a/packages/NetWare/get_ver.awk b/packages/NetWare/get_ver.awk index 60cf96439..ca434f358 100644 --- a/packages/NetWare/get_ver.awk +++ b/packages/NetWare/get_ver.awk @@ -1,20 +1,20 @@ -# fetch libcurl version number from input file and write them to STDOUT -BEGIN { - while ((getline < ARGV[1]) > 0) { - 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; - libcurl_ver_str = libcurl_ver_major "." libcurl_ver_minor "." libcurl_ver_patch; - - print "LIBCURL_VERSION = " libcurl_ver ""; - print "LIBCURL_VERSION_STR = " libcurl_ver_str ""; - -} +# fetch libcurl version number from input file and write them to STDOUT +BEGIN { + while ((getline < ARGV[1]) > 0) { + 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; + libcurl_ver_str = libcurl_ver_major "." libcurl_ver_minor "." libcurl_ver_patch; + + print "LIBCURL_VERSION = " libcurl_ver ""; + print "LIBCURL_VERSION_STR = " libcurl_ver_str ""; + +} -- cgit v1.2.3