apu_want.hw revision 251876
11573Srgrimes/* Licensed to the Apache Software Foundation (ASF) under one or more
21573Srgrimes * contributor license agreements.  See the NOTICE file distributed with
31573Srgrimes * this work for additional information regarding copyright ownership.
41573Srgrimes * The ASF licenses this file to You under the Apache License, Version 2.0
51573Srgrimes * (the "License"); you may not use this file except in compliance with
61573Srgrimes * the License.  You may obtain a copy of the License at
71573Srgrimes *
81573Srgrimes *     http://www.apache.org/licenses/LICENSE-2.0
91573Srgrimes *
101573Srgrimes * Unless required by applicable law or agreed to in writing, software
111573Srgrimes * distributed under the License is distributed on an "AS IS" BASIS,
121573Srgrimes * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
131573Srgrimes * See the License for the specific language governing permissions and
141573Srgrimes * limitations under the License.
151573Srgrimes */
161573Srgrimes
171573Srgrimes#include "apu.h"        /* configuration data */
181573Srgrimes
191573Srgrimes/**
201573Srgrimes * @file apu_want.h
211573Srgrimes * @brief APR Standard Headers Support
221573Srgrimes *
231573Srgrimes * <PRE>
241573Srgrimes * Features:
251573Srgrimes *
261573Srgrimes *   APU_WANT_DB:       <db.h>
271573Srgrimes *
281573Srgrimes * Typical usage:
291573Srgrimes *
301573Srgrimes *   #define APU_WANT_DB
311573Srgrimes *   #include "apu_want.h"
321573Srgrimes *
331573Srgrimes * The appropriate headers will be included.
341573Srgrimes *
351573Srgrimes * Note: it is safe to use this in a header (it won't interfere with other
361573Srgrimes *       headers' or source files' use of apu_want.h)
3792986Sobrien * </PRE>
3892986Sobrien */
391573Srgrimes
401573Srgrimes/* --------------------------------------------------------------------- */
411573Srgrimes
421573Srgrimes#ifdef APU_WANT_DB
431573Srgrimes
441573Srgrimes#if APU_HAVE_DB
451573Srgrimes/* win32 note.. you will need to change this for db1 */
461573Srgrimes#include <db.h>
471573Srgrimes#endif
481573Srgrimes
491573Srgrimes#undef APU_WANT_DB
501573Srgrimes#endif
511573Srgrimes
521573Srgrimes/* --------------------------------------------------------------------- */
531573Srgrimes