From 21badba151f12fe80921c2791772482d00f728d2 Mon Sep 17 00:00:00 2001
From: Tom Lane <tgl@sss.pgh.pa.us>
Date: Sun, 17 Jan 1999 03:04:57 +0000
Subject: [PATCH] Replace direct inclusions of c.h with inclusion of
 postgres.h, to ensure that config.h is included as well.

---
 contrib/fulltextindex/fti.c          | 2 +-
 src/backend/port/dynloader/aix.c     | 2 +-
 src/backend/port/dynloader/hpux.c    | 4 ++--
 src/backend/port/dynloader/ultrix4.c | 4 ++--
 src/backend/storage/buffer/s_lock.c  | 5 ++---
 src/backend/utils/error/format.c     | 4 ++--
 src/backend/utils/mmgr/oset.c        | 4 ++--
 src/backend/utils/mmgr/palloc.c      | 4 ++--
 src/include/libpq/pqcomm.h           | 4 ++--
 src/interfaces/libpq/pqsignal.h      | 4 ++--
 10 files changed, 18 insertions(+), 19 deletions(-)

diff --git a/contrib/fulltextindex/fti.c b/contrib/fulltextindex/fti.c
index 33a7666fe77..e5539b44576 100644
--- a/contrib/fulltextindex/fti.c
+++ b/contrib/fulltextindex/fti.c
@@ -1,6 +1,6 @@
+#include "postgres.h"
 #include "executor/spi.h"
 #include "commands/trigger.h"
-#include "c.h"		/* endof() macro */
 #include <ctype.h>	/* tolower */
 #include <stdio.h>	/* debugging */
 
diff --git a/src/backend/port/dynloader/aix.c b/src/backend/port/dynloader/aix.c
index 4e1f62cedf8..401b08b1afb 100644
--- a/src/backend/port/dynloader/aix.c
+++ b/src/backend/port/dynloader/aix.c
@@ -12,8 +12,8 @@
 #include <sys/ldr.h>
 #include <a.out.h>
 #include <ldfcn.h>
+#include "postgres.h"
 #include "dynloader.h"
-#include "c.h"
 
 /*
  * We simulate dlopen() et al. through a call to load. Because AIX has
diff --git a/src/backend/port/dynloader/hpux.c b/src/backend/port/dynloader/hpux.c
index 4e8f252bce8..e237572337c 100644
--- a/src/backend/port/dynloader/hpux.c
+++ b/src/backend/port/dynloader/hpux.c
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/port/dynloader/hpux.c,v 1.5 1998/09/01 03:24:39 momjian Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/port/dynloader/hpux.c,v 1.6 1999/01/17 03:04:50 tgl Exp $
  *
  *	NOTES
  *		all functions are defined here -- it's impossible to trace the
@@ -19,7 +19,7 @@
 #include <stdio.h>
 #include <a.out.h>
 #include <dl.h>
-#include "c.h"
+#include "postgres.h"
 #include "fmgr.h"
 #include "utils/dynamic_loader.h"
 #include "dynloader.h"
diff --git a/src/backend/port/dynloader/ultrix4.c b/src/backend/port/dynloader/ultrix4.c
index 51abd4bb4aa..fe786c6921b 100644
--- a/src/backend/port/dynloader/ultrix4.c
+++ b/src/backend/port/dynloader/ultrix4.c
@@ -9,7 +9,7 @@
  *
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/port/dynloader/ultrix4.c,v 1.3 1998/09/01 03:24:41 momjian Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/port/dynloader/ultrix4.c,v 1.4 1999/01/17 03:04:50 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -17,7 +17,7 @@
 #include <postgres.h>
 #include "dl.h"
 #include <utils/dynamic_loader.h>
-#include "c.h"
+#include "postgres.h"
 #include "fmgr.h"
 #include "port-protos.h"
 #include "utils/elog.h"
diff --git a/src/backend/storage/buffer/s_lock.c b/src/backend/storage/buffer/s_lock.c
index 9a6991b222f..6b43b08bb58 100644
--- a/src/backend/storage/buffer/s_lock.c
+++ b/src/backend/storage/buffer/s_lock.c
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/storage/buffer/Attic/s_lock.c,v 1.15 1998/12/26 18:15:53 momjian Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/storage/buffer/Attic/s_lock.c,v 1.16 1999/01/17 03:04:51 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -16,8 +16,7 @@
 #include <sys/time.h>
 #include <unistd.h>
 
-#include "config.h"
-#include "c.h"
+#include "postgres.h"
 #include "storage/s_lock.h"
 
 
diff --git a/src/backend/utils/error/format.c b/src/backend/utils/error/format.c
index a4e526083be..4cb92670be4 100644
--- a/src/backend/utils/error/format.c
+++ b/src/backend/utils/error/format.c
@@ -7,13 +7,13 @@
  *
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/format.c,v 1.8 1999/01/01 04:48:46 momjian Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/format.c,v 1.9 1999/01/17 03:04:52 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
 #include <stdio.h>
 #include <stdarg.h>
-#include "c.h"
+#include "postgres.h"
 
 #define FormMaxSize		1024
 #define FormMinSize		(FormMaxSize / 8)
diff --git a/src/backend/utils/mmgr/oset.c b/src/backend/utils/mmgr/oset.c
index 79c7dbe4f14..a076bc08118 100644
--- a/src/backend/utils/mmgr/oset.c
+++ b/src/backend/utils/mmgr/oset.c
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mmgr/Attic/oset.c,v 1.9 1998/09/01 03:27:05 momjian Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mmgr/Attic/oset.c,v 1.10 1999/01/17 03:04:53 tgl Exp $
  *
  * NOTE
  *	  XXX This is a preliminary implementation which lacks fail-fast
@@ -15,7 +15,7 @@
  *
  *-------------------------------------------------------------------------
  */
