dcf52f
/*
dcf52f
    SDL - Simple DirectMedia Layer
dcf52f
    Copyright (C) 1997-2006 Sam Lantinga
dcf52f
dcf52f
    This library is free software; you can redistribute it and/or
dcf52f
    modify it under the terms of the GNU Lesser General Public
dcf52f
    License as published by the Free Software Foundation; either
dcf52f
    version 2.1 of the License, or (at your option) any later version.
dcf52f
dcf52f
    This library is distributed in the hope that it will be useful,
dcf52f
    but WITHOUT ANY WARRANTY; without even the implied warranty of
dcf52f
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
dcf52f
    Lesser General Public License for more details.
dcf52f
dcf52f
    You should have received a copy of the GNU Lesser General Public
dcf52f
    License along with this library; if not, write to the Free Software
dcf52f
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
dcf52f
dcf52f
    Sam Lantinga
dcf52f
    slouken@libsdl.org
dcf52f
*/
dcf52f
dcf52f
/*
dcf52f
 * This SDL_config.h is a wrapper include file for the original SDL_config.h, 
dcf52f
 * which has been renamed to SDL_config-<arch>.h. There are conflicts for the 
dcf52f
 * original SDL_config.h on multilib systems, which result from arch-specific
dcf52f
 * configuration options. Please do not use the arch-specific file directly.
dcf52f
 *
dcf52f
 * Copyright (C) 2006 Red Hat, Inc.
dcf52f
 * Thomas Woerner <twoerner@redhat.com>
dcf52f
 */
dcf52f
dcf52f
#ifdef SDL_config_wrapper_h
dcf52f
#error "SDL_config_wrapper_h should not be defined!"
dcf52f
#endif
dcf52f
#define SDL_config_wrapper_h
dcf52f
dcf52f
#if defined(__i386__)
dcf52f
#include "SDL_config-i386.h"
dcf52f
#elif defined(__ia64__)
dcf52f
#include "SDL_config-ia64.h"
dcf52f
#elif defined(__powerpc64__)
dcf52f
#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
dcf52f
#include "SDL_config-ppc64.h"
dcf52f
#else
dcf52f
#include "SDL_config-ppc64le.h"
dcf52f
#endif
dcf52f
#elif defined(__powerpc__)
dcf52f
#include "SDL_config-ppc.h"
dcf52f
#elif defined(__s390x__)
dcf52f
#include "SDL_config-s390x.h"
dcf52f
#elif defined(__s390__)
dcf52f
#include "SDL_config-s390.h"
dcf52f
#elif defined(__x86_64__)
dcf52f
#include "SDL_config-x86_64.h"
dcf52f
#elif defined(__arm__)
dcf52f
#include "SDL_config-arm.h"
dcf52f
#elif defined(__alpha__)
dcf52f
#include "SDL_config-alpha.h"
dcf52f
#elif defined(__sparc__) && defined (__arch64__)
dcf52f
#include "SDL_config-sparc64.h"
dcf52f
#elif defined(__sparc__)
dcf52f
#include "SDL_config-sparc.h"
dcf52f
#elif defined(__aarch64__)
dcf52f
#include "SDL_config-aarch64.h"
dcf52f
#else
dcf52f
#error "The SDL-devel package is not usable with the architecture."
dcf52f
#endif
dcf52f
dcf52f
#undef SDL_config_wrapper_h