diff options
author | Thiago Macieira <thiago.macieira@nokia.com> | 2009-09-25 15:18:28 (GMT) |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2009-10-29 13:13:56 (GMT) |
commit | 2e9be4eec0778ceea2e32b4826cba08d85b177d9 (patch) | |
tree | 43b2fc1eab545b2c81f0ad4423ab826b05020a41 /src/corelib | |
parent | ab7b164f60b0819d24d5b57d70988c4f5751329f (diff) | |
download | Qt-2e9be4eec0778ceea2e32b4826cba08d85b177d9.zip Qt-2e9be4eec0778ceea2e32b4826cba08d85b177d9.tar.gz Qt-2e9be4eec0778ceea2e32b4826cba08d85b177d9.tar.bz2 |
Add the Qt Evaluation message to the hidden libQtCore.so boilerplate.
Reviewed-By: Trust Me
Diffstat (limited to 'src/corelib')
-rw-r--r-- | src/corelib/global/qlibraryinfo.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/corelib/global/qlibraryinfo.cpp b/src/corelib/global/qlibraryinfo.cpp index 17273e9..15a06d7 100644 --- a/src/corelib/global/qlibraryinfo.cpp +++ b/src/corelib/global/qlibraryinfo.cpp @@ -492,12 +492,20 @@ void qt_core_boilerplate() "Contact: Nokia Corporation (qt-info@nokia.com)\n" "\n" "Build key: " QT_BUILD_KEY "\n" + "Build date: %s\n" "Installation prefix: %s\n" "Library path: %s\n" "Include path: %s\n", + qt_configure_installation + 12, qt_configure_prefix_path_str + 12, qt_configure_libraries_path_str + 12, qt_configure_headers_path_str + 12); + +#ifdef QT_EVAL + extern void qt_core_eval_init(uint); + qt_core_eval_init(1); +#endif + exit(0); } |