]> granicus.if.org Git - postgresql/commitdiff
Put back some more not-so-unused-as-all-that #includes. This un-breaks
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 15 Jul 2006 15:47:17 +0000 (15:47 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 15 Jul 2006 15:47:17 +0000 (15:47 +0000)
the EXEC_BACKEND code on my machines, so hopefully it will fix the
Windows buildfarm members.

src/backend/postmaster/postmaster.c
src/backend/storage/ipc/ipci.c

index 0df4508adb6f7a7cc4401d7f39ba5df8202be1c0..aa0f4e3418c32a935e31b6f84596ee6f149b9288 100644 (file)
@@ -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"
 #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"
index 386d720952fbf3d3ba4b3f5aeece00d77f763d37..0b0bf77eee6e383523c8207bd21550cd4b5c786f 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/backend/storage/ipc/ipci.c,v 1.85 2006/07/14 14:52:22 momjian Exp $
+ *       $PostgreSQL: pgsql/src/backend/storage/ipc/ipci.c,v 1.86 2006/07/15 15:47:17 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -22,6 +22,7 @@
 #include "miscadmin.h"
 #include "pgstat.h"
 #include "postmaster/bgwriter.h"
+#include "postmaster/postmaster.h"
 #include "storage/freespace.h"
 #include "storage/ipc.h"
 #include "storage/pg_shmem.h"