summaryrefslogtreecommitdiff
path: root/comms
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2003-07-05 12:00:55 +0000
committerKris Kennaway <kris@FreeBSD.org>2003-07-05 12:00:55 +0000
commit5aa42df414f9266eb02686969b3d828eff5b8dd7 (patch)
treebe64f61b2747c939ecd6b7c607605199e2653682 /comms
parent- Update to 2.03 (diff)
Invert the sense of the test for 64-bit architectures, since we only
support one 32-bit platform.
Notes
Notes: svn path=/head/; revision=84234
Diffstat (limited to 'comms')
-rw-r--r--comms/conserver-com/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/comms/conserver-com/Makefile b/comms/conserver-com/Makefile
index 4b06bdc6ab08..189c2d260e37 100644
--- a/comms/conserver-com/Makefile
+++ b/comms/conserver-com/Makefile
@@ -28,7 +28,7 @@ DEFAULTHOST?= localhost
.include <bsd.port.pre.mk>
-.if ${ARCH} == "alpha" || ${ARCH} == "sparc64" || ${ARCH} == "ia64"
+.if ${ARCH} != "i386"
CONFIGURE_ARGS+=--with-64bit
.endif