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/*
18 * Note: This is a Windows specific version of apu_config.hw. It is copied
19 * as apu_config.h at the start of a Windows build.
20 */
21
22#ifdef WIN32
23
24#ifndef APU_CONFIG_H
25#define APU_CONFIG_H
26
27/* Compile win32 with DSO support for .dll builds */
28#ifdef APU_DECLARE_STATIC
29#define APU_DSO_BUILD           0
30#else
31#define APU_DSO_BUILD           1
32#endif
33
34/* Presume a standard, modern (5.x) mysql sdk/
35#define HAVE_MY_GLOBAL_H        1
36
37/* my_sys.h is broken on VC/Win32, and apparently not required */
38/* #undef HAVE_MY_SYS_H           0 */
39
40/*
41 * Windows does not have GDBM, and we always use the bundled (new) Expat
42 */
43
44/* Define if you have the gdbm library (-lgdbm).  */
45/* #undef HAVE_LIBGDBM */
46
47/* define if Expat 1.0 or 1.1 was found */
48/* #undef APR_HAVE_OLD_EXPAT */
49
50
51#endif /* APU_CONFIG_H */
52#endif /* WIN32 */
53