~ubuntu-branches/ubuntu/oneiric/jabberd2/oneiric-security

« back to all changes in this revision

Viewing changes to expat/winconfig.h

  • Committer: Bazaar Package Importer
  • Author(s): Nicolai Spohrer
  • Date: 2008-08-12 16:13:43 UTC
  • mfrom: (1.1.3 upstream) (0.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20080812161343-6trz3r97dtevxd17
Tags: 2.2.1-1ubuntu1
* Merge with Debian unstable (LP: #257130), remaining changes:
  - debian/control:
    + Modify Maintainer field as per spec
    + Depend on libdb4.6-dev instead of libdb4.4-dev
    + Added Conflicts and Replaces: ..., jabber for jabberd2
  - debian/rules: Added libtoolize call (jabberd2 ships with
     an older ltmain.sh version that conflicts with the
     current libtool version)
  - debian/init: create /var/run/jabber directory with correct
     permissions
* Dropped changes:
  - Debian already depends on libpq-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*================================================================
2
 
** Copyright 2000, Clark Cooper
3
 
** All rights reserved.
4
 
**
5
 
** This is free software. You are permitted to copy, distribute, or modify
6
 
** it under the terms of the MIT/X license (contained in the COPYING file
7
 
** with this distribution.)
8
 
*/
9
 
 
10
 
#ifndef WINCONFIG_H
11
 
#define WINCONFIG_H
12
 
 
13
 
#define WIN32_LEAN_AND_MEAN
14
 
#include <windows.h>
15
 
#undef WIN32_LEAN_AND_MEAN
16
 
 
17
 
#include <memory.h>
18
 
#include <string.h>
19
 
 
20
 
#define XML_NS 1
21
 
#define XML_DTD 1
22
 
#define XML_CONTEXT_BYTES 1024
23
 
 
24
 
/* we will assume all Windows platforms are little endian */
25
 
#define BYTEORDER 1234
26
 
 
27
 
/* Windows has memmove() available. */
28
 
#define HAVE_MEMMOVE
29
 
 
30
 
#endif /* ndef WINCONFIG_H */