~ubuntu-branches/ubuntu/feisty/apache2/feisty

« back to all changes in this revision

Viewing changes to srclib/apr-util/xml/expat/config.h.in

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Barth
  • Date: 2006-12-09 21:05:45 UTC
  • mfrom: (0.6.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20061209210545-h70s0xaqc2v8vqr2
Tags: 2.2.3-3.2
* Non-maintainer upload.
* 043_ajp_connection_reuse: Patch from upstream Bugzilla, fixing a critical
  issue with regard to connection reuse in mod_proxy_ajp.
  Closes: #396265

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* config.h.in.  Generated from configure.in by autoheader.  */
 
2
/* This file is used by autoheader to add items to expat_config.h.in */
 
3
 
 
4
#ifdef WORDS_BIGENDIAN
 
5
#define XML_BYTE_ORDER 21
 
6
#else
 
7
#define XML_BYTE_ORDER 12
 
8
#endif
 
9
 
 
10
 
 
11
/* byte order is unknown due to cross-compilation */
 
12
#undef AP_UNKNOWN_BYTE_ORDER
 
13
 
 
14
/* Define to 1 if you have the `bcopy' function. */
 
15
#undef HAVE_BCOPY
 
16
 
 
17
/* Define to 1 if you have the <dlfcn.h> header file. */
 
18
#undef HAVE_DLFCN_H
 
19
 
 
20
/* Define to 1 if you have the <fcntl.h> header file. */
 
21
#undef HAVE_FCNTL_H
 
22
 
 
23
/* Define to 1 if you have the `getpagesize' function. */
 
24
#undef HAVE_GETPAGESIZE
 
25
 
 
26
/* Define to 1 if you have the <inttypes.h> header file. */
 
27
#undef HAVE_INTTYPES_H
 
28
 
 
29
/* Define to 1 if you have the `memmove' function. */
 
30
#undef HAVE_MEMMOVE
 
31
 
 
32
/* Define to 1 if you have the <memory.h> header file. */
 
33
#undef HAVE_MEMORY_H
 
34
 
 
35
/* Define to 1 if you have a working `mmap' system call. */
 
36
#undef HAVE_MMAP
 
37
 
 
38
/* Define to 1 if you have the <stdint.h> header file. */
 
39
#undef HAVE_STDINT_H
 
40
 
 
41
/* Define to 1 if you have the <stdlib.h> header file. */
 
42
#undef HAVE_STDLIB_H
 
43
 
 
44
/* Define to 1 if you have the <strings.h> header file. */
 
45
#undef HAVE_STRINGS_H
 
46
 
 
47
/* Define to 1 if you have the <string.h> header file. */
 
48
#undef HAVE_STRING_H
 
49
 
 
50
/* Define to 1 if you have the <sys/stat.h> header file. */
 
51
#undef HAVE_SYS_STAT_H
 
52
 
 
53
/* Define to 1 if you have the <sys/types.h> header file. */
 
54
#undef HAVE_SYS_TYPES_H
 
55
 
 
56
/* Define to 1 if you have the <unistd.h> header file. */
 
57
#undef HAVE_UNISTD_H
 
58
 
 
59
/* Define to the address where bug reports for this package should be sent. */
 
60
#undef PACKAGE_BUGREPORT
 
61
 
 
62
/* Define to the full name of this package. */
 
63
#undef PACKAGE_NAME
 
64
 
 
65
/* Define to the full name and version of this package. */
 
66
#undef PACKAGE_STRING
 
67
 
 
68
/* Define to the one symbol short name of this package. */
 
69
#undef PACKAGE_TARNAME
 
70
 
 
71
/* Define to the version of this package. */
 
72
#undef PACKAGE_VERSION
 
73
 
 
74
/* Define to 1 if you have the ANSI C header files. */
 
75
#undef STDC_HEADERS
 
76
 
 
77
/* Define to 1 if your processor stores words with the most significant byte
 
78
   first (like Motorola and SPARC, unlike Intel and VAX). */
 
79
#undef WORDS_BIGENDIAN
 
80
 
 
81
/* Define to empty if `const' does not conform to ANSI C. */
 
82
#undef const
 
83
 
 
84
/* Define to `long' if <sys/types.h> does not define. */
 
85
#undef off_t
 
86
 
 
87
/* Define to `unsigned' if <sys/types.h> does not define. */
 
88
#undef size_t
 
89
 
 
90
#define XML_NS
 
91
#define XML_DTD
 
92
 
 
93
#define XML_CONTEXT_BYTES 1024
 
94
 
 
95
#ifndef HAVE_MEMMOVE
 
96
#ifdef HAVE_BCOPY
 
97
#define memmove(d,s,l) bcopy((s),(d),(l))
 
98
#else
 
99
#define memmove(d,s,l) ;punting on memmove;
 
100
#endif
 
101
 
 
102
#endif