Blame SOURCES/ecpg_config.h

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