summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-10-15 00:11:32 +0300
committerAndrei Karas <akaras@inbox.ru>2012-10-15 00:11:32 +0300
commit913705174357a514e6ffa62ec32df75dbbce5cf5 (patch)
treea3314b808d995898df76085f0c3f0ebce5f89feb /src
parent015515ba20b66195840afd1c0c074f0729995a2d (diff)
downloadplus-913705174357a514e6ffa62ec32df75dbbce5cf5.tar.gz
plus-913705174357a514e6ffa62ec32df75dbbce5cf5.tar.bz2
plus-913705174357a514e6ffa62ec32df75dbbce5cf5.tar.xz
plus-913705174357a514e6ffa62ec32df75dbbce5cf5.zip
Complete support for USE_MUMBLE flag.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am4
-rw-r--r--src/gui/setup_audio.cpp4
2 files changed, 8 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index fba5e2cb7..45df21458 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -21,6 +21,10 @@ else
manaplus_SOURCES =
endif
+if USE_MUMBLE
+manaplus_CXXFLAGS += -DUSE_MUMBLE
+endif
+
if USE_INTERNALGUICHAN
manaplus_CXXFLAGS += -DUSE_INTERNALGUICHAN
manaplus_SOURCES += guichan/include/guichan/actionevent.hpp \
diff --git a/src/gui/setup_audio.cpp b/src/gui/setup_audio.cpp
index ccd304c84..447b4633c 100644
--- a/src/gui/setup_audio.cpp
+++ b/src/gui/setup_audio.cpp
@@ -22,6 +22,8 @@
#include "gui/setup_audio.h"
+#include "main.h"
+
#include "configuration.h"
#include "sound.h"
@@ -126,8 +128,10 @@ Setup_Audio::Setup_Audio() :
new SetupItemLabel(_("Other"), "", this);
+#ifdef USE_MUMBLE
new SetupItemCheckBox(_("Enable mumble voice chat"), "",
"enableMumble", this, "enableMumbleEvent");
+#endif
new SetupItemCheckBox(_("Download music"), "",
"download-music", this, "download-musicEvent");