Blame SOURCES/qconfig-multilib.h

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