CBL-Mariner/SPECS-EXTENDED/SDL2/SDL_revision.h

84 строки
2.7 KiB
C
Исходник Постоянная ссылка Обычный вид История

Add 16 packages reverted from parity list after build fixes (#4590) * lv2: Add package version 1.18.8 - Disable subpackage 'doc' - Disable check section due to missing dependency on codespell * lv2: cgmanifest add package entry * lv2: licenses add package entry * python-rdflib: Add package version 6.2.0 * python-rdflib: cgmanifest add package entry * python-rdflib: licenses add package entry * libsamplerate: Add package version 0.2.2 * libsamplerate: cgmanifest add package entry * libsamplerate: licenses add package entry * sratom: Add package version 0.6.10 - Disable building 'docs' - Enable check section - Update URL and Source with https * sratom: cgmanifest add package entry * sratom: licenses add package entry * fftw: Add package version 3.3.10 - Disable openmpi and mpich features - Enable check section * fftw: cgmanifest add package entry * fftw: licenses add package entry * cdparanoia: Add package version 10.2 * cdparanoia: cgmanifest add package entry * cdparanoia: licenses add package entry * lilv: Add package version 0.24.14 - Disable subpackage 'doc' - Enable check section - Remove obsoletes of subpackage libs * lilv: cgmanifest add package entry * lilv: licenses add package entry * gstreamer1-plugins-base: Add package version 1.20.0 - Fix build hang issue on amd64 * gstreamer1-plugins-base: cgmanifest add package entry * gstreamer1-plugins-base: licenses add package entry * libcanberra: Add package version 0.30 * libcanberra: cgmanifest add package entry * libcanberra: licenses add package entry * pipewire: Add package version 0.3.60 - Build with features disabled: jack, jackserver-plugin and libcamera-plugin - Remove BR on pkgconfig(libudev) to fix conflicts between systemd-bootstrap-devel and systemd-devel - Add build conditional flag for missing runtime dependency "python-qt5-base" - Fix AMD64 build hang issue - Enable check section * pipewire: Update Amd64 build fix comments * pipewire: cgmanifest add package entry * pipewire: licenses add package entry * pulseaudio: Add package version 16.1 - Build with 'jack' and 'lirc' feature disabled - Enable check section * pulseaudio: cgmanifest add package entry * pulseaudio: licenses add package entry * SDL2: Add package version 2.24.9 - Build with 'jack' support disabled - Enable check section * SDL2: cgmanifest add package entry * SDL2: licenses add package entry * cdrdao: Add package version 1.2.4 * cdrdao: cgmanifest add package entry * cdrdao: licenses add package entry * libao: Add package version 1.2.0 * libao: cgmanifest add package entry * libao: licenses add package entry * linuxconsoletools: Add package version 1.8.1 * linuxconsoletools: cgmanifest add package entry * linuxconsoletools: licenses add package entry * libmikmod: Add package version 3.3.11.1 * libmikmod: cgmanifest add package entry * libmikmod: licenses add package entry
2023-01-17 07:47:08 +03:00
/*
Simple DirectMedia Layer
Copyright (C) 1997-2020 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
/*
* This SDL_revision.h is a wrapper include file for the original SDL_revision.h,
* which has been renamed to SDL_revision-<arch>.h. There are conflicts for the
* original SDL_revision.h on multilib systems, which result from REVISION
* inconsistency between architecture builds, though, I'm not sure why.
* Computers are weird.
*
* Copyright (C) 2021 Tom Callaway <spotrh@gmail.com>
*/
/**
* \file SDL_revision.h
*/
#ifdef SDL_revision_wrapper_h
#error "SDL_revision_wrapper_h should not be defined!"
#endif
#define SDL_revision_wrapper_h
#if defined(__i386__)
#include "SDL_revision-i386.h"
#elif defined(__ia64__)
#include "SDL_revision-ia64.h"
#elif defined(__powerpc64__)
# if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
#include "SDL_revision-ppc64.h"
# else
#include "SDL_revision-ppc64le.h"
# endif
#elif defined(__powerpc__)
#include "SDL_revision-ppc.h"
#elif defined(__s390x__)
#include "SDL_revision-s390x.h"
#elif defined(__s390__)
#include "SDL_revision-s390.h"
#elif defined(__x86_64__)
#include "SDL_revision-x86_64.h"
#elif defined(__arm__)
#include "SDL_revision-arm.h"
#elif defined(__alpha__)
#include "SDL_revision-alpha.h"
#elif defined(__sparc__) && defined (__arch64__)
#include "SDL_revision-sparc64.h"
#elif defined(__sparc__)
#include "SDL_revision-sparc.h"
#elif defined(__aarch64__)
#include "SDL_revision-aarch64.h"
#elif defined(__mips64) && defined(__MIPSEL__)
#include "SDL_revision-mips64el.h"
#elif defined(__mips64)
#include "SDL_revision-mips64.h"
#elif defined(__mips) && defined(__MIPSEL__)
#include "SDL_revision-mipsel.h"
#elif defined(__mips)
#include "SDL_revision-mips.h"
#elif defined(__riscv) && defined(__riscv_xlen) && __riscv_xlen == 64
#include "SDL_revision-riscv64.h"
#else
#error "The SDL2-devel package is not usable with the architecture."
#endif
#undef SDL_revision_wrapper_h