You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by fu...@apache.org on 2009/07/06 23:58:08 UTC

svn commit: r791625 - in /httpd/httpd/trunk/build: NWGNUtail.inc nw_ver.awk

Author: fuankg
Date: Mon Jul  6 21:58:08 2009
New Revision: 791625

URL: http://svn.apache.org/viewvc?rev=791625&view=rev
Log:
some more NetWare build tweaks.

Modified:
    httpd/httpd/trunk/build/NWGNUtail.inc
    httpd/httpd/trunk/build/nw_ver.awk

Modified: httpd/httpd/trunk/build/NWGNUtail.inc
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/build/NWGNUtail.inc?rev=791625&r1=791624&r2=791625&view=diff
==============================================================================
--- httpd/httpd/trunk/build/NWGNUtail.inc (original)
+++ httpd/httpd/trunk/build/NWGNUtail.inc Mon Jul  6 21:58:08 2009
@@ -87,16 +87,16 @@
 	@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"

Modified: httpd/httpd/trunk/build/nw_ver.awk
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/build/nw_ver.awk?rev=791625&r1=791624&r2=791625&view=diff
==============================================================================
--- httpd/httpd/trunk/build/nw_ver.awk (original)
+++ httpd/httpd/trunk/build/nw_ver.awk Mon Jul  6 21:58:08 2009
@@ -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 @@
 
   print "VERSION = " ver_nlm "";
   print "VERSION_STR = " ver_str "";
+  print "VERSION_MAJMIN = " ver_major ver_minor "";
   print "COPYRIGHT_STR = " copyright_str "";
 
 }