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