summaryrefslogtreecommitdiff
path: root/src/config.h
diff options
context:
space:
mode:
authoryou <ovvv@web.de>2017-09-03 22:32:30 +0200
committerLoïc Blot <nerzhul@users.noreply.github.com>2017-09-03 22:32:30 +0200
commitad9786c44b7d09b2d7972884ef5e6791861dd151 (patch)
tree4d48949cda5f20a41a6085ac6c73922186f6cdfd /src/config.h
parent9f6d90aa811dd8f523b137d602127d31307ea15c (diff)
downloadminetest-ad9786c44b7d09b2d7972884ef5e6791861dd151.tar.gz
minetest-ad9786c44b7d09b2d7972884ef5e6791861dd151.tar.bz2
minetest-ad9786c44b7d09b2d7972884ef5e6791861dd151.zip
Add build date to minetest --version and increase readability (#6331)
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/config.h b/src/config.h
index fc4be6e9e..5882b4e21 100644
--- a/src/config.h
+++ b/src/config.h
@@ -5,10 +5,6 @@
#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)
@@ -28,12 +24,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)