日本免费全黄少妇一区二区三区-高清无码一区二区三区四区-欧美中文字幕日韩在线观看-国产福利诱惑在线网站-国产中文字幕一区在线-亚洲欧美精品日韩一区-久久国产精品国产精品国产-国产精久久久久久一区二区三区-欧美亚洲国产精品久久久久

Wine安裝一些Windows軟件的錯(cuò)誤以及處理

;1、安裝rtx軟件 1)安裝時(shí),后臺(tái)會(huì)報(bào)一些錯(cuò)誤:如找不到mfc42u.dll之類的,可以從windows/system32目錄拷貝到wine的相應(yīng)目錄 。2)如果是自動(dòng)構(gòu)建的wine,則有可能出現(xiàn) libxml2 support was not present at compile time 的問題,這時(shí)需要安裝 libxml2-dev 包 。2、安裝一些帶輸入檢測(cè)的軟件如招商證券,會(huì)出現(xiàn)包含類似 X11DRV_SetDIBits 0x1f2() in winex11 的錯(cuò)誤,這時(shí)需要打補(bǔ)丁 。打補(bǔ)丁的方法是: 1)下載wine源代碼 2)按照以下內(nèi)容修改文件 wine/dlls/winex11.drv/dib.c b/dlls/winex11.drv/dib.c: Skipped content of type multipart/alternative-------------- next part --------------diff --git a/dlls/winex11.drv/dib.c b/dlls/winex11.drv/dib.cindex cec2058..809897e 100644--- a/dlls/winex11.drv/dib.cb/dlls/winex11.drv/dib.c@@ -3861,63861,7 @@ INT X11DRV_SetDIBits( X11DRV_PDEVICE *phX11DRV_DIB_IMAGEBITS_DESCR descr;BITMAP bitmap;LONG width, height, tmpheight;int nrsrcbytes, dibpitch;INT result;descr.physDev = physDev;@@ -3880,63881,16 @@ INT X11DRV_SetDIBits( X11DRV_PDEVICE *phif (startscanlines > height) lines = height - startscan;/* pointer check */dibpitch = ((width * descr.infoBpp31) &~31) / 8;if( descr.compression)nrsrcbytes = 1;else {nrsrcbytes = lines * dibpitch;if( nrsrcbytes < 0) nrsrcbytes = - nrsrcbytes;}if( IsBadReadPtr( bits, nrsrcbytes)) return 0; switch (descr.infoBpp){case 1:@@ -3926,73937,7 @@ INT X11DRV_SetDIBits( X11DRV_PDEVICE *phdescr.width = bitmap.bmWidth;descr.height = lines;descr.useShm = FALSE;- descr.dibpitch = ((descr.infoWidth * descr.infoBpp31) &~31) / 8;descr.dibpitch = dibpitch;X11DRV_DIB_Lock( physBitmap, DIB_Status_GdiMod, FALSE );result = X11DRV_DIB_SetImageBits( &descr );X11DRV_DIB_Unlock( physBitmap, TRUE );左邊有-號(hào)的,刪除這一行,左邊有+號(hào)的,添加這一行 。修改后編譯,如果使用debian系統(tǒng),則可以用以下命令編譯: cd winesudo debian/rules cleansudo debian/rules buildsudo debian/rules binary3、出現(xiàn)斷言失敗錯(cuò)誤: text.c: usr32 pellip->under == 0 && pellip->after == 0 時(shí),有可能是亂碼導(dǎo)致,配置wine支持中文即可 。

    推薦閱讀