apu_want.hw revision 256281
150476Speter/* Licensed to the Apache Software Foundation (ASF) under one or more
23079Sache * contributor license agreements.  See the NOTICE file distributed with
3124716Sru * this work for additional information regarding copyright ownership.
4124716Sru * The ASF licenses this file to You under the Apache License, Version 2.0
5124716Sru * (the "License"); you may not use this file except in compliance with
6124716Sru * the License.  You may obtain a copy of the License at
7124716Sru *
8124716Sru *     http://www.apache.org/licenses/LICENSE-2.0
9124716Sru *
10124716Sru * Unless required by applicable law or agreed to in writing, software
11124716Sru * distributed under the License is distributed on an "AS IS" BASIS,
12124716Sru * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13124716Sru * See the License for the specific language governing permissions and
14124716Sru * limitations under the License.
15124716Sru */
16124716Sru
17124716Sru#include "apu.h"        /* configuration data */
18124716Sru
19124716Sru/**
20124716Sru * @file apu_want.h
21124716Sru * @brief APR Standard Headers Support
22124716Sru *
23124716Sru * <PRE>
24124716Sru * Features:
25124716Sru *
26125208Sache *   APU_WANT_DB:       <db.h>
27124716Sru *
28124716Sru * Typical usage:
29124716Sru *
30124716Sru *   #define APU_WANT_DB
31124716Sru *   #include "apu_want.h"
32127037Sfjoe *
33127037Sfjoe * The appropriate headers will be included.
34124716Sru *
35124716Sru * Note: it is safe to use this in a header (it won't interfere with other
36124716Sru *       headers' or source files' use of apu_want.h)
37124716Sru * </PRE>
38124716Sru */
39124716Sru
40124716Sru/* --------------------------------------------------------------------- */
41124716Sru
42124716Sru#ifdef APU_WANT_DB
43124716Sru
44124716Sru#if APU_HAVE_DB
4517359Swosch/* win32 note.. you will need to change this for db1 */
46124716Sru#include <db.h>
473079Sache#endif
48139103Sru
493079Sache#undef APU_WANT_DB
503079Sache#endif
51
52/* --------------------------------------------------------------------- */
53