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

Commit daa93cf

Browse files
committed
Clean up Makefile, make sure that postmaster.c compiles
1 parent b216c1e commit daa93cf

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/backend/postmaster/Makefile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,14 @@
44
# Makefile for postmaster
55
#
66
# IDENTIFICATION
7-
# $Header: /cvsroot/pgsql/src/backend/postmaster/Makefile,v 1.1 1996/10/27 09:51:20 bryanh Exp $
7+
# $Header: /cvsroot/pgsql/src/backend/postmaster/Makefile,v 1.2 1996/11/03 04:48:27 scrappy Exp $
88
#
99
#-------------------------------------------------------------------------
1010

1111
SRCDIR = ../..
1212
include ../../Makefile.global
1313

14-
INCLUDE_OPT = -I.. \
15-
-I../port/$(PORTNAME) \
16-
-I../include \
14+
INCLUDE_OPT = -I../port/$(PORTNAME) \
1715
-I../../include
1816

1917
CFLAGS+=$(INCLUDE_OPT)

src/backend/postmaster/postmaster.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
*
1212
* IDENTIFICATION
13-
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.19 1996/10/30 00:36:59 bryanh Exp $
13+
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.20 1996/11/03 04:48:26 scrappy Exp $
1414
*
1515
* NOTES
1616
*
@@ -32,8 +32,9 @@
3232
*
3333
*-------------------------------------------------------------------------
3434
*/
35+
#include "postgres.h"
36+
3537
#include "libpq/pqsignal.h" /* substitute for <signal.h> */
36-
#include "config.h"
3738

3839
#include <string.h>
3940
#include <stdlib.h>
@@ -73,6 +74,7 @@
7374
#include "libpq/pqcomm.h"
7475
#include "miscadmin.h"
7576
#include "lib/dllist.h"
77+
#include "nodes/nodes.h"
7678
#include "utils/mcxt.h"
7779
#include "storage/proc.h"
7880
#include "utils/elog.h"

0 commit comments

Comments
 (0)