Extented 'arm' case to 'aarch64' on BSD.
This commit is contained in:
parent
947d1c7ecf
commit
cf44a4dda3
|
@ -116,7 +116,7 @@ elif host_machine.system().endswith('bsd')
|
||||||
if host_machine.system() == 'netbsd' or host_machine.system() == 'openbsd'
|
if host_machine.system() == 'netbsd' or host_machine.system() == 'openbsd'
|
||||||
os_dep += cc.find_library('i386')
|
os_dep += cc.find_library('i386')
|
||||||
endif
|
endif
|
||||||
elif host_machine.cpu_family() == 'arm'
|
elif host_machine.cpu_family() == 'arm' or host_machine.cpu_family() == 'aarch64'
|
||||||
srcs_xorg_os_support += 'bsd/arm_video.c'
|
srcs_xorg_os_support += 'bsd/arm_video.c'
|
||||||
elif host_machine.cpu_family() == 'ppc' or host_machine.cpu_family() == 'ppc64'
|
elif host_machine.cpu_family() == 'ppc' or host_machine.cpu_family() == 'ppc64'
|
||||||
srcs_xorg_os_support += 'bsd/ppc_video.c'
|
srcs_xorg_os_support += 'bsd/ppc_video.c'
|
||||||
|
|
Loading…
Reference in New Issue