More Makefile cleanups

Add #include "postgres.h" as required
This commit is contained in:
Marc G. Fournier 1996-10-31 10:42:56 +00:00
parent ae1d931e88
commit eb501f1cd3
2 changed files with 7 additions and 6 deletions

View File

@ -4,16 +4,14 @@
# Makefile for nodes
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/nodes/Makefile,v 1.1 1996/10/27 09:48:06 bryanh Exp $
# $Header: /cvsroot/pgsql/src/backend/nodes/Makefile,v 1.2 1996/10/31 10:42:55 scrappy Exp $
#
#-------------------------------------------------------------------------
SRCDIR = ../..
include ../../Makefile.global
INCLUDE_OPT = -I.. \
-I../port/$(PORTNAME) \
-I../include \
INCLUDE_OPT = -I../port/$(PORTNAME) \
-I../../include
CFLAGS+=$(INCLUDE_OPT)

View File

@ -7,11 +7,14 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/nodes/nodeFuncs.c,v 1.1.1.1 1996/07/09 06:21:32 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/nodes/nodeFuncs.c,v 1.2 1996/10/31 10:42:56 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#include "c.h"
#include <sys/types.h>
#include "postgres.h"
#include "nodes/primnodes.h"
#include "nodes/plannodes.h"