mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
tests: fix cpp directives
This commit is contained in:
parent
0d811c73e2
commit
d807515973
1 changed files with 4 additions and 4 deletions
|
@ -82,16 +82,16 @@
|
|||
# include "struct_i386.h"
|
||||
# define HAVE_ABI_SIZES TRUE
|
||||
# endif
|
||||
#elif HAVE_CPU_X86_64
|
||||
#elif defined HAVE_CPU_X86_64
|
||||
# include "struct_x86_64.h"
|
||||
# define HAVE_ABI_SIZES TRUE
|
||||
#elif HAVE_CPU_ARM
|
||||
#elif defined HAVE_CPU_ARM
|
||||
# include "struct_arm.h"
|
||||
# define HAVE_ABI_SIZES FALSE
|
||||
#elif HAVE_CPU_PPC
|
||||
#elif defined HAVE_CPU_PPC
|
||||
# include "struct_ppc32.h"
|
||||
# define HAVE_ABI_SIZES TRUE
|
||||
#elif HAVE_CPU_PPC64
|
||||
#elif defined HAVE_CPU_PPC64
|
||||
# include "struct_ppc64.h"
|
||||
# define HAVE_ABI_SIZES TRUE
|
||||
#else /* in case someone wants to generate a new arch */
|
||||
|
|
Loading…
Reference in a new issue