]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/config.h
Fix BSD iconv declaration
[dragonfireclient.git] / src / config.h
index 0955ea8f5463180eea2f1a912b756e7388a1ee78..50e1184283368e1f32c2e173cfa96ec06ee5a038 100644 (file)
@@ -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)
 
 #if defined USE_CMAKE_CONFIG_H
        #include "cmake_config.h"
-#elif defined (__ANDROID__) || defined (ANDROID)
-       #define PROJECT_NAME "minetest"
-       #define PROJECT_NAME_C "Minetest"
-       #define STATIC_SHAREDIR ""
-       #include "android_version.h"
-       #ifdef NDEBUG
-               #define BUILD_TYPE "Release"
-       #else
-               #define BUILD_TYPE "Debug"
-       #endif
 #else
+       #if defined (__ANDROID__)
+               #define PROJECT_NAME "minetest"
+               #define PROJECT_NAME_C "Minetest"
+               #define STATIC_SHAREDIR ""
+               #define VERSION_STRING STR(VERSION_MAJOR) "." STR(VERSION_MINOR) "." STR(VERSION_PATCH) STR(VERSION_EXTRA)
+       #endif
        #ifdef NDEBUG
                #define BUILD_TYPE "Release"
        #else
                #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