00001 /* Licensed to the Apache Software Foundation (ASF) under one or more 00002 * contributor license agreements. See the NOTICE file distributed with 00003 * this work for additional information regarding copyright ownership. 00004 * The ASF licenses this file to You under the Apache License, Version 2.0 00005 * (the "License"); you may not use this file except in compliance with 00006 * the License. You may obtain a copy of the License at 00007 * 00008 * http://www.apache.org/licenses/LICENSE-2.0 00009 * 00010 * Unless required by applicable law or agreed to in writing, software 00011 * distributed under the License is distributed on an "AS IS" BASIS, 00012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00013 * See the License for the specific language governing permissions and 00014 * limitations under the License. 00015 */ 00016 00017 /* 00018 * Note: This is a Windows specific version of apu_config.hw. It is copied 00019 * as apu_config.h at the start of a Windows build. 00020 */ 00021 00022 #ifdef WIN32 00023 00024 #ifndef APU_CONFIG_H 00025 #define APU_CONFIG_H 00026 00027 /* Compile win32 with DSO support for .dll builds */ 00028 #ifdef APU_DECLARE_STATIC 00029 #define APU_DSO_BUILD 0 00030 #else 00031 #define APU_DSO_BUILD 1 00032 #endif 00033 00034 /* Presume a standard, modern (5.x) mysql sdk/ 00035 #define HAVE_MY_GLOBAL_H 1 00036 00037 /* my_sys.h is broken on VC/Win32, and apparently not required */ 00038 /* #undef HAVE_MY_SYS_H 0 */ 00039 00040 /* 00041 * Windows does not have GDBM, and we always use the bundled (new) Expat 00042 */ 00043 00044 /* Define if you have the gdbm library (-lgdbm). */ 00045 /* #undef HAVE_LIBGDBM */ 00046 00047 /* define if Expat 1.0 or 1.1 was found */ 00048 /* #undef APR_HAVE_OLD_EXPAT */ 00049 00050 00051 #endif /* APU_CONFIG_H */ 00052 #endif /* WIN32 */