Blame SOURCES/qt3dcore-config-multilib_p.h

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