-#include "c.h"
+#include "postgres.h"
 
 #include "utils/memutils.h"		/* where declarations of this file goes */
 
diff --git a/src/backend/utils/mmgr/palloc.c b/src/backend/utils/mmgr/palloc.c
index 4862c92d966..9c50c3a3023 100644
--- a/src/backend/utils/mmgr/palloc.c
+++ b/src/backend/utils/mmgr/palloc.c
@@ -7,14 +7,14 @@
  *
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/utils/mmgr/Attic/palloc.c,v 1.8 1998/09/01 04:33:37 momjian Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/utils/mmgr/Attic/palloc.c,v 1.9 1999/01/17 03:04:54 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
 
 #include <string.h>
 
-#include "c.h"
+#include "postgres.h"
 
 #include "utils/mcxt.h"
 #include "utils/elog.h"
diff --git a/src/include/libpq/pqcomm.h b/src/include/libpq/pqcomm.h
index c246fdae99f..6645a669e60 100644
--- a/src/include/libpq/pqcomm.h
+++ b/src/include/libpq/pqcomm.h
@@ -6,7 +6,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: pqcomm.h,v 1.31 1999/01/17 01:45:42 tgl Exp $
+ * $Id: pqcomm.h,v 1.32 1999/01/17 03:04:55 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -23,7 +23,7 @@
 #include <netinet/in.h>
 #endif
 
-#include "c.h"
+#include "postgres.h"
 
 /* Define a generic socket address type. */
 
diff --git a/src/interfaces/libpq/pqsignal.h b/src/interfaces/libpq/pqsignal.h
index d86ad8c3464..6a40c5e20d9 100644
--- a/src/interfaces/libpq/pqsignal.h
+++ b/src/interfaces/libpq/pqsignal.h
@@ -6,7 +6,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: pqsignal.h,v 1.5 1998/09/01 04:40:15 momjian Exp $
+ * $Id: pqsignal.h,v 1.6 1999/01/17 03:04:57 tgl Exp $
  *
  * NOTES
  *	  This shouldn't be in libpq, but the monitor and some other
@@ -17,7 +17,7 @@
 #ifndef PQSIGNAL_H
 #define PQSIGNAL_H
 
-#include "c.h"
+#include "postgres.h"
 
 typedef void (*pqsigfunc) (int);
 
-- 
GitLab