diff options
author | marino <marino> | 2012-10-17 16:06:09 +0000 |
---|---|---|
committer | marino <marino> | 2012-10-17 16:06:09 +0000 |
commit | 2521f38fb1ea6e6858306664e575954920ac22b2 (patch) | |
tree | ce391bd8fa68b314e228001d991c252edfdcfe5e | |
parent | 0794aa1c8213198b327c92db73f14319f0894e70 (diff) | |
download | pkgsrc-2521f38fb1ea6e6858306664e575954920ac22b2.tar.gz |
databases/postgresql91-client: Revert gcc46+ warning flag
GCC 4.1 does not recognize Wno-unused-but-set-variable, and setting it
breaks the build. Remove the flag now and plan to fix the gcc46+ build
another way later.
-rw-r--r-- | databases/postgresql91-client/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/databases/postgresql91-client/Makefile b/databases/postgresql91-client/Makefile index 44a2e555ad0..a2aec921d92 100644 --- a/databases/postgresql91-client/Makefile +++ b/databases/postgresql91-client/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2012/10/07 10:24:54 marino Exp $ +# $NetBSD: Makefile,v 1.10 2012/10/17 16:06:09 marino Exp $ PKGNAME= ${DISTNAME:C/-/91-client-/} COMMENT= PostgreSQL database client programs @@ -42,9 +42,6 @@ CONF_FILES+= share/postgresql/${f}.sample ${PKG_SYSCONFDIR}/${f} # XXX work around core dumps with the native libedit USE_GNU_READLINE= yes -# Silence unused but set variable warnings from GCC4.7 -CFLAGS+= -Wno-unused-but-set-variable - .include "../../devel/readline/buildlink3.mk" .include "../../devel/zlib/buildlink3.mk" .include "../../security/openssl/buildlink3.mk" |