https://bugs.kde.org/show_bug.cgi?id=436958
--- Comment #21 from Wolfgang Bauer <wba...@tmo.at> --- (In reply to Wolfgang Bauer from comment #19) > #if defined(QT_NO_DEBUG) > #undef NDEBUG > #endif I tried it, and kdiff3 works again (with the same build options) if I change it to this: #if defined(QT_NO_DEBUG) #define NDEBUG #endif But it probably makes even more sense to remove that completely I think (which also works fine here). As it uses assert() instead of Q_ASSERT() now, the QT_NO_DEBUG define should not matter anymore I suppose. (and why should it not be possible to build kdiff3 with debug output just because Qt is built without?) -- You are receiving this mail because: You are watching all bug changes.