diff options
author | 2002-12-03 19:15:06 +0000 | |
---|---|---|
committer | 2002-12-03 19:15:06 +0000 | |
commit | 4d1c94f3a4acec1481b328f0b93baf092632c3cd (patch) | |
tree | 28a2a417b6f0a6f0be477693b755791a26d4bb41 | |
parent | sync (diff) | |
download | wireguard-openbsd-4d1c94f3a4acec1481b328f0b93baf092632c3cd.tar.xz wireguard-openbsd-4d1c94f3a4acec1481b328f0b93baf092632c3cd.zip |
Compile wsmoused on alpha, as it can be used on vga displays.
-rw-r--r-- | etc/rc.conf | 4 | ||||
-rw-r--r-- | usr.sbin/wsmoused/Makefile | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/etc/rc.conf b/etc/rc.conf index b86b614585c..4900f8d837f 100644 --- a/etc/rc.conf +++ b/etc/rc.conf @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: rc.conf,v 1.81 2002/11/23 18:29:21 deraadt Exp $ +# $OpenBSD: rc.conf,v 1.82 2002/12/03 19:15:06 miod Exp $ # set these to "NO" to turn them off. otherwise, they're used as flags routed_flags=NO # for normal use: "-q" @@ -42,7 +42,7 @@ identd_flags=NO # for non-inetd use: "-b -u nobody -elo" # On some architectures, you must also disable console getty in /etc/ttys xdm_flags=NO # for normal use: "" -# For enabling console mouse support (i386 architecture only) +# For enabling console mouse support (i386 and alpha only) wsmoused_flags=NO # for ps/2 or usb mice: "", serial: "-p /dev/cua00" # set the following to "YES" to turn them on diff --git a/usr.sbin/wsmoused/Makefile b/usr.sbin/wsmoused/Makefile index f7847545c88..5bde2234429 100644 --- a/usr.sbin/wsmoused/Makefile +++ b/usr.sbin/wsmoused/Makefile @@ -1,6 +1,6 @@ -# $OpenBSD: Makefile,v 1.1 2001/04/14 04:47:40 aaron Exp $ +# $OpenBSD: Makefile,v 1.2 2002/12/03 19:15:07 miod Exp $ -.if ${MACHINE} == "i386" +.if ${MACHINE} == "i386" || ${MACHINE} == "alpha" PROG= wsmoused SRCS= wsmoused.c mouse_protocols.c @@ -12,7 +12,7 @@ NOPROG=yes .endif MAN= wsmoused.8 -MANSUBDIR= i386 +MANSUBDIR= i386 alpha .include <bsd.prog.mk> |