Blame SOURCES/xfsprogs-wrapper.h

564d46
/* This file is here to prevent a file conflict on multiarch systems. A
564d46
 * conflict will occur because platform_defs.h has arch-specific definitions.
564d46
 *
564d46
 * DO NOT INCLUDE THE NEW FILE DIRECTLY -- ALWAYS INCLUDE THIS ONE INSTEAD. */
564d46
564d46
#if defined(__i386__)
564d46
#include "platform_defs-i386.h"
564d46
#elif defined(__x86_64__)
564d46
#include "platform_defs-x86_64.h"
564d46
#elif defined(__powerpc64__)
564d46
#include "platform_defs-ppc64.h"
564d46
#elif defined(__powerpc__)
564d46
#include "platform_defs-ppc.h"
564d46
#elif defined(__s390x__)
564d46
#include "platform_defs-s390x.h"
564d46
#elif defined(__s390__)
564d46
#include "platform_defs-s390.h"
564d46
#elif defined(__sparc__) && defined(__arch64__)
564d46
#include "platform_defs-sparc64.h"
564d46
#elif defined(__sparc__)
564d46
#include "platform_defs-sparc.h"
564d46
#else
564d46
#error "This xfsprogs-devel package does not work your architecture?"
564d46
#endif