1251876Speter/* Licensed to the Apache Software Foundation (ASF) under one or more
2251876Speter * contributor license agreements.  See the NOTICE file distributed with
3251876Speter * this work for additional information regarding copyright ownership.
4251876Speter * The ASF licenses this file to You under the Apache License, Version 2.0
5251876Speter * (the "License"); you may not use this file except in compliance with
6251876Speter * the License.  You may obtain a copy of the License at
7251876Speter *
8251876Speter *     http://www.apache.org/licenses/LICENSE-2.0
9251876Speter *
10251876Speter * Unless required by applicable law or agreed to in writing, software
11251876Speter * distributed under the License is distributed on an "AS IS" BASIS,
12251876Speter * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13251876Speter * See the License for the specific language governing permissions and
14251876Speter * limitations under the License.
15251876Speter */
16251876Speter
17251876Speter#include "apu.h"        /* configuration data */
18251876Speter
19251876Speter/**
20251876Speter * @file apu_want.h
21251876Speter * @brief APR Standard Headers Support
22251876Speter *
23251876Speter * <PRE>
24251876Speter * Features:
25251876Speter *
26251876Speter *   APU_WANT_DB:       <db.h>
27251876Speter *
28251876Speter * Typical usage:
29251876Speter *
30251876Speter *   #define APU_WANT_DB
31251876Speter *   #include "apu_want.h"
32251876Speter *
33251876Speter * The appropriate headers will be included.
34251876Speter *
35251876Speter * Note: it is safe to use this in a header (it won't interfere with other
36251876Speter *       headers' or source files' use of apu_want.h)
37251876Speter * </PRE>
38251876Speter */
39251876Speter
40251876Speter/* --------------------------------------------------------------------- */
41251876Speter
42251876Speter#ifdef APU_WANT_DB
43251876Speter
44251876Speter#if APU_HAVE_DB
45251876Speter/* win32 note.. you will need to change this for db1 */
46251876Speter#include <db.h>
47251876Speter#endif
48251876Speter
49251876Speter#undef APU_WANT_DB
50251876Speter#endif
51251876Speter
52251876Speter/* --------------------------------------------------------------------- */
53