846950
/*
846950
 * Kluge to support multilib installation of both 32- and 64-bit RPMS:
846950
 * we need to arrange that header files that appear in both RPMs are
846950
 * identical.  Hence, this file is architecture-independent and calls
846950
 * in an arch-dependent file that will appear in just one RPM.
846950
 *
846950
 * To avoid breaking arches not explicitly supported by Red Hat, we
846950
 * use this indirection file *only* on known multilib arches.
846950
 *
846950
 * Note: this may well fail if user tries to use gcc's -I- option.
846950
 * But that option is deprecated anyway.
846950
 */
846950
#if defined(__x86_64__)
846950
#include "cdio_config_x86_64.h"
846950
#elif defined(__i386__)
846950
#include "cdio_config_i386.h"
846950
#elif defined(__ppc64__) || defined(__powerpc64__)
846950
#include "cdio_config_ppc64.h"
846950
#elif defined(__ppc__) || defined(__powerpc__)
846950
#include "cdio_config_ppc.h"
846950
#elif defined(__s390x__)
846950
#include "cdio_config_s390x.h"
846950
#elif defined(__s390__)
846950
#include "cdio_config_s390.h"
846950
#elif defined(__sparc__) && defined(__arch64__)
846950
#include "cdio_config_sparc64.h"
846950
#elif defined(__sparc__)
846950
#include "cdio_config_sparc.h"
846950
#endif