Lines Matching defs:version
19 * Allow conditional configuration depending on the httpd version
39 * If minor version and patch level are omitted they are assumed to be 0.
41 * Alternatively you can match the whole version (including some vendor-added
42 * string of the CORE version, see ap_release.h) against a regular expression:
69 /* queried httpd version */
74 * compare the supplied version with the core one
79 int version[3] = {0, 0, 0};
90 /* parse supplied version */
98 version[c++] = atoi(version_string);
116 if (httpd_version.major > version[0]) {
119 else if (httpd_version.major < version[0]) {
122 else if (httpd_version.minor > version[1]) {
125 else if (httpd_version.minor < version[1]) {
128 else if (httpd_version.patch > version[2]) {
131 else if (httpd_version.patch < version[2]) {
140 * match version against a regular expression
194 /* the third argument makes version surrounding quotes plus operator
300 "a comparison operator, a version (and a delimiter)"),
304 AP_DECLARE_MODULE(version) =