Blame SOURCES/vpx_config.h

087d2f
/* Provide a real file - not a symlink - as it would cause multiarch conflicts 
087d2f
   (when multiple different arch releases are installed simultaneously. */
087d2f
087d2f
#if defined __x86_64__
087d2f
# include "vpx_config-x86_64.h"
087d2f
#elif defined __aarch64__
087d2f
# include "vpx_config-aarch64.h"
087d2f
#elif defined __arm__
087d2f
# include "vpx_config-arm.h"
087d2f
#elif defined __i386__
087d2f
# include "vpx_config-x86.h"
087d2f
#elif defined __powerpc64__
087d2f
# include "vpx_config-ppc64.h"
087d2f
#elif defined __s390__
087d2f
# include "vpx_config-s390.h"
087d2f
#else
087d2f
# error "Unsupported arch"
087d2f
#endif