/usr/src/redhat/BUILD/httpd-2.2.3/include/ap_release.h

説明を見る。
00001 /* Licensed to the Apache Software Foundation (ASF) under one or more
00002  * contributor license agreements.  See the NOTICE file distributed with
00003  * this work for additional information regarding copyright ownership.
00004  * The ASF licenses this file to You under the Apache License, Version 2.0
00005  * (the "License"); you may not use this file except in compliance with
00006  * the License.  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 
00022 #ifndef AP_RELEASE_H
00023 #define AP_RELEASE_H
00024 
00025 #include "apr_general.h" /* stringify */
00026 
00027 #define AP_SERVER_COPYRIGHT \
00028     "Copyright 2006 The Apache Software Foundation."
00029 
00030 /*
00031  * The below defines the base string of the Server: header. Additional
00032  * tokens can be added via the ap_add_version_component() API call.
00033  *
00034  * The tokens are listed in order of their significance for identifying the
00035  * application.
00036  *
00037  * "Product tokens should be short and to the point -- use of them for 
00038  * advertizing or other non-essential information is explicitly forbidden."
00039  *
00040  * Example: "Apache/1.1.0 MrWidget/0.1-alpha" 
00041  */
00042 #define AP_SERVER_BASEVENDOR "Apache Software Foundation"
00043 #define AP_SERVER_BASEPROJECT "Apache HTTP Server"
00044 #define AP_SERVER_BASEPRODUCT "Apache"
00045 
00046 #define AP_SERVER_MAJORVERSION_NUMBER 2
00047 #define AP_SERVER_MINORVERSION_NUMBER 2
00048 #define AP_SERVER_PATCHLEVEL_NUMBER   3
00049 #define AP_SERVER_DEVBUILD_BOOLEAN    0
00050 
00051 #if AP_SERVER_DEVBUILD_BOOLEAN
00052 #define AP_SERVER_ADD_STRING          "-dev"
00053 #else
00054 #define AP_SERVER_ADD_STRING          ""
00055 #endif
00056 
00057 /* keep old macros as well */
00058 #define AP_SERVER_MAJORVERSION  APR_STRINGIFY(AP_SERVER_MAJORVERSION_NUMBER)
00059 #define AP_SERVER_MINORVERSION  APR_STRINGIFY(AP_SERVER_MINORVERSION_NUMBER)
00060 #define AP_SERVER_PATCHLEVEL    APR_STRINGIFY(AP_SERVER_PATCHLEVEL_NUMBER) \
00061                                 AP_SERVER_ADD_STRING
00062 
00063 #define AP_SERVER_MINORREVISION AP_SERVER_MAJORVERSION "." AP_SERVER_MINORVERSION
00064 #define AP_SERVER_BASEREVISION  AP_SERVER_MINORREVISION "." AP_SERVER_PATCHLEVEL
00065 #define AP_SERVER_BASEVERSION   AP_SERVER_BASEPRODUCT "/" AP_SERVER_BASEREVISION
00066 #define AP_SERVER_VERSION       AP_SERVER_BASEVERSION
00067 
00068 /* macro for Win32 .rc files using numeric csv representation */
00069 #define AP_SERVER_PATCHLEVEL_CSV AP_SERVER_MAJORVERSION_NUMBER ##, \
00070                                ##AP_SERVER_MINORVERSION_NUMBER ##, \
00071                                ##AP_SERVER_PATCHLEVEL_NUMBER
00072 
00073 #endif

Apacheに対してSun Jul 19 22:05:23 2009に生成されました。  doxygen 1.4.7