113546Sjulian/* Licensed to the Apache Software Foundation (ASF) under one or more
213546Sjulian * contributor license agreements.  See the NOTICE file distributed with
313546Sjulian * this work for additional information regarding copyright ownership.
413546Sjulian * The ASF licenses this file to You under the Apache License, Version 2.0
513546Sjulian * (the "License"); you may not use this file except in compliance with
613546Sjulian * the License.  You may obtain a copy of the License at
713546Sjulian *
813546Sjulian *     http://www.apache.org/licenses/LICENSE-2.0
913546Sjulian *
1013546Sjulian * Unless required by applicable law or agreed to in writing, software
1113546Sjulian * distributed under the License is distributed on an "AS IS" BASIS,
1213546Sjulian * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13165967Simp * See the License for the specific language governing permissions and
1413546Sjulian * limitations under the License.
1513546Sjulian */
1613546Sjulian
1713546Sjulian/* 
1813546Sjulian * Note: This is a Windows specific version of apu_config.hw. It is copied
1913546Sjulian * as apu_config.h at the start of a Windows build.
2049439Sdeischen */
2113546Sjulian
2213546Sjulian#ifdef WIN32
2313546Sjulian
2413546Sjulian#ifndef APU_CONFIG_H
2513546Sjulian#define APU_CONFIG_H
2613546Sjulian
2713546Sjulian/* Compile win32 with DSO support for .dll builds */
2813546Sjulian#ifdef APU_DECLARE_STATIC
2950476Speter#define APU_DSO_BUILD           0
3013546Sjulian#else
31174112Sdeischen#define APU_DSO_BUILD           1
32174112Sdeischen#endif
3313546Sjulian
3417706Sjulian/* Presume a standard, modern (5.x) mysql sdk/
3513546Sjulian#define HAVE_MY_GLOBAL_H        1
36174112Sdeischen
37103388Smini/* my_sys.h is broken on VC/Win32, and apparently not required */
3813546Sjulian/* #undef HAVE_MY_SYS_H           0 */
39174112Sdeischen
40174112Sdeischen/*
41174112Sdeischen * Windows does not have GDBM, and we always use the bundled (new) Expat
4275369Sdeischen */
4371581Sdeischen
4413546Sjulian/* Define if you have the gdbm library (-lgdbm).  */
45113658Sdeischen/* #undef HAVE_LIBGDBM */
46113658Sdeischen
4713546Sjulian/* define if Expat 1.0 or 1.1 was found */
4871581Sdeischen/* #undef APR_HAVE_OLD_EXPAT */
4917706Sjulian
50113658Sdeischen
5117706Sjulian#endif /* APU_CONFIG_H */
52155962Sdeischen#endif /* WIN32 */
5313546Sjulian