~launchpad-committers/ubuntu/lucid/slony1/ppa-8.4

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/* ----------
 * config.h.in
 *
 *	Autoconf input file for config.h
 *
 *	Copyright (c) 2003-2004, PostgreSQL Global Development Group
 *	Author: Jan Wieck, Afilias USA INC.
 *
 * $Id: config.h.in,v 1.17.2.15 2008-09-12 17:37:48 cbbrowne Exp $
 * ----------
 */
#ifndef	SLONY_I_CONFIG_H
#define SLONY_I_CONFIG_H

#define SLONY_I_VERSION_STRING	"1.2.15"
#define SLONY_I_VERSION_STRING_DEC 1,2,15

#ifndef PG_VERSION_MAJOR
#define PG_VERSION_MAJOR 0
#endif
#ifndef PG_VERSION_MINOR
#define PG_VERSION_MINOR 0
#endif

#undef PGSHARE

#undef HAVE_NETSNMP
#ifdef HAVE_NETSNMP

/* Define to 1 if the system has the type `uint32_t'. */
#undef HAVE_UINT32_T

/* Define to 1 if the system has the type `uint64_t'. */
#undef HAVE_UINT64_T

/* Define to 1 if the system has the type `ssize_t'. */
#undef HAVE_SSIZE_T

/* Define to 1 if the system has the type `int32_t'. */
#undef HAVE_INT32_T

/* Define to 1 if the system has the type `int64_t'. */
#undef HAVE_INT64_T

/* Define to 1 if you have the <stdarg.h> header file. */
#undef HAVE_STDARG_H

/* The size of a `int', as computed by sizeof. */
#undef SIZEOF_INT

/* The size of a `long', as computed by sizeof. */
#undef SIZEOF_LONG

/* The size of a `long long', as computed by sizeof. */
#undef SIZEOF_LONG_LONG

/* The size of a `short', as computed by sizeof. */
#undef SIZEOF_SHORT

#define NETSNMP_IMPORT extern
#define NETSNMP_INLINE
#define RETSIGTYPE void
#define NET_SNMP_CONFIG_H
#endif


/* Set to 1 if libpq contains PQfreemem() */
#undef HAVE_PQFREEMEM
#ifndef HAVE_PQFREEMEM
#  define PQfreemem(_ptr) free(_ptr)
#endif

/* Set to 1 if libpq contains PQputCopyData(), PQendCopyData()
 * and PQgetCopyData() - i.e. libpq >= 7.4 */
#undef HAVE_PQPUTCOPYDATA

/* Set to 1 if libpq contains PQsetNoticeReceiver(), use
 * PQsetNoticeProcessor() instead. */
#undef HAVE_PQSETNOTICERECEIVER

/* Set to 1 if server/utils/typcache.h exists */
#undef HAVE_TYPCACHE

/* Set to 1 if typenameTypeId() takes 1 args */
#undef HAVE_TYPENAMETYPEID_1

/* Set to 1 if typenameTypeId() takes 2 args */
#undef HAVE_TYPENAMETYPEID_2

/* Set to 1 if typenameTypeId() takes 3 args */
#undef HAVE_TYPENAMETYPEID_3

/* Set to 1 if standard_conforming_strings available */
#undef HAVE_STANDARDCONFORMINGSTRINGS

/* For PostgreSQL 8.0 and up we need to use GetTopTransactionId() */
#undef HAVE_DECL_GETTOPTRANSACTIONID
#if !HAVE_DECL_GETTOPTRANSACTIONID
#define GetTopTransactionId() GetCurrentTransactionId()
#endif


/* Set to 1 if we have POSIX signals */
#undef HAVE_POSIX_SIGNALS

#endif /* SLONY_I_CONFIG_H */