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