Blame SOURCES/qconfig-multilib.h

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