Don't configure MySQL if the driver isn't there.
[apr-util.git] / misc / apu_version.c
blobdab34b71ad877ac8b8db1e3da5048ff73bf3f5f5
1 /* Copyright 2000-2005 The Apache Software Foundation or its licensors, as
2 * applicable.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 #include "apr_general.h" /* for APR_STRINGIFY */
19 #include "apu.h"
20 #include "apu_version.h"
22 APU_DECLARE(void) apu_version(apr_version_t *pvsn)
24 pvsn->major = APU_MAJOR_VERSION;
25 pvsn->minor = APU_MINOR_VERSION;
26 pvsn->patch = APU_PATCH_VERSION;
27 #ifdef APU_IS_DEV_VERSION
28 pvsn->is_dev = 1;
29 #else
30 pvsn->is_dev = 0;
31 #endif
34 APU_DECLARE(const char *) apu_version_string(void)
36 return APU_VERSION_STRING;