21 lines
501 B
C
21 lines
501 B
C
|
/* 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
|
||
|
#include <bits/wordsize.h>
|
||
|
|
||
|
#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
|
||
|
|