diff options
author | Kent Hansen <khansen@trolltech.com> | 2009-08-11 09:58:35 (GMT) |
---|---|---|
committer | Kent Hansen <khansen@trolltech.com> | 2009-08-11 10:02:08 (GMT) |
commit | f2f338a922d20ad36c9849f5ea3208a8c4f1674a (patch) | |
tree | 06b7d537c2aa2fedcb236f13188f5a9c38b06ff9 | |
parent | 938c50675fbcc6659e25921caf41a06f2d8a49cb (diff) | |
download | Qt-f2f338a922d20ad36c9849f5ea3208a8c4f1674a.zip Qt-f2f338a922d20ad36c9849f5ea3208a8c4f1674a.tar.gz Qt-f2f338a922d20ad36c9849f5ea3208a8c4f1674a.tar.bz2 |
compile qtscript with -DNDEBUG
We don't need the JSC asserts anymore now, hopefully.
More importantly, this changemakes programs that link against both
QtScript and QtWebKit not crash.
-rw-r--r-- | src/script/script.pri | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/script.pri b/src/script/script.pri index 5004ae3..cb4b2bd 100644 --- a/src/script/script.pri +++ b/src/script/script.pri @@ -33,5 +33,5 @@ DEFINES += BUILDING_QT__=1 DEFINES += USE_SYSTEM_MALLOC DEFINES += WTF_USE_JAVASCRIPTCORE_BINDINGS=1 DEFINES += WTF_CHANGES=1 -# DEFINES += NDEBUG +DEFINES += NDEBUG |