summaryrefslogtreecommitdiff
path: root/databases/mysql5-client
diff options
context:
space:
mode:
authorgrant <grant@pkgsrc.org>2006-03-03 04:00:09 +0000
committergrant <grant@pkgsrc.org>2006-03-03 04:00:09 +0000
commit272041c8de24f56a536c0cec709a5f1ae7ddb6bd (patch)
tree7d6380499bd8114f224e08e7559ffc2c569b37b7 /databases/mysql5-client
parent8cfc3ff4116b88aa34cdf3df37ad6c3b305c9314 (diff)
downloadpkgsrc-272041c8de24f56a536c0cec709a5f1ae7ddb6bd.tar.gz
disable assembler stuff on Solaris/x86, because it's likely to work
only with GNU as(1). XXX this condition should probably be reversed to the positive case, XXX not the negative case so that it works on more platforms.
Diffstat (limited to 'databases/mysql5-client')
-rw-r--r--databases/mysql5-client/Makefile.common5
1 files changed, 3 insertions, 2 deletions
diff --git a/databases/mysql5-client/Makefile.common b/databases/mysql5-client/Makefile.common
index bf4d301aa07..1f0f29d7f60 100644
--- a/databases/mysql5-client/Makefile.common
+++ b/databases/mysql5-client/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.6 2006/01/23 17:57:47 xtraeme Exp $
+# $NetBSD: Makefile.common,v 1.7 2006/03/03 04:00:09 grant Exp $
DISTNAME= mysql-5.0.18
CATEGORIES= databases
@@ -66,7 +66,8 @@ CONFIGURE_ARGS+= --with-vio
CONFIGURE_ARGS+= --with-charset=${MYSQL_CHARSET:Q}
CONFIGURE_ARGS+= --with-extra-charsets=${MYSQL_EXTRA_CHARSET:Q}
-.if !empty(MACHINE_ARCH:Mi386) && ${OPSYS} != "Interix"
+.if !empty(MACHINE_ARCH:Mi386) && ${OPSYS} != "Interix" && \
+ ${OPSYS} != "SunOS"
CONFIGURE_ARGS+= --enable-assembler
.endif