otaylor / rpms / SDL

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