Cleaned out -I../.. -I../../include from Makefile

Added missing include files
This commit is contained in:
Marc G. Fournier 1996-10-31 08:28:53 +00:00
parent 367ade186f
commit f578f8fb68
4 changed files with 12 additions and 7 deletions

View File

@ -4,16 +4,14 @@
# Makefile for access/heap
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/access/heap/Makefile,v 1.1 1996/10/27 09:46:16 bryanh Exp $
# $Header: /cvsroot/pgsql/src/backend/access/heap/Makefile,v 1.2 1996/10/31 08:28:50 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,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.5 1996/10/21 05:59:44 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.6 1996/10/31 08:28:51 scrappy Exp $
*
*
* INTERFACE ROUTINES
@ -77,6 +77,7 @@
#include "catalog/pg_attribute.h"
#include "access/attnum.h"
#include "nodes/nodes.h"
#include "nodes/pg_list.h"
#include "access/tupdesc.h"
#include "storage/fd.h"
@ -102,6 +103,7 @@
#include "storage/itemid.h"
#include "storage/item.h"
#include "storage/page.h"
#include "storage/bufpage.h"
#include "access/heapam.h"

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Id: hio.c,v 1.5 1996/10/21 05:59:46 scrappy Exp $
* $Id: hio.c,v 1.6 1996/10/31 08:28:52 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@ -16,6 +16,7 @@
#include "catalog/pg_attribute.h"
#include "access/attnum.h"
#include "nodes/nodes.h"
#include "nodes/pg_list.h"
#include "access/tupdesc.h"
#include "storage/fd.h"
@ -39,6 +40,7 @@
#include "storage/itemid.h"
#include "storage/item.h"
#include "storage/off.h"
#include "storage/page.h"
#include "storage/bufpage.h"
#include "utils/tqual.h"

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/heap/Attic/stats.c,v 1.4 1996/10/21 05:59:49 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/heap/Attic/stats.c,v 1.5 1996/10/31 08:28:53 scrappy Exp $
*
* NOTES
* initam should be moved someplace else.
@ -19,6 +19,7 @@
#include "catalog/pg_attribute.h"
#include "access/attnum.h"
#include "nodes/nodes.h"
#include "nodes/pg_list.h"
#include "access/tupdesc.h"
#include "storage/fd.h"
@ -43,6 +44,8 @@
#include "access/heapam.h"
#include "utils/memutils.h"
#include "lib/fstack.h"
#include "nodes/memnodes.h"
#include "utils/mcxt.h"