diff options
| author | Bryan Henderson | 1996-11-18 01:43:55 +0000 |
|---|---|---|
| committer | Bryan Henderson | 1996-11-18 01:43:55 +0000 |
| commit | e780f0fef34a4078d8eaebda5621f99c034b806b (patch) | |
| tree | badfb3fa2d663ef0c49f2f2ced7ec8e49252d791 /src/interfaces/libpq++/Makefile | |
| parent | 529189f407429998779b49dc88b28c8e51743677 (diff) | |
Ignore compiler warnings, because we can't escape "abstract declarator used
as declaration".
Diffstat (limited to 'src/interfaces/libpq++/Makefile')
| -rw-r--r-- | src/interfaces/libpq++/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/interfaces/libpq++/Makefile b/src/interfaces/libpq++/Makefile index 90e9a770c22..941c07da4f2 100644 --- a/src/interfaces/libpq++/Makefile +++ b/src/interfaces/libpq++/Makefile @@ -7,14 +7,18 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/Makefile,v 1.4 1996/11/14 10:25:54 bryanh Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/Makefile,v 1.5 1996/11/18 01:43:54 bryanh Exp $ # #------------------------------------------------------------------------- SRCDIR= .. include ../Makefile.global -CXXFLAGS= $(CFLAGS) +# We have to override -Werror, which makes warnings, fatal, because we +# inevitably get the warning, "abstract declarator used as declaration" +# because of our inclusion of c.h and we don't know how to stop that. + +CXXFLAGS= $(CFLAGS) -Wno-error INCLUDE_OPT= \ -I../backend \ |
