]> granicus.if.org Git - apache/commitdiff
some more NetWare build tweaks.
authorGuenter Knauf <fuankg@apache.org>
Mon, 6 Jul 2009 21:58:08 +0000 (21:58 +0000)
committerGuenter Knauf <fuankg@apache.org>
Mon, 6 Jul 2009 21:58:08 +0000 (21:58 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@791625 13f79535-47bb-0310-9956-ffa450edef68

build/NWGNUtail.inc
build/nw_ver.awk

index 6dd89ba05172ff08bc344f9c91eeeaac69c55705..8f8943f8416dc11efdbb28d9fc31d8181d587fee 100644 (file)
@@ -87,16 +87,16 @@ $(AP_WORK)/build/NWGNUversion.inc : $(AP_WORK)/build/nw_ver.awk $(AP_WORK)/inclu
        @echo Generating $(subst /,\,$@)
        $(AWK) -f $^ > $@
 
--include $(AP_WORK)\build\NWGNUversion.inc
+-include $(AP_WORK)/build/NWGNUversion.inc
 
 ifneq "$(strip $(VERSION_STR))" ""
-VERSION_INC = $(AP_WORK)\build\NWGNUversion.inc
+VERSION_INC = $(AP_WORK)/build/NWGNUversion.inc
 else
 VERSION                = 2,3,0
 VERSION_STR    = 2.3.0
-endif
 VERSION_MAJMIN = 23
 endif
+endif
 
 
 ifeq "$(words $(strip $(TARGET_nlm)))" "1"
index 00e0276c8f1bc5d84973aa1266fe234a25c05331..385cd658cd64526cc51d45bdb9680e893524d95c 100644 (file)
@@ -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 "";
 
 }