Blame SOURCES/my_config.h

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