diff options
author | snj <snj@pkgsrc.org> | 2004-03-22 23:29:12 +0000 |
---|---|---|
committer | snj <snj@pkgsrc.org> | 2004-03-22 23:29:12 +0000 |
commit | c78a5b53a83b4e67690aabdd08cbf9385b7e1737 (patch) | |
tree | c31eef0f1a35520fc44667e360ab1c492206dbfc /databases/libpqxx | |
parent | f25bc47a713833494d319b481d6939753c096cbd (diff) | |
download | pkgsrc-c78a5b53a83b4e67690aabdd08cbf9385b7e1737.tar.gz |
Fix build with gcc2 on sparc64.
Diffstat (limited to 'databases/libpqxx')
-rw-r--r-- | databases/libpqxx/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/databases/libpqxx/Makefile b/databases/libpqxx/Makefile index b973805d610..4b9f3be484c 100644 --- a/databases/libpqxx/Makefile +++ b/databases/libpqxx/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2004/02/14 18:26:27 jmmv Exp $ +# $NetBSD: Makefile,v 1.8 2004/03/22 23:29:12 snj Exp $ # .include "../../databases/libpqxx/Makefile.common" @@ -18,5 +18,8 @@ PG_PREFIX= ${BUILDLINK_PREFIX.postgresql-lib} CONFIGURE_ARGS+= --with-postgres-lib=${PG_PREFIX}/lib CONFIGURE_ARGS+= --with-postgres-include=${PG_PREFIX}/include/postgresql +# Avoid an ICE in gcc2 on sparc64 +CONFIGURE_ENV+= F77=${FALSE} + .include "../../databases/postgresql-lib/buildlink2.mk" .include "../../mk/bsd.pkg.mk" |