Changed make to gmake.

Added needed include file.
This commit is contained in:
Bruce Momjian 1996-10-31 05:55:24 +00:00
parent 4cf9d03ec7
commit 34945055a8
2 changed files with 4 additions and 3 deletions

View File

@ -4,7 +4,7 @@
# Makefile for tcop
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/tcop/Makefile,v 1.1 1996/10/27 09:52:53 bryanh Exp $
# $Header: /cvsroot/pgsql/src/backend/tcop/Makefile,v 1.2 1996/10/31 05:55:23 momjian Exp $
#
#-------------------------------------------------------------------------
@ -28,7 +28,7 @@ SUBSYS.o: $(OBJS)
utility.o: ../parse.h
../parse.h:
make -C .. parse.h
gmake -C .. parse.h
dep: ../parse.h
$(CC) -MM $(INCLUDE_OPT) *.c >depend

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/Attic/aclchk.c,v 1.1.1.1 1996/07/09 06:21:59 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/Attic/aclchk.c,v 1.2 1996/10/31 05:55:24 momjian Exp $
*
* NOTES
* See acl.h.
@ -26,6 +26,7 @@
#include "catalog/catalog.h"
#include "catalog/catname.h"
#include "catalog/pg_group.h"
#include "catalog/pg_operator.h"
#include "catalog/pg_user.h"
#include "utils/syscache.h"
#include "parser/catalog_utils.h"