From 51059d7de31ce483ecc360105aa019f16462aa8d Mon Sep 17 00:00:00 2001 From: marcel Date: Mon, 28 Aug 2000 03:17:49 +0000 Subject: Don't enable Linuxulator support if not on an i386. PR: 20873 Submitted by: Christian Weisgerber --- sys/modules/3dfx/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/modules/3dfx/Makefile b/sys/modules/3dfx/Makefile index bbd7fd7..cdb773e 100644 --- a/sys/modules/3dfx/Makefile +++ b/sys/modules/3dfx/Makefile @@ -9,9 +9,11 @@ INCSRC= ../../sys CLEANFILES= pci.h +.if ${MACHINE_ARCH} == "i386" # This line enables linux ioctl handling by default # comment out if you don't want it TDFX_OPTS= "\#define TDFX_LINUX" +.endif # Uncomment this for debugging messages #CFLAGS+= -DDEBUG -- cgit v1.1