dbe53f0
/*
dbe53f0
 * This luaconf.h is a wrapper include file for the original luaconf.h, 
dbe53f0
 * which has been renamed to luaconf-<arch>.h. There are conflicts for the 
dbe53f0
 * original luaconf.h on multilib systems, which result from arch-specific
dbe53f0
 * configuration options. Please do not use the arch-specific file directly.
dbe53f0
 *
dbe53f0
 * Copyright (C) 2015 Tom Callaway <spot@fedoraproject.org>
dbe53f0
 */
dbe53f0
dbe53f0
/**
dbe53f0
 *  \file luaconf.h
dbe53f0
 */
dbe53f0
dbe53f0
#ifdef luaconf_wrapper_h
dbe53f0
#error "luaconf_wrapper_h should not be defined!"
dbe53f0
#endif
dbe53f0
#define luaconf_wrapper_h
dbe53f0
dbe53f0
#if defined(__i386__)
dbe53f0
#include "luaconf-i386.h"
dbe53f0
#elif defined(__ia64__)
dbe53f0
#include "luaconf-ia64.h"
dbe53f0
#elif defined(__powerpc64__)
dbe53f0
# if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
dbe53f0
#include "luaconf-ppc64.h"
dbe53f0
# else
dbe53f0
#include "luaconf-ppc64le.h"
dbe53f0
# endif
dbe53f0
#elif defined(__powerpc__)
dbe53f0
#include "luaconf-ppc.h"
dbe53f0
#elif defined(__s390x__)
dbe53f0
#include "luaconf-s390x.h"
dbe53f0
#elif defined(__s390__)
dbe53f0
#include "luaconf-s390.h"
dbe53f0
#elif defined(__x86_64__)
dbe53f0
#include "luaconf-x86_64.h"
dbe53f0
#elif defined(__arm__)
dbe53f0
#include "luaconf-arm.h"
dbe53f0
#elif defined(__alpha__)
dbe53f0
#include "luaconf-alpha.h"
dbe53f0
#elif defined(__sparc__) && defined (__arch64__)
dbe53f0
#include "luaconf-sparc64.h"
dbe53f0
#elif defined(__sparc__)
dbe53f0
#include "luaconf-sparc.h"
dbe53f0
#elif defined(__aarch64__)
dbe53f0
#include "luaconf-aarch64.h"
dbe53f0
#elif defined(__mips64) && defined(__MIPSEL__)
dbe53f0
#include "luaconf-mips64el.h"
dbe53f0
#elif defined(__mips64)
dbe53f0
#include "luaconf-mips64.h"
dbe53f0
#elif defined(__mips) && defined(__MIPSEL__)
dbe53f0
#include "luaconf-mipsel.h"
dbe53f0
#elif defined(__mips)
dbe53f0
#include "luaconf-mips.h"
dbe53f0
#else
dbe53f0
#error "The lua-devel package is not usable with the architecture."
dbe53f0
#endif
dbe53f0
dbe53f0
#undef luaconf_wrapper_h