Apache2
apr_version.h
Go to the documentation of this file.
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 APR_VERSION_H
18 #define APR_VERSION_H
19 
41 #define APR_COPYRIGHT "Copyright 2025 The Apache Software Foundation."
42 
43 /* The numeric compile-time version constants. These constants are the
44  * authoritative version numbers for APR.
45  */
46 
52 #define APR_MAJOR_VERSION 2
53 
58 #define APR_MINOR_VERSION 0
59 
64 #define APR_PATCH_VERSION 0
65 
71 #define APR_IS_DEV_VERSION
72 
85 #define APR_VERSION_AT_LEAST(major,minor,patch) \
86 (((major) < APR_MAJOR_VERSION) \
87  || ((major) == APR_MAJOR_VERSION && (minor) < APR_MINOR_VERSION) \
88  || ((major) == APR_MAJOR_VERSION && (minor) == APR_MINOR_VERSION && (patch) <= APR_PATCH_VERSION))
89 
90 #if defined(APR_IS_DEV_VERSION) || defined(DOXYGEN)
92 #ifndef APR_IS_DEV_STRING
93 #define APR_IS_DEV_STRING "-dev"
94 #endif
95 #else
96 #define APR_IS_DEV_STRING ""
97 #endif
98 
99 /* APR_STRINGIFY is defined here, and also in apr_general.h, so wrap it */
100 #ifndef APR_STRINGIFY
102 #define APR_STRINGIFY(n) APR_STRINGIFY_HELPER(n)
104 #define APR_STRINGIFY_HELPER(n) #n
105 #endif
106 
108 #define APR_VERSION_STRING \
109  APR_STRINGIFY(APR_MAJOR_VERSION) "." \
110  APR_STRINGIFY(APR_MINOR_VERSION) "." \
111  APR_STRINGIFY(APR_PATCH_VERSION) \
112  APR_IS_DEV_STRING
113 
115 /* macro for Win32 .rc files using numeric csv representation */
116 #define APR_VERSION_STRING_CSV APR_MAJOR_VERSION, \
117  APR_MINOR_VERSION, \
118  APR_PATCH_VERSION
119 
120 
121 #ifndef APR_VERSION_ONLY
122 
123 /* The C language API to access the version at run time,
124  * as opposed to compile time. APR_VERSION_ONLY may be defined
125  * externally when preprocessing apr_version.h to obtain strictly
126  * the C Preprocessor macro declarations.
127  */
128 
129 #include "apr.h"
130 
131 #ifdef __cplusplus
132 extern "C" {
133 #endif
134 
139 typedef struct {
140  int major;
141  int minor;
142  int patch;
143  int is_dev;
144 } apr_version_t;
145 
153 
155 APR_DECLARE(const char *) apr_version_string(void);
156 
157 #ifdef __cplusplus
158 }
159 #endif
160 
161 #endif /* ndef APR_VERSION_ONLY */
162 
163 #endif /* ndef APR_VERSION_H */
APR Platform Definitions.
void apr_version(apr_version_t *pvsn)
const char * apr_version_string(void)
#define APR_DECLARE(x)
Definition: macros.h:6
Definition: apr_version.h:139
int major
Definition: apr_version.h:140
int patch
Definition: apr_version.h:142
int minor
Definition: apr_version.h:141
int is_dev
Definition: apr_version.h:143