From 0b267fc5368fedf8f9434eaa56320ce0cad9fef1 Mon Sep 17 00:00:00 2001 From: bryanthaboi Date: Wed, 22 Jul 2026 10:55:46 -0400 Subject: [PATCH] another attempt --- mobile/android/love/src/jni/love/.gitignore | 1 + .../love/src/jni/love/src/common/config.h | 178 ++++++++++++++++++ 2 files changed, 179 insertions(+) create mode 100644 mobile/android/love/src/jni/love/src/common/config.h diff --git a/mobile/android/love/src/jni/love/.gitignore b/mobile/android/love/src/jni/love/.gitignore index 700e0869..4f3f6150 100644 --- a/mobile/android/love/src/jni/love/.gitignore +++ b/mobile/android/love/src/jni/love/.gitignore @@ -36,6 +36,7 @@ demos *~ Makefile* config* +!src/common/config.h libtool /platform/unix/ar-lib /platform/unix/compile diff --git a/mobile/android/love/src/jni/love/src/common/config.h b/mobile/android/love/src/jni/love/src/common/config.h new file mode 100644 index 00000000..94848e32 --- /dev/null +++ b/mobile/android/love/src/jni/love/src/common/config.h @@ -0,0 +1,178 @@ +/** + * Copyright (c) 2006-2023 LOVE Development Team + * + * 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. + **/ + +#ifndef LOVE_CONFIG_H +#define LOVE_CONFIG_H + +// Platform stuff. +#if defined(WIN32) || defined(_WIN32) +# define LOVE_WINDOWS 1 + // If _USING_V110_SDK71_ is defined it means we are using the xp toolset. +# if defined(_MSC_VER) && (_MSC_VER >= 1700) && !_USING_V110_SDK71_ +# include +# if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP) && !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) +# define LOVE_WINDOWS_UWP 1 +# define LOVE_NO_MODPLUG 1 +# define LOVE_NOMPG123 1 +# endif +# endif +#endif +#if defined(linux) || defined(__linux) || defined(__linux__) +# define LOVE_LINUX 1 +#endif +#if defined(__ANDROID__) +# define LOVE_ANDROID 1 +#endif +#if defined(__APPLE__) +# include +# if TARGET_OS_IPHONE +# define LOVE_IOS 1 +# elif TARGET_OS_MAC +# define LOVE_MACOSX 1 +# endif +#endif +#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) +// I know it's not linux, but it seems most "linux-only" code is bsd-compatible +# define LOVE_LINUX 1 +#endif + +// Endianness. +#if defined(__ppc__) || defined(__ppc) || defined(__powerpc__) || defined(__powerpc) +# define LOVE_BIG_ENDIAN 1 +#else +# define LOVE_LITTLE_ENDIAN 1 +#endif + +// SSE instructions. +#if defined(__SSE__) +# define LOVE_SIMD_SSE +#elif defined(_MSC_VER) +# if defined(_M_AMD64) || defined(_M_X64) +# define LOVE_SIMD_SSE +# elif _M_IX86_FP +# define LOVE_SIMD_SSE +# endif +#endif + +// NEON instructions. +#if defined(__ARM_NEON) +# define LOVE_SIMD_NEON +#endif + +// Warnings. +#ifndef _CRT_SECURE_NO_WARNINGS +# define _CRT_SECURE_NO_WARNINGS +#endif + +// Preferably, and ironically, this macro should go unused. +#ifndef LOVE_UNUSED +# define LOVE_UNUSED(x) (void)sizeof(x) +#endif + + +// Warn on unused return values +#ifdef __GNUC__ +# define LOVE_WARN_UNUSED __attribute__((warn_unused_result)) +#elif _MSC_VER +# define LOVE_WARN_UNUSED _Check_return_ +#else +# define LOVE_WARN_UNUSED +#endif + +#ifndef LOVE_BUILD +# define LOVE_BUILD +# define LOVE_BUILD_STANDALONE +# define LOVE_BUILD_EXE +//# define LOVE_BUILD_DLL +#endif + +// DLL-stuff. +#if defined(_MSC_VER) || defined(__MINGW32__) +# define LOVE_EXPORT __declspec(dllexport) +#elif defined(__GNUC__) || defined(__clang__) +# define LOVE_EXPORT __attribute__((visibility("default"))) +#else +# define LOVE_EXPORT +#endif + +#if defined(LOVE_WINDOWS) +#ifndef LOVE_WINDOWS_UWP +# define LOVE_LEGENDARY_CONSOLE_IO_HACK +#endif // LOVE_WINDOWS_UWP +#ifndef __MINGW32__ +# define NOMINMAX +#endif +#endif + +#if defined(LOVE_MACOSX) || defined(LOVE_IOS) +# define LOVE_LEGENDARY_APP_ARGV_HACK +#endif + +#if defined(LOVE_ANDROID) || defined(LOVE_IOS) +# define LOVE_LEGENDARY_ACCELEROMETER_AS_JOYSTICK_HACK +#endif + +// Autotools config.h +#ifdef HAVE_CONFIG_H +# include <../config.h> +# undef VERSION +# ifdef WORDS_BIGENDIAN +# undef LOVE_LITTLE_ENDIAN +# define LOVE_BIG_ENDIAN 1 +# else +# undef LOVE_BIG_ENDIAN +# define LOVE_LITTLE_ENDIAN 1 +# endif +#else +# define LOVE_ENABLE_LOVE +# define LOVE_ENABLE_AUDIO +# define LOVE_ENABLE_DATA +# define LOVE_ENABLE_EVENT +# define LOVE_ENABLE_FILESYSTEM +# define LOVE_ENABLE_FONT +# define LOVE_ENABLE_GRAPHICS +# define LOVE_ENABLE_IMAGE +# define LOVE_ENABLE_JOYSTICK +# define LOVE_ENABLE_KEYBOARD +# define LOVE_ENABLE_MATH +# define LOVE_ENABLE_MOUSE +# define LOVE_ENABLE_PHYSICS +# define LOVE_ENABLE_SOUND +# define LOVE_ENABLE_SYSTEM +# define LOVE_ENABLE_THREAD +# define LOVE_ENABLE_TIMER +# define LOVE_ENABLE_TOUCH +# define LOVE_ENABLE_VIDEO +# define LOVE_ENABLE_WINDOW + +# define LOVE_ENABLE_ENET +# define LOVE_ENABLE_LUASOCKET +# define LOVE_ENABLE_LUA53 +#endif + +// Check we have a sane configuration +#if !defined(LOVE_WINDOWS) && !defined(LOVE_LINUX) && !defined(LOVE_IOS) && !defined(LOVE_MACOSX) && !defined(LOVE_ANDROID) +# error Could not detect target platform +#endif +#if !defined(LOVE_LITTLE_ENDIAN) && !defined(LOVE_BIG_ENDIAN) +# error Could not detect endianness +#endif + +#endif // LOVE_CONFIG_H