Blame SOURCES/qconfig-multilib.h

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