ap_release.h revision 933c9e5f336bf6d490998cc6dbb327fa1521cc0e
d32fae803076bce020fb9cb595a383f78ea740ebkess/* Copyright 2001-2005 The Apache Software Foundation or its licensors, as
2772c0bad271d7a345ef7779dd318fa6098a6bfand * applicable.
2772c0bad271d7a345ef7779dd318fa6098a6bfand * Licensed under the Apache License, Version 2.0 (the "License");
2772c0bad271d7a345ef7779dd318fa6098a6bfand * you may not use this file except in compliance with the License.
2772c0bad271d7a345ef7779dd318fa6098a6bfand * You may obtain a copy of the License at
2772c0bad271d7a345ef7779dd318fa6098a6bfand * Unless required by applicable law or agreed to in writing, software
2772c0bad271d7a345ef7779dd318fa6098a6bfand * distributed under the License is distributed on an "AS IS" BASIS,
2772c0bad271d7a345ef7779dd318fa6098a6bfand * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2772c0bad271d7a345ef7779dd318fa6098a6bfand * See the License for the specific language governing permissions and
2772c0bad271d7a345ef7779dd318fa6098a6bfand * limitations under the License.
2772c0bad271d7a345ef7779dd318fa6098a6bfand/* The numeric compile-time version constants. These constants are the
4b5981e276e93df97c34e4da05ca5cf8bbd937dand * authoritative version numbers for APR.
6df89e6e4adeb986b41b7ec6b7593a887e031ce7nd/** Properly quote a value as a string in the C preprocessor */
ad74a0524a06bfe11b7de9e3b4ce7233ab3bd3f7nd/** Helper macro for AP_STRINGIFY */
ad74a0524a06bfe11b7de9e3b4ce7233ab3bd3f7nd * The below defines the base string of the Server: header. Additional
1cc20a8827ff6056399d64e3106b44d31e8e0e53nd * tokens can be added via the ap_add_version_component() API call.
63f06dce77bb2d9b1c5aa5deeb47a1069987fd1end * The tokens are listed in order of their significance for identifying the
3b3b7fc78d1f5bfc2769903375050048ff41ff26nd * application.
a0b0490b7c07eba5fcac0ff25f8914c219aa52e5noodl * "Product tokens should be short and to the point -- use of them for
a0b0490b7c07eba5fcac0ff25f8914c219aa52e5noodl * advertizing or other non-essential information is explicitly forbidden."
2772c0bad271d7a345ef7779dd318fa6098a6bfand * Example: "Apache/1.1.0 MrWidget/0.1-alpha"
2772c0bad271d7a345ef7779dd318fa6098a6bfand/* keep old macros as well */
2772c0bad271d7a345ef7779dd318fa6098a6bfand#define AP_SERVER_MAJORVERSION AP_STRINGIFY(AP_SERVER_MAJORVERSION_NUMBER)
2772c0bad271d7a345ef7779dd318fa6098a6bfand#define AP_SERVER_MINORVERSION AP_STRINGIFY(AP_SERVER_MINORVERSION_NUMBER)
2772c0bad271d7a345ef7779dd318fa6098a6bfand#define AP_SERVER_PATCHLEVEL AP_STRINGIFY(AP_SERVER_PATCHLEVEL_NUMBER) \
2772c0bad271d7a345ef7779dd318fa6098a6bfand#define AP_SERVER_MINORREVISION AP_SERVER_MAJORVERSION "." AP_SERVER_MINORVERSION
2772c0bad271d7a345ef7779dd318fa6098a6bfand#define AP_SERVER_BASEREVISION AP_SERVER_MINORREVISION "." AP_SERVER_PATCHLEVEL
fcdf6ac1381a286557ff5f7dfd505fe6ba89841dnd#define AP_SERVER_BASEVERSION AP_SERVER_BASEPRODUCT "/" AP_SERVER_BASEREVISION
2772c0bad271d7a345ef7779dd318fa6098a6bfand/* macro for Win32 .rc files using numeric csv representation */