From: Bradley Nicholes Date: Thu, 29 Jan 2004 23:40:02 +0000 (+0000) Subject: Rework the version extraction AWK script for NetWare to match the changes made in... X-Git-Tag: pre_ajp_proxy~753 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=118ff2b869897d53ea562c4467f969cec9a081ab;p=apache Rework the version extraction AWK script for NetWare to match the changes made in ap_release.h git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102456 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/build/nw_ver.awk b/build/nw_ver.awk index 868dd1520b..520b3f9441 100644 --- a/build/nw_ver.awk +++ b/build/nw_ver.awk @@ -3,21 +3,21 @@ BEGIN { # fetch Apache version numbers from input file and writes them to STDOUT while ((getline < ARGV[1]) > 0) { - if (match ($0, /^#define AP_SERVER_MAJORVERSION "[^"]+"/)) { - ver_major = substr($3, 2, length($3) - 2); + if (match ($0, /^#define AP_SERVER_MAJORVERSION_NUMBER /)) { + ver_major = $3; } - else if (match ($0, /^#define AP_SERVER_MINORVERSION "[^"]+"/)) { - ver_minor = substr($3, 2, length($3) - 2); + else if (match ($0, /^#define AP_SERVER_MINORVERSION_NUMBER /)) { + ver_minor = $3; } - else if (match ($0, /^#define AP_SERVER_PATCHLEVEL/)) { - ver_str_patch = substr($3, 2, length($3) - 2); - if (match (ver_str_patch, /[0-9][0-9]*/)) { - ver_patch = substr(ver_str_patch, RSTART, RLENGTH); - } + else if (match ($0, /^#define AP_SERVER_PATCHLEVEL_NUMBER/)) { + ver_patch = $3; + } + else if (match ($0, /^#define AP_SERVER_ADD_STRING /)) { + ver_str_release = substr($3, 2, length($3) - 2); } } ver = ver_major "," ver_minor "," ver_patch; - ver_str = ver_major "." ver_minor "." ver_str_patch; + ver_str = ver_major "." ver_minor "." ver_patch ver_str_release; print "VERSION = " ver ""; print "VERSION_STR = " ver_str "";