~ubuntu-branches/ubuntu/oneiric/apache2/oneiric-updates

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2011-02-22 13:02:08 UTC
  • mfrom: (14.3.23 sid)
  • Revision ID: james.westby@ubuntu.com-20110222130208-5hrxnun6a8uygfhv
Tags: 2.2.17-1ubuntu1
* Merge from debian unstable, remaining changes:
  - debian/{control, rules}: Enable PIE hardening.
  - debian/{control, rules, apache2.2-common.ufw.profile}: Add ufw profiles.
  - debian/control: Add bzr tag and point it to our tree
  - debain/apache2.py, debian/apache2.2-common.isntall: Add apport hook.
  - debian/control, debian/ask-for-passphrase, debian/config-dir/mods-available/ssl.conf:
    Plymouth aware passphrase dialog program ask-for-passphrase. 

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
 
/* Define if building universal (internal helper macro) */
12
 
#undef AC_APPLE_UNIVERSAL_BUILD
13
 
 
14
 
/* byte order is unknown due to cross-compilation */
15
 
#undef AP_UNKNOWN_BYTE_ORDER
16
 
 
17
 
/* Define to 1 if you have the `bcopy' function. */
18
 
#undef HAVE_BCOPY
19
 
 
20
 
/* Define to 1 if you have the <dlfcn.h> header file. */
21
 
#undef HAVE_DLFCN_H
22
 
 
23
 
/* Define to 1 if you have the <fcntl.h> header file. */
24
 
#undef HAVE_FCNTL_H
25
 
 
26
 
/* Define to 1 if you have the `getpagesize' function. */
27
 
#undef HAVE_GETPAGESIZE
28
 
 
29
 
/* Define to 1 if you have the <inttypes.h> header file. */
30
 
#undef HAVE_INTTYPES_H
31
 
 
32
 
/* Define to 1 if you have the `memmove' function. */
33
 
#undef HAVE_MEMMOVE
34
 
 
35
 
/* Define to 1 if you have the <memory.h> header file. */
36
 
#undef HAVE_MEMORY_H
37
 
 
38
 
/* Define to 1 if you have a working `mmap' system call. */
39
 
#undef HAVE_MMAP
40
 
 
41
 
/* Define to 1 if you have the <stdint.h> header file. */
42
 
#undef HAVE_STDINT_H
43
 
 
44
 
/* Define to 1 if you have the <stdlib.h> header file. */
45
 
#undef HAVE_STDLIB_H
46
 
 
47
 
/* Define to 1 if you have the <strings.h> header file. */
48
 
#undef HAVE_STRINGS_H
49
 
 
50
 
/* Define to 1 if you have the <string.h> header file. */
51
 
#undef HAVE_STRING_H
52
 
 
53
 
/* Define to 1 if you have the <sys/param.h> header file. */
54
 
#undef HAVE_SYS_PARAM_H
55
 
 
56
 
/* Define to 1 if you have the <sys/stat.h> header file. */
57
 
#undef HAVE_SYS_STAT_H
58
 
 
59
 
/* Define to 1 if you have the <sys/types.h> header file. */
60
 
#undef HAVE_SYS_TYPES_H
61
 
 
62
 
/* Define to 1 if you have the <unistd.h> header file. */
63
 
#undef HAVE_UNISTD_H
64
 
 
65
 
/* Define to the address where bug reports for this package should be sent. */
66
 
#undef PACKAGE_BUGREPORT
67
 
 
68
 
/* Define to the full name of this package. */
69
 
#undef PACKAGE_NAME
70
 
 
71
 
/* Define to the full name and version of this package. */
72
 
#undef PACKAGE_STRING
73
 
 
74
 
/* Define to the one symbol short name of this package. */
75
 
#undef PACKAGE_TARNAME
76
 
 
77
 
/* Define to the home page for this package. */
78
 
#undef PACKAGE_URL
79
 
 
80
 
/* Define to the version of this package. */
81
 
#undef PACKAGE_VERSION
82
 
 
83
 
/* Define to 1 if you have the ANSI C header files. */
84
 
#undef STDC_HEADERS
85
 
 
86
 
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
87
 
   significant byte first (like Motorola and SPARC, unlike Intel). */
88
 
#if defined AC_APPLE_UNIVERSAL_BUILD
89
 
# if defined __BIG_ENDIAN__
90
 
#  define WORDS_BIGENDIAN 1
91
 
# endif
92
 
#else
93
 
# ifndef WORDS_BIGENDIAN
94
 
#  undef WORDS_BIGENDIAN
95
 
# endif
96
 
#endif
97
 
 
98
 
/* Define to empty if `const' does not conform to ANSI C. */
99
 
#undef const
100
 
 
101
 
/* Define to `long int' if <sys/types.h> does not define. */
102
 
#undef off_t
103
 
 
104
 
/* Define to `unsigned int' if <sys/types.h> does not define. */
105
 
#undef size_t
106
 
 
107
 
#define XML_NS
108
 
#define XML_DTD
109
 
 
110
 
#define XML_CONTEXT_BYTES 1024
111
 
 
112
 
#ifndef HAVE_MEMMOVE
113
 
#ifdef HAVE_BCOPY
114
 
#define memmove(d,s,l) bcopy((s),(d),(l))
115
 
#else
116
 
#define memmove(d,s,l) ;punting on memmove;
117
 
#endif
118
 
 
119
 
#endif