home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Complet / Apache / apache_2.0.52-win32-x86-no_ssl.msi / Data.Cab / F166445_ap_release.h < prev    next >
C/C++ Source or Header  |  2004-09-23  |  2KB  |  42 lines

  1. /* Copyright 2001-2004 The Apache Software Foundation
  2.  *
  3.  * Licensed under the Apache License, Version 2.0 (the "License");
  4.  * you may not use this file except in compliance with the License.
  5.  * You may obtain a copy of the License at
  6.  *
  7.  *     http://www.apache.org/licenses/LICENSE-2.0
  8.  *
  9.  * Unless required by applicable law or agreed to in writing, software
  10.  * distributed under the License is distributed on an "AS IS" BASIS,
  11.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12.  * See the License for the specific language governing permissions and
  13.  * limitations under the License.
  14.  */
  15.  
  16. #ifndef AP_RELEASE_H
  17. #define AP_RELEASE_H
  18.  
  19. /*
  20.  * The below defines the base string of the Server: header. Additional
  21.  * tokens can be added via the ap_add_version_component() API call.
  22.  *
  23.  * The tokens are listed in order of their significance for identifying the
  24.  * application.
  25.  *
  26.  * "Product tokens should be short and to the point -- use of them for 
  27.  * advertizing or other non-essential information is explicitly forbidden."
  28.  *
  29.  * Example: "Apache/1.1.0 MrWidget/0.1-alpha" 
  30.  */
  31. #define AP_SERVER_BASEVENDOR "Apache Software Foundation"
  32. #define AP_SERVER_BASEPRODUCT "Apache"
  33. #define AP_SERVER_MAJORVERSION "2"
  34. #define AP_SERVER_MINORVERSION "0"
  35. #define AP_SERVER_PATCHLEVEL "52"
  36. #define AP_SERVER_MINORREVISION AP_SERVER_MAJORVERSION "." AP_SERVER_MINORVERSION
  37. #define AP_SERVER_BASEREVISION  AP_SERVER_MINORREVISION "." AP_SERVER_PATCHLEVEL
  38. #define AP_SERVER_BASEVERSION AP_SERVER_BASEPRODUCT "/" AP_SERVER_BASEREVISION
  39. #define AP_SERVER_VERSION  AP_SERVER_BASEVERSION
  40.  
  41. #endif
  42.