Blame SOURCES/qconfig-multilib.h

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