Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit daecd97

Browse files
committed
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.
1 parent 89e2a95 commit daecd97

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/backend/postmaster/postmaster.c

+4-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
*
3838
*
3939
* IDENTIFICATION
40-
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.493 2006/07/14 14:52:22 momjian Exp $
40+
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.494 2006/07/15 15:47:17 tgl Exp $
4141
*
4242
* NOTES
4343
*
@@ -92,7 +92,9 @@
9292
#include <DNSServiceDiscovery/DNSServiceDiscovery.h>
9393
#endif
9494

95+
#include "access/transam.h"
9596
#include "bootstrap/bootstrap.h"
97+
#include "catalog/pg_control.h"
9698
#include "lib/dllist.h"
9799
#include "libpq/auth.h"
98100
#include "libpq/ip.h"
@@ -107,6 +109,7 @@
107109
#include "postmaster/syslogger.h"
108110
#include "storage/fd.h"
109111
#include "storage/ipc.h"
112+
#include "storage/pg_shmem.h"
110113
#include "storage/pmsignal.h"
111114
#include "storage/proc.h"
112115
#include "tcop/tcopprot.h"

src/backend/storage/ipc/ipci.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/storage/ipc/ipci.c,v 1.85 2006/07/14 14:52:22 momjian Exp $
11+
* $PostgreSQL: pgsql/src/backend/storage/ipc/ipci.c,v 1.86 2006/07/15 15:47:17 tgl Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -22,6 +22,7 @@
2222
#include "miscadmin.h"
2323
#include "pgstat.h"
2424
#include "postmaster/bgwriter.h"
25+
#include "postmaster/postmaster.h"
2526
#include "storage/freespace.h"
2627
#include "storage/ipc.h"
2728
#include "storage/pg_shmem.h"

0 commit comments

Comments
 (0)