From 27b12498c26c95e9b25bd6b4c761a048ec30d512 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Fri, 20 Oct 2006 17:53:12 +0000 Subject: [PATCH] - Enabling debug in v4.2.1 too because Trolltech didn't fix their bug yet --- src/src.pro | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/src.pro b/src/src.pro index eefe355c4..eae33c9bd 100644 --- a/src/src.pro +++ b/src/src.pro @@ -33,7 +33,11 @@ contains(DEBUG_MODE, 0){ contains(QT_VERSION, 4.2.0) { message(Qt 4.2.0 detected : enabling debug output because of a bug in this version of Qt) }else{ - DEFINES += QT_NO_DEBUG_OUTPUT + contains(QT_VERSION, 4.2.1) { + message(Qt 4.2.1 detected : enabling debug output because of a bug in this version of Qt) + }else{ + DEFINES += QT_NO_DEBUG_OUTPUT + } } CONFIG += release }