summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Schilling <ablu.erikschilling@googlemail.com>2012-08-31 22:27:57 +0200
committerErik Schilling <ablu.erikschilling@googlemail.com>2012-08-31 23:05:38 +0200
commit9be7d7c64246e44bbadd16c617ad6d4286563d9c (patch)
tree65238edc2eab1eae9eb8fc954f91312c3fb30c60
parent7c13687e7af7f3d39f0f7c11b27bfab4f85204fa (diff)
downloadmana-client-9be7d7c64246e44bbadd16c617ad6d4286563d9c.tar.gz
mana-client-9be7d7c64246e44bbadd16c617ad6d4286563d9c.tar.bz2
mana-client-9be7d7c64246e44bbadd16c617ad6d4286563d9c.tar.xz
mana-client-9be7d7c64246e44bbadd16c617ad6d4286563d9c.zip
Turned off C++11 mode by default to avoid linker issues
Compiling in C++11 mode causes trouble when using GCC 4.7 and linking to a version of Guichan that was not compiled in C++11 mode. Reviewed-by: bjorn.
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2cf65803..20695d1b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -31,7 +31,7 @@ FIND_PACKAGE(Gettext)
OPTION(WITH_OPENGL "Enable OpenGL support" ON)
OPTION(ENABLE_NLS "Enable building of tranlations" ON)
OPTION(ENABLE_MANASERV "Enable Manaserv support" ON)
-OPTION(ENABLE_CPP0X "Enable use of C++0x features" ON)
+OPTION(ENABLE_CPP0X "Enable use of C++0x features" OFF)
IF (WIN32)
SET(PKG_DATADIR ".")