00001 /* Copyright 2001-2005 The Apache Software Foundation or its licensors, as 00002 * applicable. 00003 * 00004 * Licensed under the Apache License, Version 2.0 (the "License"); 00005 * you may not use this file except in compliance with the License. 00006 * You may obtain a copy of the License at 00007 * 00008 * http://www.apache.org/licenses/LICENSE-2.0 00009 * 00010 * Unless required by applicable law or agreed to in writing, software 00011 * distributed under the License is distributed on an "AS IS" BASIS, 00012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00013 * See the License for the specific language governing permissions and 00014 * limitations under the License. 00015 */ 00016 00017 #ifndef AP_RELEASE_H 00018 #define AP_RELEASE_H 00019 00020 /* 00021 * The below defines the base string of the Server: header. Additional 00022 * tokens can be added via the ap_add_version_component() API call. 00023 * 00024 * The tokens are listed in order of their significance for identifying the 00025 * application. 00026 * 00027 * "Product tokens should be short and to the point -- use of them for 00028 * advertizing or other non-essential information is explicitly forbidden." 00029 * 00030 * Example: "Apache/1.1.0 MrWidget/0.1-alpha" 00031 */ 00032 #define AP_SERVER_BASEVENDOR "Apache Software Foundation" 00033 #define AP_SERVER_BASEPRODUCT "Apache" 00034 #define AP_SERVER_MAJORVERSION "2" 00035 #define AP_SERVER_MINORVERSION "0" 00036 #define AP_SERVER_PATCHLEVEL "54" 00037 #define AP_SERVER_MINORREVISION AP_SERVER_MAJORVERSION "." AP_SERVER_MINORVERSION 00038 #define AP_SERVER_BASEREVISION AP_SERVER_MINORREVISION "." AP_SERVER_PATCHLEVEL 00039 #define AP_SERVER_BASEVERSION AP_SERVER_BASEPRODUCT "/" AP_SERVER_BASEREVISION 00040 #define AP_SERVER_VERSION AP_SERVER_BASEVERSION 00041 00042 #endif