diff options
author | snj <snj@pkgsrc.org> | 2004-03-23 04:34:17 +0000 |
---|---|---|
committer | snj <snj@pkgsrc.org> | 2004-03-23 04:34:17 +0000 |
commit | 5d3caaf25183ce594ceb71f2b74e1ef24fe28463 (patch) | |
tree | 120782db74d4ef465fae60376589590d33292c00 | |
parent | fd789b5a585c05013d931a193a4b08f750ea7271 (diff) | |
download | pkgsrc-5d3caaf25183ce594ceb71f2b74e1ef24fe28463.tar.gz |
Fix build with gcc2 on sparc64.
-rw-r--r-- | databases/mysql4-client/Makefile.common | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/databases/mysql4-client/Makefile.common b/databases/mysql4-client/Makefile.common index f94fb1808e1..031e8d8cafd 100644 --- a/databases/mysql4-client/Makefile.common +++ b/databases/mysql4-client/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.5 2004/03/13 12:09:36 recht Exp $ +# $NetBSD: Makefile.common,v 1.6 2004/03/23 04:34:17 snj Exp $ DISTNAME= mysql-4.0.18 CATEGORIES= databases @@ -53,6 +53,9 @@ CONFIGURE_ARGS+= --with-vio CONFIGURE_ARGS+= --with-charset=${MYSQL_CHARSET} CONFIGURE_ARGS+= --with-extra-charsets=${MYSQL_EXTRA_CHARSET} +# Avoid an ICE in gcc2 on sparc64 +CONFIGURE_ENV+= F77=${FALSE} + CPPFLAGS+= -Dunix # force HAVE_CURSES_H on Solaris since the configure script is broken |