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