1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-05 09:14:03 +00:00

ar and sr (and their netgraph cousins) don't appear to be 64-bit clean, so

disable them on all but i386.
This commit is contained in:
Warner Losh 2005-01-27 01:45:15 +00:00
parent 092b24f520
commit fe9ec26797
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=140884
2 changed files with 8 additions and 3 deletions

View File

@ -441,7 +441,7 @@ _smbfs= smbfs
_sound= sound
_splash= splash
_sppp= sppp
_sr= sr
#_sr= sr not 64bit clean
_streams= streams
_wi= wi
_xe= xe

View File

@ -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