summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian2006-07-10 22:06:11 +0000
committerBruce Momjian2006-07-10 22:06:11 +0000
commitfc06a2cd4a408370feb02faf66c7a4489e71a3ca (patch)
tree29acbb0e515af926f8464b271d05881adca6c033
parenta6b3ebdcab7e3d7aa4d06fd4ca30d3e370ac156f (diff)
Allow /contrib include files to compile on their own.
-rw-r--r--contrib/intarray/_int.h5
-rw-r--r--contrib/pgcrypto/pgcrypto.h2
-rw-r--r--contrib/tablefunc/tablefunc.h2
-rw-r--r--contrib/tsearch2/common.h6
-rw-r--r--contrib/tsearch2/query.h4
-rw-r--r--contrib/tsearch2/query_cleanup.h6
-rw-r--r--contrib/tsearch2/query_util.h1
-rw-r--r--contrib/tsearch2/snowball/header.h2
-rw-r--r--contrib/tsearch2/ts_stat.h1
-rw-r--r--contrib/userlock/user_locks.h2
10 files changed, 22 insertions, 9 deletions
diff --git a/contrib/intarray/_int.h b/contrib/intarray/_int.h
index 6218cbcd20..f40dc06a92 100644
--- a/contrib/intarray/_int.h
+++ b/contrib/intarray/_int.h
@@ -1,3 +1,6 @@
+#ifndef ___INT_H__
+#define ___INT_H__
+
#include "postgres.h"
#include <float.h>
@@ -171,3 +174,5 @@ int compDESC(const void *a, const void *b);
if (ARRNELEMS(a) > 1) \
qsort((void*)ARRPTR(a), ARRNELEMS(a),sizeof(int4), \
(direction) ? compASC : compDESC )
+
+#endif
diff --git a/contrib/pgcrypto/pgcrypto.h b/contrib/pgcrypto/pgcrypto.h
index 8092f86846..06d8787a1a 100644
--- a/contrib/pgcrypto/pgcrypto.h
+++ b/contrib/pgcrypto/pgcrypto.h
@@ -32,6 +32,8 @@
#ifndef _PG_CRYPTO_H
#define _PG_CRYPTO_H
+#include "fmgr.h"
+
/* exported functions */
Datum pg_digest(PG_FUNCTION_ARGS);
Datum pg_digest_exists(PG_FUNCTION_ARGS);
diff --git a/contrib/tablefunc/tablefunc.h b/contrib/tablefunc/tablefunc.h
index 3c4ed03c2f..f425b42fc1 100644
--- a/contrib/tablefunc/tablefunc.h
+++ b/contrib/tablefunc/tablefunc.h
@@ -31,6 +31,8 @@
#ifndef TABLEFUNC_H
#define TABLEFUNC_H
+#include "fmgr.h"
+
/*
* External declarations
*/
diff --git a/contrib/tsearch2/common.h b/contrib/tsearch2/common.h
index d2f4cd66a1..c33507e9ac 100644
--- a/contrib/tsearch2/common.h
+++ b/contrib/tsearch2/common.h
@@ -1,11 +1,9 @@
#ifndef __TS_COMMON_H__
#define __TS_COMMON_H__
+
#include "postgres.h"
#include "fmgr.h"
-
-#ifndef PG_NARGS
-#define PG_NARGS() (fcinfo->nargs)
-#endif
+#include "utils/array.h"
text *char2text(char *in);
text *charl2text(char *in, int len);
diff --git a/contrib/tsearch2/query.h b/contrib/tsearch2/query.h
index b4d586a684..bf1fe18c33 100644
--- a/contrib/tsearch2/query.h
+++ b/contrib/tsearch2/query.h
@@ -48,7 +48,7 @@ typedef struct
#define CLOSE 5
#define VALSTOP 6 /* for stop words */
-bool TS_execute(ITEM * curitem, void *checkval,
- bool calcnot, bool (*chkcond) (void *checkval, ITEM * val));
+bool TS_execute(ITEM *curitem, void *checkval,
+ bool calcnot, bool (*chkcond) (void *checkval, ITEM *val));
#endif
diff --git a/contrib/tsearch2/query_cleanup.h b/contrib/tsearch2/query_cleanup.h
index d47788a332..f6ce893609 100644
--- a/contrib/tsearch2/query_cleanup.h
+++ b/contrib/tsearch2/query_cleanup.h
@@ -1,7 +1,9 @@
#ifndef __REWRITE_H__
#define __REWRITE_H__
-ITEM *clean_NOT_v2(ITEM * ptr, int4 *len);
-ITEM *clean_fakeval_v2(ITEM * ptr, int4 *len);
+#include "query.h"
+
+ITEM *clean_NOT_v2(ITEM *ptr, int4 *len);
+ITEM *clean_fakeval_v2(ITEM *ptr, int4 *len);
#endif
diff --git a/contrib/tsearch2/query_util.h b/contrib/tsearch2/query_util.h
index 484c7f383c..5ed98e628d 100644
--- a/contrib/tsearch2/query_util.h
+++ b/contrib/tsearch2/query_util.h
@@ -5,6 +5,7 @@
#include "utils/memutils.h"
#include "query.h"
+#include "executor/spi.h"
typedef struct QTNode
{
diff --git a/contrib/tsearch2/snowball/header.h b/contrib/tsearch2/snowball/header.h
index 0b18ac6768..cbc422b73f 100644
--- a/contrib/tsearch2/snowball/header.h
+++ b/contrib/tsearch2/snowball/header.h
@@ -4,7 +4,7 @@
#include "api.h"
-#define HEAD 2*sizeof(int)
+#define HEAD (2 * sizeof(int))
#define SIZE(p) ((int *)(p))[-1]
#define SET_SIZE(p, n) ((int *)(p))[-1] = n
diff --git a/contrib/tsearch2/ts_stat.h b/contrib/tsearch2/ts_stat.h
index 7d16336045..358b68c808 100644
--- a/contrib/tsearch2/ts_stat.h
+++ b/contrib/tsearch2/ts_stat.h
@@ -7,6 +7,7 @@
#include "access/itup.h"
#include "utils/builtins.h"
#include "storage/bufpage.h"
+#include "tsvector.h"
typedef struct
{
diff --git a/contrib/userlock/user_locks.h b/contrib/userlock/user_locks.h
index e00735d693..f7cdc89a09 100644
--- a/contrib/userlock/user_locks.h
+++ b/contrib/userlock/user_locks.h
@@ -1,6 +1,8 @@
#ifndef USER_LOCKS_H
#define USER_LOCKS_H
+#include "storage/lock.h"
+
extern int user_lock(uint32 id1, uint32 id2, LOCKMODE lockmode);
extern int user_unlock(uint32 id1, uint32 id2, LOCKMODE lockmode);
extern int user_write_lock(uint32 id1, uint32 id2);