diff options
author | jklos <jklos> | 2009-08-15 01:30:57 +0000 |
---|---|---|
committer | jklos <jklos> | 2009-08-15 01:30:57 +0000 |
commit | aafb2c39b962496d99de59b12dbc6e02b25ee350 (patch) | |
tree | 5c3a4578a10a1fd5140e71c9660e22c58df1a384 /net | |
parent | f4afe787d378337bd07ac6434d78f3cd612a1068 (diff) | |
download | pkgsrc-aafb2c39b962496d99de59b12dbc6e02b25ee350.tar.gz |
Assembly language atomic operations don't work on NetBSD mipsel, so
disable them with CONFIGURE_ARGS.
Diffstat (limited to 'net')
-rw-r--r-- | net/bind96/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/net/bind96/Makefile b/net/bind96/Makefile index df676345921..7f2ad3628e1 100644 --- a/net/bind96/Makefile +++ b/net/bind96/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2009/07/29 00:16:33 reed Exp $ +# $NetBSD: Makefile,v 1.8 2009/08/15 01:30:57 jklos Exp $ DISTNAME= bind-${BIND_VERSION} PKGNAME= ${DISTNAME:S/-P1/pl1/} @@ -34,6 +34,9 @@ CONFIGURE_ARGS+= --sysconfdir=/etc CONFIGURE_ARGS+= --localstatedir=${VARBASE:Q} CONFIGURE_ARGS+= --disable-openssl-version-check CONFIGURE_ARGS+= --with-openssl=${SSLBASE:Q} +.if ${MACHINE_PLATFORM:MNetBSD-*-mipsel} != "" +CONFIGURE_ARGS+= --disable-atomic +.endif PKG_GROUPS_VARS+= BIND_GROUP PKG_USERS_VARS+= BIND_USER |