]> granicus.if.org Git - apache/commitdiff
Rework the version extraction AWK script for NetWare to match the changes made in...
authorBradley Nicholes <bnicholes@apache.org>
Thu, 29 Jan 2004 23:40:02 +0000 (23:40 +0000)
committerBradley Nicholes <bnicholes@apache.org>
Thu, 29 Jan 2004 23:40:02 +0000 (23:40 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102456 13f79535-47bb-0310-9956-ffa450edef68

build/nw_ver.awk

index 868dd1520b08ffdba4a56deb574b49ae9e5780dd..520b3f94418b45d72d55cc7ebe532f27cf529733 100644 (file)
@@ -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 "";