78e7838a93
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/libvpx#5e9ca6bc1773df5e76267c609662a234fb55d3f8
19 lines
525 B
C
19 lines
525 B
C
/* Provide a real file - not a symlink - as it would cause multiarch conflicts
|
|
(when multiple different arch releases are installed simultaneously. */
|
|
|
|
#if defined __x86_64__
|
|
# include "vpx_config-x86_64.h"
|
|
#elif defined __aarch64__
|
|
# include "vpx_config-aarch64.h"
|
|
#elif defined __arm__
|
|
# include "vpx_config-arm.h"
|
|
#elif defined __i386__
|
|
# include "vpx_config-x86.h"
|
|
#elif defined __powerpc64__
|
|
# include "vpx_config-ppc64.h"
|
|
#elif defined __s390__
|
|
# include "vpx_config-s390.h"
|
|
#else
|
|
# error "Unsupported arch"
|
|
#endif
|