b112864
/* qconfig.h */
b112864
/* This file is here to prevent a file conflict on multiarch systems.  A
b112864
 * conflict will occur because qconfig.h has arch-specific definitions.
b112864
 *
b112864
 * DO NOT INCLUDE THE NEW FILE DIRECTLY -- ALWAYS INCLUDE THIS ONE INSTEAD. */
b112864
b112864
#if defined(__x86_64__)
b112864
# include <QtCore/qconfig-x86_64.h>
b112864
#elif defined(__i386__)
b112864
# include <QtCore/qconfig-i386.h>
b112864
#elif defined(__powerpc64__)
b112864
# include <QtCore/qconfig-ppc64.h>
b112864
#elif defined(__powerpc__)
b112864
# include <QtCore/qconfig-ppc.h>
b112864
#elif defined(__s390x__)
b112864
# include <QtCore/qconfig-s390x.h>
b112864
#elif defined(__s390__)
b112864
# include <QtCore/qconfig-s390.h> 
4318b1a
#elif defined(__sparc__) && defined (__arch64__)
b112864
# include <QtCore/qconfig-sparc64.h>
b112864
#elif defined(__sparc__)
b112864
# include <QtCore/qconfig-sparc.h>
b112864
#else
b112864
/* Should never reach this point, if so see bugzilla.redhat.com/223663 */
b112864
#error "This qt4-devel package does not work your architecture?"
b112864
#endif
b112864