mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-28 12:32:17 +02:00
Fix hardware detection on aix.
This commit is contained in:
parent
7d7487e85c
commit
aac9e56759
12
configure
vendored
12
configure
vendored
@ -2505,14 +2505,18 @@ windres_default="windres"
|
|||||||
|
|
||||||
nogas=":"
|
nogas=":"
|
||||||
|
|
||||||
# machine
|
|
||||||
arch_default=$(uname -m)
|
|
||||||
cpu="generic"
|
|
||||||
|
|
||||||
# OS
|
# OS
|
||||||
target_os_default=$(tolower $(uname -s))
|
target_os_default=$(tolower $(uname -s))
|
||||||
host_os=$target_os_default
|
host_os=$target_os_default
|
||||||
|
|
||||||
|
# machine
|
||||||
|
if test "$target_os_default" = aix; then
|
||||||
|
arch_default=$(uname -p)
|
||||||
|
else
|
||||||
|
arch_default=$(uname -m)
|
||||||
|
fi
|
||||||
|
cpu="generic"
|
||||||
|
|
||||||
# configurable options
|
# configurable options
|
||||||
enable $PROGRAM_LIST
|
enable $PROGRAM_LIST
|
||||||
enable $DOCUMENT_LIST
|
enable $DOCUMENT_LIST
|
||||||
|
Loading…
x
Reference in New Issue
Block a user