~ubuntu-branches/ubuntu/hardy/apache2/hardy-proposed

« back to all changes in this revision

Viewing changes to srclib/apr-util/include/private/apu_config.hnw

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Fritsch
  • Date: 2008-01-17 20:27:56 UTC
  • mto: This revision was merged to the branch mainline in revision 26.
  • Revision ID: james.westby@ubuntu.com-20080117202756-hv38rjknhwa2ilwi
Tags: upstream-2.2.8
ImportĀ upstreamĀ versionĀ 2.2.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Licensed to the Apache Software Foundation (ASF) under one or more
 
2
 * contributor license agreements.  See the NOTICE file distributed with
 
3
 * this work for additional information regarding copyright ownership.
 
4
 * The ASF licenses this file to You under the Apache License, Version 2.0
 
5
 * (the "License"); you may not use this file except in compliance with
 
6
 * the License.  You may obtain a copy of the License at
 
7
 *
 
8
 *     http://www.apache.org/licenses/LICENSE-2.0
 
9
 *
 
10
 * Unless required by applicable law or agreed to in writing, software
 
11
 * distributed under the License is distributed on an "AS IS" BASIS,
 
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
13
 * See the License for the specific language governing permissions and
 
14
 * limitations under the License.
 
15
 */
 
16
 
 
17
/* 
 
18
 * Note: This is a NetWare specific version of apu_config.hnw. It is copied
 
19
 * as apu_config.h at the start of a NetWare build.
 
20
 */
 
21
 
 
22
#ifdef NETWARE
 
23
 
 
24
#ifndef APU_CONFIG_H
 
25
#define APU_CONFIG_H
 
26
 
 
27
/*
 
28
 * NetWare does not have GDBM, and we always use the bundled (new) Expat
 
29
 */
 
30
 
 
31
/* Define if you have the gdbm library (-lgdbm). */
 
32
/* #undef HAVE_LIBGDBM */
 
33
 
 
34
/* define if Expat 1.0 or 1.1 was found */
 
35
/* #undef APR_HAVE_OLD_EXPAT */
 
36
 
 
37
/* NetWare uses its own ICONV implementation. */
 
38
#define HAVE_ICONV_H 1
 
39
 
 
40
/*
 
41
 * check for newer NDKs which use now correctly 'const char*' with iconv.
 
42
 */
 
43
#include <ndkvers.h>
 
44
#if (CURRENT_NDK_THRESHOLD >= 705110000)
 
45
#define APU_ICONV_INBUF_CONST
 
46
#endif
 
47
 
 
48
#endif /* APU_CONFIG_H */
 
49
#endif /* NETWARE */
 
50