Browse Source

Disable UNIV_DEBUG when WITH_DEBUG is enabled

It causes lots of failures due to
Bug#54861 Additional connections not handled properly in mtr --embedded
should be re-enabled when that bug is resolved
pull/374/head
Vasil Dimov 16 years ago
parent
commit
8847387ecd
  1. 8
      storage/innobase/CMakeLists.txt

8
storage/innobase/CMakeLists.txt

@ -41,9 +41,11 @@ IF(UNIX)
ENDIF()
# Enable InnoDB's UNIV_DEBUG if MySQL's WITH_DEBUG[_FULL] is defined
IF(WITH_DEBUG OR WITH_DEBUG_FULL)
ADD_DEFINITIONS("-DUNIV_DEBUG")
ENDIF()
# enable when this bug is resolved:
# Bug#54861 Additional connections not handled properly in mtr --embedded
#IF(WITH_DEBUG OR WITH_DEBUG_FULL)
# ADD_DEFINITIONS("-DUNIV_DEBUG")
#ENDIF()
IF(NOT MSVC)
# either define HAVE_IB_GCC_ATOMIC_BUILTINS or not

Loading…
Cancel
Save