From e8056c9eb2b1e639ed00136a419649b420d8f5c5 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 26 May 2013 09:47:40 +0530 Subject: [PATCH] Windows build: Update the version of Qt calibre uses to fix crashes on some Windows 8 64 bit machines with touchscreens --- setup/installer/windows/notes.rst | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup/installer/windows/notes.rst b/setup/installer/windows/notes.rst index 10a88087ff..9812fe598a 100644 --- a/setup/installer/windows/notes.rst +++ b/setup/installer/windows/notes.rst @@ -196,11 +196,13 @@ following patch to have Qt load the openssl libraries bundled with calibre: searchOrder << qSystemDirectory(); -Now, run configure and make:: +Now, run configure and make: -no-plugin-manifests is needed so that loading the plugins does not fail looking for the CRT assembly - ./configure.exe -ltcg -opensource -release -qt-zlib -qt-libmng -qt-libpng -qt-libtiff -qt-libjpeg -release -platform win32-msvc2008 -no-qt3support -webkit -xmlpatterns -no-phonon -no-style-plastique -no-style-cleanlooks -no-style-motif -no-style-cde -no-declarative -no-scripttools -no-audio-backend -no-multimedia -no-dbus -no-openvg -no-opengl -no-qt3support -confirm-license -nomake examples -nomake demos -nomake docs -nomake tools -no-plugin-manifests -openssl -I $OPENSSL_DIR/include -L $OPENSSL_DIR/lib && nmake +-no-accessibility is added because accessibility may be causing crashes on win 8 64 bit + + ./configure.exe -ltcg -opensource -release -qt-zlib -qt-libmng -qt-libpng -qt-libtiff -qt-libjpeg -release -platform win32-msvc2008 -no-qt3support -webkit -xmlpatterns -no-phonon -no-style-plastique -no-style-cleanlooks -no-style-motif -no-style-cde -no-accessibility -no-declarative -no-scripttools -no-audio-backend -no-multimedia -no-dbus -no-openvg -no-opengl -no-qt3support -confirm-license -nomake examples -nomake demos -nomake docs -nomake tools -no-plugin-manifests -openssl -I $OPENSSL_DIR/include -L $OPENSSL_DIR/lib && nmake Add the path to the bin folder inside the Qt dir to your system PATH.