Commit f0ff9ac0 authored by Marc G. Fournier's avatar Marc G. Fournier

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?
parent e1e8301c
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
# #
# #
# IDENTIFICATION # 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 ...@@ -25,6 +25,11 @@ ifdef KRBVERS
CFLAGS+= $(KRBFLAGS) CFLAGS+= $(KRBFLAGS)
endif endif
ifeq ($(CC), gcc)
CFLAGS+= -Wno-error
endif
ifeq ($(PORTNAME), linux) ifeq ($(PORTNAME), linux)
ifdef LINUX_ELF ifdef LINUX_ELF
ifeq ($(CC), gcc) ifeq ($(CC), gcc)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment