diff options
| author | Marc G. Fournier | 1997-12-17 04:44:50 +0000 |
|---|---|---|
| committer | Marc G. Fournier | 1997-12-17 04:44:50 +0000 |
| commit | 9ef6b32c4711f16b93cd51ce4bcf48c06a53f729 (patch) | |
| tree | a24c1b56e0e4e591bfd1abd613173b71ec87da77 /src/backend/commands/Makefile | |
| parent | e2d9501094815b141eff6c9338897068eb5868db (diff) | |
Makefile cleaned up
async.c: #include <port-protos.h> surrounded by an #ifdef HAVE_STRDUP
vacuum.c: #include <port-protos.h> commented out...can someone comment as
to why it was included, as it doesn't seem to have any effect
under FreeBSD so far...would like some sort of #ifdef wrapper
like async.c if possible
Diffstat (limited to 'src/backend/commands/Makefile')
| -rw-r--r-- | src/backend/commands/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/backend/commands/Makefile b/src/backend/commands/Makefile index 9e57883deba..6b8e06d93c9 100644 --- a/src/backend/commands/Makefile +++ b/src/backend/commands/Makefile @@ -4,16 +4,18 @@ # Makefile for commands # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/backend/commands/Makefile,v 1.8 1997/12/04 00:26:44 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/backend/commands/Makefile,v 1.9 1997/12/17 04:44:47 scrappy Exp $ # #------------------------------------------------------------------------- SRCDIR = ../.. include ../../Makefile.global -INCLUDE_OPT = -I.. \ - -I../port/$(PORTNAME) \ - -I../../include +INCLUDE_OPT = -I.. + +ifdef PORTNAME +INCLUDE_OPT+=-I../port/$(PORTNAME) +endif CFLAGS+=$(INCLUDE_OPT) |
