summaryrefslogtreecommitdiff
path: root/databases/mysql4-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
commited05ca13834eee091335007924f03977950cc304 (patch)
tree7d6380499bd8114f224e08e7559ffc2c569b37b7 /databases/mysql4-client
parentf7baf42424c5413f722ed0596741c1c1be85c39d (diff)
downloadpkgsrc-ed05ca13834eee091335007924f03977950cc304.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/mysql4-client')
-rw-r--r--databases/mysql4-client/Makefile.common5
1 files changed, 3 insertions, 2 deletions
diff --git a/databases/mysql4-client/Makefile.common b/databases/mysql4-client/Makefile.common
index 0ff36db5c95..18173f0634b 100644
--- a/databases/mysql4-client/Makefile.common
+++ b/databases/mysql4-client/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.49 2006/01/23 17:57:47 xtraeme Exp $
+# $NetBSD: Makefile.common,v 1.50 2006/03/03 04:00:09 grant Exp $
DISTNAME= mysql-4.1.15
CATEGORIES= databases
@@ -65,7 +65,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