diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-05-27 14:28:40 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-05-27 14:28:40 +0000 |
commit | 781a1eb99ab983efb7b8054e203c77671c6e00d6 (patch) | |
tree | b8318d19fdec2ce8506618aa3aad9059db6ba7ac | |
parent | 0d5f7ce11c9805100ba9ebac528281e98011824b (diff) | |
download | postgresql-781a1eb99ab983efb7b8054e203c77671c6e00d6.tar.gz postgresql-781a1eb99ab983efb7b8054e203c77671c6e00d6.zip |
I am not sure if libpq++ will compile with non g++ compilers,
but the Makefile does break non g++.
<<mak.patch>>
Andreas
-rw-r--r-- | src/interfaces/libpq++/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpq++/Makefile.in b/src/interfaces/libpq++/Makefile.in index 6c6e3925d27..f661d9bf6d1 100644 --- a/src/interfaces/libpq++/Makefile.in +++ b/src/interfaces/libpq++/Makefile.in @@ -6,7 +6,7 @@ # Copyright (c) 1994, Regents of the University of California # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/Makefile.in,v 1.13 1999/05/26 16:19:48 momjian Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/Makefile.in,v 1.14 1999/05/27 14:28:40 momjian Exp $ # #------------------------------------------------------------------------- @@ -55,7 +55,7 @@ include $(SRCDIR)/Makefile.shlib # Pull shared-lib CFLAGS into CXXFLAGS -CXXFLAGS+= $(CFLAGS) -Wno-unused +CXXFLAGS+= $(CFLAGS) .PHONY: examples |