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