You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2001/08/16 08:09:32 UTC

cvs commit: httpd-2.0/build/win32 win32ver.awk

wrowe       01/08/15 23:09:32

  Modified:    build/win32 win32ver.awk
  Log:
    Picky versioning.  Must have 1) a real language/charset in the versioning,
    and 2) fixes the Copyright (which effectively runs on too far) by placing
    the 'see other' stuff in the Comments.
  
  Revision  Changes    Path
  1.2       +9 -11     httpd-2.0/build/win32/win32ver.awk
  
  Index: win32ver.awk
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/build/win32/win32ver.awk,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- win32ver.awk	2001/08/16 05:27:50	1.1
  +++ win32ver.awk	2001/08/16 06:09:32	1.2
  @@ -76,19 +76,17 @@
     print "BEGIN";
     print "  BLOCK \"StringFileInfo\"";
     print "  BEGIN";
  -  print "    BLOCK \"00000000\"";
  +  print "    BLOCK \"040904b0\"";
     print "    BEGIN";
  -  print "      VALUE \"Comments\", \"This software consists of " \
  -        "voluntary contributions made by many individuals on behalf of " \
  -        "the Apache Software Foundation.  For more information on the " \
  -        "Apache Software Foundation, please see <http://www.apache.org/>\\0\"";
  -  print "      VALUE \"CompanyName\", \"Apache Software Foundation.\\0\"";
  +  print "      VALUE \"Comments\", \"All rights reserved.  The "\
  +        "license is available at <http://www.apache.org/LICENSE.txt>.  "\
  +        "The new-httpd page is at <http://httpd.apache.org/>.\\0\"";
  +  print "      VALUE \"CompanyName\", \"Apache Software Foundation\\0\"";
     print "      VALUE \"FileDescription\", \"" desc "\\0\"";
     print "      VALUE \"FileVersion\", \"" ver "\\0\"";
     print "      VALUE \"InternalName\", \"" file "\\0\"";
  -  print "      VALUE \"LegalCopyright\", \"Copyright (c) 2001, " \
  -        "The Apache Software Foundation.  Current License is available from " \
  -        "<http://www.apache.org/LICENSE.txt>\\0\"";
  +  print "      VALUE \"LegalCopyright\", \"Copyright � 2001 "\
  +        "The Apache Software Foundation.\\0\"";
     print "      VALUE \"OriginalFilename\", \"" file ".exe\\0\"";
     if (vendor) {
       print "      VALUE \"PrivateBuild\", \"" vendor "\\0\"";
  @@ -96,13 +94,13 @@
     if (special) {
       print "      VALUE \"SpecialBuild\", \"" vendor "\\0\"";
     }
  -  print "      VALUE \"ProductName\", \"Apache httpd Server\\0\"";
  +  print "      VALUE \"ProductName\", \"Apache http Server\\0\"";
     print "      VALUE \"ProductVersion\", \"" ver "\\0\"";
     print "    END";
     print "  END";
     print "  BLOCK \"VarFileInfo\"";
     print "  BEGIN";
  -  print "    VALUE \"Translation\", 0, 1200";
  +  print "    VALUE \"Translation\", 0x409, 1200";
     print "  END";
     print "END";
   }