summaryrefslogtreecommitdiff
path: root/src/intlGUIEditBox.cpp
diff options
context:
space:
mode:
authorRogier-5 <Rogier-5@users.noreply.github.com>2016-07-04 21:00:57 +0200
committerest31 <est31@users.noreply.github.com>2016-07-04 21:00:57 +0200
commit1dfd977ec43370da6931b11a8d0469792c8ebc36 (patch)
tree81d3747e51737a4b4abf6ff243797bf9679765ea /src/intlGUIEditBox.cpp
parentf64914708092958f735337b3a14a33ca402b7893 (diff)
downloadminetest-1dfd977ec43370da6931b11a8d0469792c8ebc36.tar.gz
minetest-1dfd977ec43370da6931b11a8d0469792c8ebc36.tar.bz2
minetest-1dfd977ec43370da6931b11a8d0469792c8ebc36.zip
Fix & make linux conditionals uniform (#4278)
The source used a hodge-podge of different combinations of different macros to check for linux: 'linux', '__linux', '__linux__'. As '__linux__' is standard (Posix), and the others are not, the source now uniformly uses __linux__. If either linux or __linux are defined, it is made sure that __linux__ is defined as well.
Diffstat (limited to 'src/intlGUIEditBox.cpp')
-rw-r--r--src/intlGUIEditBox.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intlGUIEditBox.cpp b/src/intlGUIEditBox.cpp
index 33bf8a13c..29f828076 100644
--- a/src/intlGUIEditBox.cpp
+++ b/src/intlGUIEditBox.cpp
@@ -271,7 +271,7 @@ bool intlGUIEditBox::OnEvent(const SEvent& event)
break;
case EET_KEY_INPUT_EVENT:
{
-#if (defined(linux) || defined(__linux) || defined(__FreeBSD__))
+#if (defined(__linux__) || defined(__FreeBSD__))
// ################################################################
// ValkaTR:
// This part is the difference from the original intlGUIEditBox