diff options
author | emax <emax@FreeBSD.org> | 2004-07-07 22:48:30 +0000 |
---|---|---|
committer | emax <emax@FreeBSD.org> | 2004-07-07 22:48:30 +0000 |
commit | 3c9dfc991900f60a7d65478c35ff17c72765edf7 (patch) | |
tree | f6ddd5712edfc5aa266fb537eaa2b34af4cd7630 /sys/modules/netgraph/Makefile | |
parent | 78dfca395175fd86f8c8faaf75b1e5b0337884c0 (diff) | |
download | FreeBSD-src-3c9dfc991900f60a7d65478c35ff17c72765edf7.zip FreeBSD-src-3c9dfc991900f60a7d65478c35ff17c72765edf7.tar.gz |
Make bluetooth compile on all platforms
Reviewed by: imp, ru
Diffstat (limited to 'sys/modules/netgraph/Makefile')
-rw-r--r-- | sys/modules/netgraph/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/sys/modules/netgraph/Makefile b/sys/modules/netgraph/Makefile index 7d52da4..150177c 100644 --- a/sys/modules/netgraph/Makefile +++ b/sys/modules/netgraph/Makefile @@ -40,15 +40,12 @@ SUBDIR= UI \ vjc \ vlan -.if !defined(NOCRYPT) && exists(${.CURDIR}/../../crypto/rc4/rc4.c) -_mppc= mppc -.endif - -.if ${MACHINE_ARCH} == "i386" -# Things that don't compile on alpha or are aout specific: .if !defined(NO_BLUETOOTH) || defined(ALL_MODULES) _bluetooth= bluetooth .endif + +.if !defined(NOCRYPT) && exists(${.CURDIR}/../../crypto/rc4/rc4.c) +_mppc= mppc .endif .include <bsd.subdir.mk> |