QT版本为4.8.6
自己编译的,只有release版本,没有debug库;没有编译webkit和demo
百度云盘下载:
http://pan.baidu.com/s/1jGoonAI
配置命令:
configure -platform win32-msvc2005 -release -no-webkit -no-qt3support -nomake docs -nomake demos -nomake examples
一处修改的地方:
①src\gui\kernel\qclipboard_win.cppstatic bool isProcessBeingDebugged(HWND hwnd)
{
DWORD pid = 0;
if (!GetWindowThreadProcessId(hwnd, &pid) || !pid)
return false;
// Exclude VS 2005
#if defined(_MSC_VER) && _MSC_VER <= 1400
Q_UNUSED(pid);
return false;
#else
const HANDLE processHandle = OpenProcess(PROCESS_QUERY_INFORMATION, FALSE, pid);
if (!processHandle)
return false;
BOOL debugged = FALSE;
CheckRemoteDebuggerPresent(processHandle, &debugged);
CloseHandle(processHandle);
return debugged != FALSE;
#endif
}