bottleneck testcase based on rubbos
[bottlenecks.git] / rubbos / app / httpd-2.0.64 / include / ap_release.h
1 /* Licensed to the Apache Software Foundation (ASF) under one or more
2  * contributor license agreements.  See the NOTICE file distributed with
3  * this work for additional information regarding copyright ownership.
4  * The ASF licenses this file to You under the Apache License, Version 2.0
5  * (the "License"); you may not use this file except in compliance with
6  * the License.  You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef AP_RELEASE_H
18 #define AP_RELEASE_H
19
20 #include "apr_general.h" /* stringify */
21
22 #define AP_SERVER_COPYRIGHT \
23     "Copyright 2009 The Apache Software Foundation."
24
25 /*
26  * The below defines the base string of the Server: header. Additional
27  * tokens can be added via the ap_add_version_component() API call.
28  *
29  * The tokens are listed in order of their significance for identifying the
30  * application.
31  *
32  * "Product tokens should be short and to the point -- use of them for 
33  * advertizing or other non-essential information is explicitly forbidden."
34  *
35  * Example: "Apache/1.1.0 MrWidget/0.1-alpha" 
36  */
37 #define AP_SERVER_BASEVENDOR "Apache Software Foundation"
38 #define AP_SERVER_BASEPRODUCT "Apache"
39
40 #define AP_SERVER_MAJORVERSION_NUMBER 2
41 #define AP_SERVER_MINORVERSION_NUMBER 0
42 #define AP_SERVER_PATCHLEVEL_NUMBER   64
43 #define AP_SERVER_ADD_STRING          ""
44
45 /* keep old macros as well */
46 #define AP_SERVER_MAJORVERSION APR_STRINGIFY(AP_SERVER_MAJORVERSION_NUMBER)
47 #define AP_SERVER_MINORVERSION APR_STRINGIFY(AP_SERVER_MINORVERSION_NUMBER)
48 #define AP_SERVER_PATCHLEVEL APR_STRINGIFY(AP_SERVER_PATCHLEVEL_NUMBER) \
49                               AP_SERVER_ADD_STRING
50
51 #define AP_SERVER_MINORREVISION AP_SERVER_MAJORVERSION "." AP_SERVER_MINORVERSION
52 #define AP_SERVER_BASEREVISION  AP_SERVER_MINORREVISION "." AP_SERVER_PATCHLEVEL
53 #define AP_SERVER_BASEVERSION AP_SERVER_BASEPRODUCT "/" AP_SERVER_BASEREVISION
54 #define AP_SERVER_VERSION  AP_SERVER_BASEVERSION
55
56 #endif