Rex Dieter 4b18140
/* qconfig.h */
Rex Dieter 4b18140
/* This file is here to prevent a file conflict on multiarch systems.  A
Rex Dieter 4b18140
 * conflict will occur because qconfig.h has arch-specific definitions.
Rex Dieter 4b18140
 *
Rex Dieter 4b18140
 * DO NOT INCLUDE THE NEW FILE DIRECTLY -- ALWAYS INCLUDE THIS ONE INSTEAD. */
Rex Dieter 4b18140
Rex Dieter 4b18140
#ifndef QCONFIG_MULTILIB_H
Rex Dieter 4b18140
#define QCONFIG_MULTILIB_H
Rex Dieter a3aafb4
Rex Dieter a3aafb4
#ifndef __WORDSIZE
Rex Dieter 4b18140
#include <bits/wordsize.h>
Rex Dieter a3aafb4
#endif
Rex Dieter 4b18140
Rex Dieter 4b18140
#if __WORDSIZE == 32
Rex Dieter 4b18140
#include "QtCore/qconfig-32.h"
Rex Dieter 4b18140
#elif __WORDSIZE == 64
Rex Dieter 4b18140
#include "QtCore/qconfig-64.h"
Rex Dieter 4b18140
#else
Rex Dieter 4b18140
#error "unexpected value for __WORDSIZE macro"
Rex Dieter 4b18140
#endif
Rex Dieter 4b18140
Rex Dieter 4b18140
#endif
Rex Dieter 4b18140