summaryrefslogtreecommitdiff
path: root/src/backend/postmaster
diff options
context:
space:
mode:
authorTom Lane2006-07-15 15:47:17 +0000
committerTom Lane2006-07-15 15:47:17 +0000
commitdaecd9761720b181a9221fa57d7f33c825e96e41 (patch)
treea7322f2588ec4e11f246063927744c5dd3b00384 /src/backend/postmaster
parent89e2a955894168265e73b1be29da95debefdf169 (diff)
Put back some more not-so-unused-as-all-that #includes. This un-breaks
the EXEC_BACKEND code on my machines, so hopefully it will fix the Windows buildfarm members.
Diffstat (limited to 'src/backend/postmaster')
-rw-r--r--src/backend/postmaster/postmaster.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c
index 0df4508adb6..aa0f4e3418c 100644
--- a/src/backend/postmaster/postmaster.c
+++ b/src/backend/postmaster/postmaster.c
@@ -37,7 +37,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.493 2006/07/14 14:52:22 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.494 2006/07/15 15:47:17 tgl Exp $
*
* NOTES
*
@@ -92,7 +92,9 @@
#include <DNSServiceDiscovery/DNSServiceDiscovery.h>
#endif
+#include "access/transam.h"
#include "bootstrap/bootstrap.h"
+#include "catalog/pg_control.h"
#include "lib/dllist.h"
#include "libpq/auth.h"
#include "libpq/ip.h"
@@ -107,6 +109,7 @@
#include "postmaster/syslogger.h"
#include "storage/fd.h"
#include "storage/ipc.h"
+#include "storage/pg_shmem.h"
#include "storage/pmsignal.h"
#include "storage/proc.h"
#include "tcop/tcopprot.h"