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/* 
18251876Speter * Note: This is a NetWare specific version of apu_config.hnw. It is copied
19251876Speter * as apu_config.h at the start of a NetWare build.
20251876Speter */
21251876Speter
22251876Speter#ifdef NETWARE
23251876Speter
24251876Speter#ifndef APU_CONFIG_H
25251876Speter#define APU_CONFIG_H
26251876Speter
27251876Speter/* Always compile Netware with DSO support for .nlm builds */
28251876Speter#define APU_DSO_BUILD           0
29251876Speter
30251876Speter/*
31251876Speter * NetWare does not have GDBM, and we always use the bundled (new) Expat
32251876Speter */
33251876Speter
34251876Speter/* Define if you have the gdbm library (-lgdbm). */
35251876Speter/* #undef HAVE_LIBGDBM */
36251876Speter
37251876Speter/* define if Expat 1.0 or 1.1 was found */
38251876Speter/* #undef APR_HAVE_OLD_EXPAT */
39251876Speter
40251876Speter/* NetWare uses its own ICONV implementation. */
41251876Speter#define HAVE_ICONV_H 1
42251876Speter
43251876Speter/*
44251876Speter * check for newer NDKs which use now correctly 'const char*' with iconv.
45251876Speter */
46251876Speter#include <ndkvers.h>
47251876Speter#if (CURRENT_NDK_THRESHOLD >= 705110000)
48251876Speter#define APU_ICONV_INBUF_CONST
49251876Speter#endif
50251876Speter
51251876Speter#endif /* APU_CONFIG_H */
52251876Speter#endif /* NETWARE */
53251876Speter
54