~ubuntu-branches/ubuntu/lucid/expat/lucid

« back to all changes in this revision

Viewing changes to config.h.in

  • Committer: Bazaar Package Importer
  • Author(s): Ardo van Rangelrooij
  • Date: 2005-04-19 21:50:50 UTC
  • mfrom: (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050419215050-702ovrw753hzsc1r
Tags: 1.95.8-3
* Makefile.in: added $(srcdir)/expat_config.h to APIHEADER
  (closes: Bug#302191)
* rebuild against latest libtool for kfreebsd-gnu
  (closes: Bug#295825)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* config.h.in.  Generated automatically from configure.in by autoheader.  */
2
 
 
3
 
/* Define to empty if the keyword does not work.  */
4
 
#undef const
5
 
 
6
 
/* Define if you have a working `mmap' system call.  */
7
 
#undef HAVE_MMAP
8
 
 
9
 
/* Define to `long' if <sys/types.h> doesn't define.  */
10
 
#undef off_t
11
 
 
12
 
/* Define to `unsigned' if <sys/types.h> doesn't define.  */
13
 
#undef size_t
14
 
 
15
 
/* Define if you have the ANSI C header files.  */
16
 
#undef STDC_HEADERS
17
 
 
18
 
/* Define if you have the bcopy function.  */
19
 
#undef HAVE_BCOPY
20
 
 
21
 
/* Define if you have the getpagesize function.  */
22
 
#undef HAVE_GETPAGESIZE
23
 
 
24
 
/* Define if you have the memmove function.  */
25
 
#undef HAVE_MEMMOVE
26
 
 
27
 
/* Define if you have the <fcntl.h> header file.  */
28
 
#undef HAVE_FCNTL_H
29
 
 
30
 
/* Define if you have the <unistd.h> header file.  */
31
 
#undef HAVE_UNISTD_H
32
 
 
33
 
/* whether byteorder is bigendian */
34
 
#undef WORDS_BIGENDIAN
35
 
 
36
 
/* 1234 = LIL_ENDIAN, 4321 = BIGENDIAN */
37
 
#undef BYTEORDER
38
 
 
39
 
 
40
 
#define XML_NS
41
 
#define XML_DTD
42
 
 
43
 
#define XML_CONTEXT_BYTES 1024
44
 
 
45
 
#ifndef HAVE_MEMMOVE
46
 
#ifdef HAVE_BCOPY
47
 
#define memmove(d,s,l) bcopy((s),(d),(l))
48
 
#else
49
 
#define memmove(d,s,l) ;punting on memmove;
50
 
#endif
51
 
 
52
 
#endif