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

« back to all changes in this revision

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

  • 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
/* This file is used by autoheader to add items to expat_config.h.in */
 
2
 
 
3
#ifdef WORDS_BIGENDIAN
 
4
#define XML_BYTE_ORDER 21
 
5
#else
 
6
#define XML_BYTE_ORDER 12
 
7
#endif
 
8
 
 
9
@BOTTOM@
 
10
 
 
11
#define XML_NS
 
12
#define XML_DTD
 
13
 
 
14
#define XML_CONTEXT_BYTES 1024
 
15
 
 
16
#ifndef HAVE_MEMMOVE
 
17
#ifdef HAVE_BCOPY
 
18
#define memmove(d,s,l) bcopy((s),(d),(l))
 
19
#else
 
20
#define memmove(d,s,l) ;punting on memmove;
 
21
#endif
 
22
 
 
23
#endif