summaryrefslogtreecommitdiffstats
path: root/build/nw_ver.awk
diff options
context:
space:
mode:
authorGuenter Knauf <fuankg@apache.org>2009-07-06 23:58:08 +0200
committerGuenter Knauf <fuankg@apache.org>2009-07-06 23:58:08 +0200
commitc195bdb8caaa866f6b991abef341a26678d0dc5b (patch)
tree553e68a3989f6adfea63d29b7261fe68400db601 /build/nw_ver.awk
parentadded compile-time apr / apr-util versions as wrowe suggested. (diff)
downloadapache2-c195bdb8caaa866f6b991abef341a26678d0dc5b.tar.xz
apache2-c195bdb8caaa866f6b991abef341a26678d0dc5b.zip
some more NetWare build tweaks.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@791625 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--build/nw_ver.awk4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/nw_ver.awk b/build/nw_ver.awk
index 00e0276c8f..385cd658cd 100644
--- a/build/nw_ver.awk
+++ b/build/nw_ver.awk
@@ -14,8 +14,7 @@
# limitations under the License.
BEGIN {
-
- # fetch Apache version numbers from input file and writes them to STDOUT
+ # fetch Apache version numbers from input file and write them to STDOUT
while ((getline < ARGV[1]) > 0) {
if (match ($0, /^#define AP_SERVER_COPYRIGHT \\/)) {
@@ -41,6 +40,7 @@ BEGIN {
print "VERSION = " ver_nlm "";
print "VERSION_STR = " ver_str "";
+ print "VERSION_MAJMIN = " ver_major ver_minor "";
print "COPYRIGHT_STR = " copyright_str "";
}