aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/netgraph
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2005-01-27 01:45:15 +0000
committerWarner Losh <imp@FreeBSD.org>2005-01-27 01:45:15 +0000
commitfe9ec26797fe9a33580ef45d50d85b3a4f37ba79 (patch)
tree95e5732663e31a9358fa14966b2d86dc0baedbf5 /sys/modules/netgraph
parent092b24f52066a5a407c12e5776ceaa8ad837dc1b (diff)
downloadsrc-fe9ec26797fe9a33580ef45d50d85b3a4f37ba79.tar.gz
src-fe9ec26797fe9a33580ef45d50d85b3a4f37ba79.zip
ar and sr (and their netgraph cousins) don't appear to be 64-bit clean, so
disable them on all but i386.
Notes
Notes: svn path=/head/; revision=140884
Diffstat (limited to 'sys/modules/netgraph')
-rw-r--r--sys/modules/netgraph/Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/modules/netgraph/Makefile b/sys/modules/netgraph/Makefile
index ac4eb39676f5..90165f84fe5a 100644
--- a/sys/modules/netgraph/Makefile
+++ b/sys/modules/netgraph/Makefile
@@ -33,14 +33,19 @@ SUBDIR= async \
socket \
split \
sppp \
- sync_ar \
- sync_sr \
+ ${_sync_ar} \
+ ${_sync_sr} \
tee \
tty \
UI \
vjc \
vlan
+.if ${MACHINE_ARCH} == "i386"
+_sync_ar= sync_ar
+_sync_sr= sync_sr
+.endif
+
.if !defined(NO_BLUETOOTH) || defined(ALL_MODULES)
_bluetooth= bluetooth
.endif