Blame SOURCES/qconfig-multilib.h

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