Fix from Andrew for compiling libpgtcl...basically, switch off -Werror,

which probably isn't needed, since we are going to take off -Werror
anyway, right?
This commit is contained in:
Marc G. Fournier 1997-01-23 16:04:25 +00:00
parent e1e8301cdf
commit f0ff9ac0c2
1 changed files with 6 additions and 1 deletions

View File

@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile,v 1.8 1997/01/10 18:55:14 momjian Exp $
# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile,v 1.9 1997/01/23 16:04:25 scrappy Exp $
#
#-------------------------------------------------------------------------
@ -25,6 +25,11 @@ ifdef KRBVERS
CFLAGS+= $(KRBFLAGS)
endif
ifeq ($(CC), gcc)
CFLAGS+= -Wno-error
endif
ifeq ($(PORTNAME), linux)
ifdef LINUX_ELF
ifeq ($(CC), gcc)