2007-09-07 20:20:43 +00:00
|
|
|
/* This file is here to prevent a file conflict on multiarch systems. A
|
|
|
|
* conflict will occur because blkid_types.h has arch-specific definitions.
|
|
|
|
*
|
|
|
|
* DO NOT INCLUDE THE NEW FILE DIRECTLY -- ALWAYS INCLUDE THIS ONE INSTEAD. */
|
|
|
|
|
|
|
|
#if defined(__i386__)
|
|
|
|
#include "blkid_types-i386.h"
|
|
|
|
#elif defined(__powerpc64__)
|
|
|
|
#include "blkid_types-ppc64.h"
|
|
|
|
#elif defined(__powerpc__)
|
|
|
|
#include "blkid_types-ppc.h"
|
|
|
|
#elif defined(__s390x__)
|
|
|
|
#include "blkid_types-s390x.h"
|
|
|
|
#elif defined(__s390__)
|
|
|
|
#include "blkid_types-s390.h"
|
|
|
|
#elif defined(__x86_64__)
|
|
|
|
#include "blkid_types-x86_64.h"
|
2007-09-18 13:09:34 +00:00
|
|
|
#elif defined(__alpha__)
|
|
|
|
#include "blkid_types-alpha.h"
|
2007-10-24 02:02:21 +00:00
|
|
|
#elif defined(__arm__)
|
|
|
|
#include "blkid_types-arm.h"
|
2008-06-04 17:07:30 +00:00
|
|
|
#elif defined(__sparc__) && defined(__arch64__)
|
|
|
|
#include "blkid_types-sparc64.h"
|
|
|
|
#elif defined(__sparc__)
|
|
|
|
#include "blkid_types-sparc.h"
|
2007-09-07 20:20:43 +00:00
|
|
|
#else
|
|
|
|
#error "This e2fsprogs-devel package does not work your architecture?"
|
|
|
|
#endif
|
|
|
|
|