Blame SOURCES/qconfig-multilib.h

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