X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Fconfig.h;h=5e116464213765b6546e7be4e691f1066ae077e8;hb=5505a6af00145263acfeeef7fe27d86dc6ab0351;hp=0955ea8f5463180eea2f1a912b756e7388a1ee78;hpb=4ea5a96fffb1a0300f73e97d4c85bb5c32e3786d;p=minetest.git diff --git a/src/config.h b/src/config.h index 0955ea8f5..5e1164642 100644 --- a/src/config.h +++ b/src/config.h @@ -3,8 +3,7 @@ Otherwise use default values */ -#ifndef CONFIG_H -#define CONFIG_H +#pragma once #define STRINGIFY(x) #x #define STR(x) STRINGIFY(x) @@ -12,12 +11,12 @@ #if defined USE_CMAKE_CONFIG_H #include "cmake_config.h" -#elif defined (__ANDROID__) || defined (ANDROID) +#elif defined (__ANDROID__) #define PROJECT_NAME "minetest" #define PROJECT_NAME_C "Minetest" #define STATIC_SHAREDIR "" - #include "android_version.h" - #ifdef NDEBUG + #define VERSION_STRING STR(VERSION_MAJOR) "." STR(VERSION_MINOR) "." STR(VERSION_PATCH) STR(VERSION_EXTRA) +#ifdef NDEBUG #define BUILD_TYPE "Release" #else #define BUILD_TYPE "Debug" @@ -29,14 +28,3 @@ #define BUILD_TYPE "Debug" #endif #endif - -#define BUILD_INFO "BUILD_TYPE=" BUILD_TYPE \ - " RUN_IN_PLACE=" STR(RUN_IN_PLACE) \ - " USE_GETTEXT=" STR(USE_GETTEXT) \ - " USE_SOUND=" STR(USE_SOUND) \ - " USE_CURL=" STR(USE_CURL) \ - " USE_FREETYPE=" STR(USE_FREETYPE) \ - " USE_LUAJIT=" STR(USE_LUAJIT) \ - " STATIC_SHAREDIR=" STR(STATIC_SHAREDIR) - -#endif