diff options
author | Marc G. Fournier | 1997-01-23 16:04:25 +0000 |
---|---|---|
committer | Marc G. Fournier | 1997-01-23 16:04:25 +0000 |
commit | f0ff9ac0c2b8d713bc4719c6c7592c9f8bfdc325 (patch) | |
tree | e321369c8ffc0273b4d73cd4d6a2929005c9eff0 /src/interfaces/libpgtcl/Makefile | |
parent | e1e8301cdf7e21adb113e4a00dcbdb9c183791c7 (diff) |
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?
Diffstat (limited to 'src/interfaces/libpgtcl/Makefile')
-rw-r--r-- | src/interfaces/libpgtcl/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/interfaces/libpgtcl/Makefile b/src/interfaces/libpgtcl/Makefile index a9853c1d0bf..f6189a6291d 100644 --- a/src/interfaces/libpgtcl/Makefile +++ b/src/interfaces/libpgtcl/Makefile @@ -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) |