diff options
author | ben <ben@pkgsrc.org> | 2006-10-18 13:22:04 +0000 |
---|---|---|
committer | ben <ben@pkgsrc.org> | 2006-10-18 13:22:04 +0000 |
commit | 6a0cfb68e8428d7156856d4c8871ca3854f24e84 (patch) | |
tree | dc53d53a9f483b859677f951f3b137e9ecb2e3a4 /databases/mysql4-client | |
parent | 161946be5200661507d861fe65f397e50ad23ff2 (diff) | |
download | pkgsrc-6a0cfb68e8428d7156856d4c8871ca3854f24e84.tar.gz |
Disable i386 assembly optimizations on Darwin to fix a build failure.
Diffstat (limited to 'databases/mysql4-client')
-rw-r--r-- | databases/mysql4-client/Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/mysql4-client/Makefile.common b/databases/mysql4-client/Makefile.common index 3b5077ec358..e90f0fbc404 100644 --- a/databases/mysql4-client/Makefile.common +++ b/databases/mysql4-client/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.54 2006/08/31 12:42:42 seb Exp $ +# $NetBSD: Makefile.common,v 1.55 2006/10/18 13:22:04 ben Exp $ DISTNAME= mysql-4.1.21 CATEGORIES= databases @@ -66,7 +66,7 @@ CONFIGURE_ARGS+= --with-charset=${MYSQL_CHARSET:Q} CONFIGURE_ARGS+= --with-extra-charsets=${MYSQL_EXTRA_CHARSET:Q} .if !empty(MACHINE_ARCH:Mi386) && ${OPSYS} != "Interix" && \ - ${OPSYS} != "SunOS" + ${OPSYS} != "SunOS" && ${OPSYS} != "Darwin" CONFIGURE_ARGS+= --enable-assembler .endif |