Blame SOURCES/qconfig-multilib.h

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