2006-07-05 13:26:08 +00:00
|
|
|
/* This file is here to prevent a file conflict on multiarch systems. A
|
|
|
|
* conflict will occur because platform_defs.h has arch-specific definitions.
|
|
|
|
*
|
|
|
|
* DO NOT INCLUDE THE NEW FILE DIRECTLY -- ALWAYS INCLUDE THIS ONE INSTEAD. */
|
|
|
|
|
|
|
|
#if defined(__i386__)
|
|
|
|
#include "platform_defs-i386.h"
|
2008-06-04 17:38:01 +00:00
|
|
|
#elif defined(__x86_64__)
|
|
|
|
#include "platform_defs-x86_64.h"
|
2006-07-05 13:26:08 +00:00
|
|
|
#elif defined(__powerpc64__)
|
|
|
|
#include "platform_defs-ppc64.h"
|
|
|
|
#elif defined(__powerpc__)
|
|
|
|
#include "platform_defs-ppc.h"
|
|
|
|
#elif defined(__s390x__)
|
|
|
|
#include "platform_defs-s390x.h"
|
|
|
|
#elif defined(__s390__)
|
|
|
|
#include "platform_defs-s390.h"
|
2008-06-04 17:38:01 +00:00
|
|
|
#elif defined(__sparc__) && defined(__arch64__)
|
|
|
|
#include "platform_defs-sparc64.h"
|
|
|
|
#elif defined(__sparc64__)
|
|
|
|
#include "platform_defs-sparc.h"
|
2006-07-05 13:26:08 +00:00
|
|
|
#else
|
|
|
|
#error "This xfsprogs-devel package does not work your architecture?"
|
|
|
|
#endif
|