Blame SOURCES/ecpg_config.h

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