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