1251886Speter/* $FreeBSD: releng/10.3/usr.bin/svn/lib/libapr_util/apu_want.h 251886 2013-06-18 02:53:45Z peter $ */
2251886Speter
3251886Speter/* Licensed to the Apache Software Foundation (ASF) under one or more
4251886Speter * contributor license agreements.  See the NOTICE file distributed with
5251886Speter * this work for additional information regarding copyright ownership.
6251886Speter * The ASF licenses this file to You under the Apache License, Version 2.0
7251886Speter * (the "License"); you may not use this file except in compliance with
8251886Speter * the License.  You may obtain a copy of the License at
9251886Speter *
10251886Speter *     http://www.apache.org/licenses/LICENSE-2.0
11251886Speter *
12251886Speter * Unless required by applicable law or agreed to in writing, software
13251886Speter * distributed under the License is distributed on an "AS IS" BASIS,
14251886Speter * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15251886Speter * See the License for the specific language governing permissions and
16251886Speter * limitations under the License.
17251886Speter */
18251886Speter
19251886Speter#include "apu.h"        /* configuration data */
20251886Speter
21251886Speter/**
22251886Speter * @file apu_want.h
23251886Speter * @brief APR Standard Headers Support
24251886Speter *
25251886Speter * <PRE>
26251886Speter * Features:
27251886Speter *
28251886Speter *   APU_WANT_DB:       <db.h>
29251886Speter *
30251886Speter * Typical usage:
31251886Speter *
32251886Speter *   #define APU_WANT_DB
33251886Speter *   #include "apu_want.h"
34251886Speter *
35251886Speter * The appropriate headers will be included.
36251886Speter *
37251886Speter * Note: it is safe to use this in a header (it won't interfere with other
38251886Speter *       headers' or source files' use of apu_want.h)
39251886Speter * </PRE>
40251886Speter */
41251886Speter
42251886Speter/* --------------------------------------------------------------------- */
43251886Speter
44251886Speter#ifdef APU_WANT_DB
45251886Speter
46251886Speter#if APU_HAVE_DB
47251886Speter#include <db.h>
48251886Speter#endif
49251886Speter
50251886Speter#undef APU_WANT_DB
51251886Speter#endif
52251886Speter
53251886Speter/* --------------------------------------------------------------------- */
54