Blame SOURCES/qtcore-config-multilib.h

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