]> git.sesse.net Git - vlc/commitdiff
cmake: NDEBUG to off with Debug target. This cause the deadlock to be back.
authorPierre d'Herbemont <pdherbemont@videolan.org>
Sat, 9 Feb 2008 01:00:06 +0000 (01:00 +0000)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Sat, 9 Feb 2008 01:00:06 +0000 (01:00 +0000)
extras/buildsystem/cmake/include/config.cmake

index 176a9c389af73e1a4573acc90c5c045bd2922bfe..e11357adda0e0b8ddd0fb2c1b46bd45bcb9fe090 100644 (file)
@@ -41,7 +41,7 @@ endif(NOT CMAKE_BUILD_TYPE )
 
 if(CMAKE_BUILD_TYPE STREQUAL "Debug")
     set(DEBUG ON)
-    set(NDEBUG ON)
+    set(NDEBUG OFF)
 endif(CMAKE_BUILD_TYPE STREQUAL "Debug")
 
 set( HAVE_DYNAMIC_PLUGINS ${ENABLE_DYNAMIC_PLUGINS})