https://bugs.winehq.org/show_bug.cgi?id=39117
Bug ID: 39117
Summary: Cross-compilation: Error in zconf.h included from
zlib.h included from http.c
Product: Wine
Version: 1.7.24
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wininet
Assignee: wine-bugs(a)winehq.org
Reporter: yugiohjcj(a)1s.fr
Distribution: ---
Hello,
I try to cross-compile wine-1.7.24 on Slackware 14.1:
$ make
i686-pc-mingw32-gcc -c -o http.o http.c -I. -I../../include -D__WINESRC__
-D_WINX32_ -D_REENTRANT -Wall -pipe \
-fno-strength-reduce -fno-strict-aliasing -Wdeclaration-after-statement
-Wempty-body \
-Wignored-qualifiers -Wstrict-prototypes -Wtype-limits
-Wunused-but-set-parameter -Wvla \
-Wwrite-strings -Wpointer-arith -Wlogical-op -gdwarf-2 -gstrict-dwarf
-fno-omit-frame-pointer \
-g -O2 -D_WIN32
In file included from /usr/i686-pc-mingw32/include/zlib.h:34:0,
from http.c:53:
/usr/i686-pc-mingw32/include/zconf.h:377:22: error: expected '=', ',', ';',
'asm' or '__attribute__' before 'Bytef'
typedef Byte FAR Bytef;
^
/usr/i686-pc-mingw32/include/zconf.h:379:19: error: expected '=', ',', ';',
'asm' or '__attribute__' before 'charf'
typedef char FAR charf;
^
/usr/i686-pc-mingw32/include/zconf.h:380:19: error: expected '=', ',', ';',
'asm' or '__attribute__' before 'intf'
typedef int FAR intf;
^
/usr/i686-pc-mingw32/include/zconf.h:381:19: error: expected '=', ',', ';',
'asm' or '__attribute__' before 'uIntf'
typedef uInt FAR uIntf;
^
/usr/i686-pc-mingw32/include/zconf.h:382:19: error: expected '=', ',', ';',
'asm' or '__attribute__' before 'uLongf'
typedef uLong FAR uLongf;
^
/usr/i686-pc-mingw32/include/zconf.h:386:23: error: expected '=', ',', ';',
'asm' or '__attribute__' before '*' token
typedef void FAR *voidpf;
^
In file included from http.c:53:0:
/usr/i686-pc-mingw32/include/zlib.h:80:17: error: expected declaration
specifiers or '...' before '*' token
typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
^
In file included from /usr/i686-pc-mingw32/include/zlib.h:34:0,
from http.c:53:
/usr/i686-pc-mingw32/include/zlib.h:81:30: error: unknown type name 'voidpf'
typedef void (*free_func) OF((voidpf opaque, voidpf address));
^
/usr/i686-pc-mingw32/include/zlib.h:81:30: error: unknown type name 'voidpf'
typedef void (*free_func) OF((voidpf opaque, voidpf address));
^
In file included from http.c:53:0:
/usr/i686-pc-mingw32/include/zlib.h:86:13: error: unknown type name 'Bytef'
z_const Bytef *next_in; /* next input byte */
^
/usr/i686-pc-mingw32/include/zlib.h:90:5: error: unknown type name 'Bytef'
Bytef *next_out; /* next output byte should be put there */
^
/usr/i686-pc-mingw32/include/zlib.h:95:31: error: expected ':', ',', ';', '}'
or '__attribute__' before '*' token
struct internal_state FAR *state; /* not visible by applications */
^
/usr/i686-pc-mingw32/include/zlib.h:106:22: error: expected '=', ',', ';',
'asm' or '__attribute__' before '*' token
typedef z_stream FAR *z_streamp;
^
/usr/i686-pc-mingw32/include/zlib.h:117:5: error: unknown type name 'Bytef'
Bytef *extra; /* pointer to extra field or Z_NULL if none */
^
/usr/i686-pc-mingw32/include/zlib.h:120:5: error: unknown type name 'Bytef'
Bytef *name; /* pointer to zero-terminated file name or Z_NULL */
^
/usr/i686-pc-mingw32/include/zlib.h:122:5: error: unknown type name 'Bytef'
Bytef *comment; /* pointer to zero-terminated comment or Z_NULL */
^
/usr/i686-pc-mingw32/include/zlib.h:129:23: error: expected '=', ',', ';',
'asm' or '__attribute__' before '*' token
typedef gz_header FAR *gz_headerp;
^
In file included from /usr/i686-pc-mingw32/include/zlib.h:34:0,
from http.c:53:
/usr/i686-pc-mingw32/include/zlib.h:246:29: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
^
/usr/i686-pc-mingw32/include/zlib.h:353:32: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
^
/usr/i686-pc-mingw32/include/zlib.h:392:29: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
^
/usr/i686-pc-mingw32/include/zlib.h:508:32: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateEnd OF((z_streamp strm));
^
/usr/i686-pc-mingw32/include/zlib.h:587:42: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT deflateSetDictionary OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:587:42: error: unknown type name 'Bytef'
ZEXTERN int ZEXPORT deflateSetDictionary OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:631:33: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT deflateCopy OF((z_streamp dest,
^
/usr/i686-pc-mingw32/include/zlib.h:631:33: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT deflateCopy OF((z_streamp dest,
^
/usr/i686-pc-mingw32/include/zlib.h:649:34: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT deflateReset OF((z_streamp strm));
^
/usr/i686-pc-mingw32/include/zlib.h:660:35: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT deflateParams OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:681:33: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT deflateTune OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:698:36: error: unknown type name
'z_streamp'
ZEXTERN uLong ZEXPORT deflateBound OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:713:36: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT deflatePending OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:728:34: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT deflatePrime OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:745:38: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT deflateSetHeader OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:745:38: error: unknown type name
'gz_headerp'
ZEXTERN int ZEXPORT deflateSetHeader OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:819:42: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateSetDictionary OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:819:42: error: unknown type name 'Bytef'
ZEXTERN int ZEXPORT inflateSetDictionary OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:842:42: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateGetDictionary OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:842:42: error: unknown type name 'Bytef'
ZEXTERN int ZEXPORT inflateGetDictionary OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:857:33: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateSync OF((z_streamp strm));
^
/usr/i686-pc-mingw32/include/zlib.h:876:33: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateCopy OF((z_streamp dest,
^
/usr/i686-pc-mingw32/include/zlib.h:876:33: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateCopy OF((z_streamp dest,
^
/usr/i686-pc-mingw32/include/zlib.h:892:34: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateReset OF((z_streamp strm));
^
/usr/i686-pc-mingw32/include/zlib.h:902:35: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateReset2 OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:914:34: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflatePrime OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:935:34: error: unknown type name
'z_streamp'
ZEXTERN long ZEXPORT inflateMark OF((z_streamp strm));
^
/usr/i686-pc-mingw32/include/zlib.h:963:38: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateGetHeader OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:963:38: error: unknown type name
'gz_headerp'
ZEXTERN int ZEXPORT inflateGetHeader OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:1025:29: error: expected ';', ',' or ')'
before '*' token
typedef unsigned (*in_func) OF((void FAR *,
^
/usr/i686-pc-mingw32/include/zlib.h:1027:25: error: expected ';', ',' or ')'
before '*' token
typedef int (*out_func) OF((void FAR *, unsigned char FAR *, unsigned));
^
/usr/i686-pc-mingw32/include/zlib.h:1029:33: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateBack OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:1029:33: error: unknown type name 'in_func'
ZEXTERN int ZEXPORT inflateBack OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:1029:33: error: expected ';', ',' or ')'
before '*' token
ZEXTERN int ZEXPORT inflateBack OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:1099:36: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateBackEnd OF((z_streamp strm));
^
/usr/i686-pc-mingw32/include/zlib.h:1160:30: error: unknown type name 'Bytef'
ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
^
/usr/i686-pc-mingw32/include/zlib.h:1160:30: error: unknown type name 'uLongf'
ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
^
/usr/i686-pc-mingw32/include/zlib.h:1160:30: error: unknown type name 'Bytef'
ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
^
/usr/i686-pc-mingw32/include/zlib.h:1174:31: error: unknown type name 'Bytef'
ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen,
^
/usr/i686-pc-mingw32/include/zlib.h:1174:31: error: unknown type name 'uLongf'
ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen,
^
/usr/i686-pc-mingw32/include/zlib.h:1174:31: error: unknown type name 'Bytef'
ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen,
^
/usr/i686-pc-mingw32/include/zlib.h:1197:32: error: unknown type name 'Bytef'
ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen,
^
/usr/i686-pc-mingw32/include/zlib.h:1197:32: error: unknown type name 'uLongf'
ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen,
^
/usr/i686-pc-mingw32/include/zlib.h:1197:32: error: unknown type name 'Bytef'
ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen,
^
/usr/i686-pc-mingw32/include/zlib.h:1569:31: error: unknown type name 'Bytef'
ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
^
/usr/i686-pc-mingw32/include/zlib.h:1600:31: error: unknown type name 'Bytef'
ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len));
^
/usr/i686-pc-mingw32/include/zlib.h:1633:34: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT deflateInit_ OF((z_streamp strm, int level,
^
/usr/i686-pc-mingw32/include/zlib.h:1635:34: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateInit_ OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:1637:35: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT deflateInit2_ OF((z_streamp strm, int level, int method,
^
/usr/i686-pc-mingw32/include/zlib.h:1641:35: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits,
^
/usr/i686-pc-mingw32/include/zlib.h:1643:38: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits,
^
/usr/i686-pc-mingw32/include/zlib.h:1643:38: error: expected ';', ',' or ')'
before '*' token
ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits,
^
In file included from http.c:53:0:
/usr/i686-pc-mingw32/include/zlib.h:1748:27: error: expected '=', ',', ';',
'asm' or '__attribute__' before '*' token
ZEXTERN const z_crc_t FAR * ZEXPORT get_crc_table OF((void));
^
In file included from /usr/i686-pc-mingw32/include/zlib.h:34:0,
from http.c:53:
/usr/i686-pc-mingw32/include/zlib.h:1749:49: error: expected ')' before 'int'
ZEXTERN int ZEXPORT inflateUndermine OF((z_streamp, int));
^
http.c: In function 'gzip_read':
http.c:471:26: warning: assignment from incompatible pointer type
zstream->next_in = gzip_stream->buf+gzip_stream->buf_pos;
^
http.c:473:27: warning: assignment from incompatible pointer type
zstream->next_out = buf+ret_read;
^
http.c:475:9: warning: implicit declaration of function 'inflate'
[-Wimplicit-function-declaration]
zres = inflate(&gzip_stream->zstream, 0);
^
http.c:479:51: error: invalid operands to binary - (have 'int *' and 'BYTE *')
gzip_stream->buf_size -= zstream->next_in -
(gzip_stream->buf+gzip_stream->buf_pos);
^
http.c:480:48: error: invalid operands to binary - (have 'int *' and 'BYTE *')
gzip_stream->buf_pos = zstream->next_in-gzip_stream->buf;
^
http.c:484:13: warning: implicit declaration of function 'inflateEnd'
[-Wimplicit-function-declaration]
inflateEnd(zstream);
^
http.c: At top level:
http.c:526:8: error: unknown type name 'voidpf'
static voidpf wininet_zalloc(voidpf opaque, uInt items, uInt size)
^
http.c:526:30: error: unknown type name 'voidpf'
static voidpf wininet_zalloc(voidpf opaque, uInt items, uInt size)
^
http.c:531:27: error: unknown type name 'voidpf'
static void wininet_zfree(voidpf opaque, voidpf address)
^
http.c:531:42: error: unknown type name 'voidpf'
static void wininet_zfree(voidpf opaque, voidpf address)
^
http.c: In function 'init_gzip_stream':
http.c:546:25: error: 'z_stream' has no member named 'zalloc'
gzip_stream->zstream.zalloc = wininet_zalloc;
^
http.c:546:35: error: 'wininet_zalloc' undeclared (first use in this function)
gzip_stream->zstream.zalloc = wininet_zalloc;
^
http.c:546:35: note: each undeclared identifier is reported only once for each
function it appears in
http.c:547:25: error: 'z_stream' has no member named 'zfree'
gzip_stream->zstream.zfree = wininet_zfree;
^
http.c:547:34: error: 'wininet_zfree' undeclared (first use in this function)
gzip_stream->zstream.zfree = wininet_zfree;
^
http.c:549:5: warning: implicit declaration of function 'inflateInit2_'
[-Wimplicit-function-declaration]
zres = inflateInit2(&gzip_stream->zstream, is_gzip ? 0x1f : -15);
^
make: *** [http.o] Error 1
Any idea how to fix that?
Thank you.
Best regards.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=39096
Bug ID: 39096
Summary: Nvidia Physx uninstaller completely removes PATH
registry key from
'HKLM\System\CurrentControlSet\Control\Session
Manager\Environment'
Product: Wine
Version: 1.7.49
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, Installer
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
Distribution: ---
When creating a new prefix, the registry key
'HKLM\System\CurrentControlSet\Control\Session Manager\Environment\PATH'
contains the paths
C:\windows\system32;C:\windows;C:\windows\system32\wbem
The Nvidia Physx installer adds
'C:\Program Files\NVIDIA Corporation\PhysX\Common'
to the already existing path.
When you remove Physx using 'wine uninstaller', the whole PATH registry key is
removed. The installer should only remove the 'C:\Program Files\NVIDIA
Corporation\PhysX\Common' path, which was added by the installer itself.
1. create a new wineprefix
2. winetricks physx (start regedit and see that the new path was added).
3. launch 'wine uninstaller' and select Physx to remove. After Physx was
removed open regedit and look for the PATH registry key under
'HKLM\System\CurrentControlSet\Control\Session Manager\Environment' ...it's
missing.
Plain terminal output doesn't show too much:
err:msi:msi_dialog_icon_control Failed to load bitmap L"Icon"
err:msi:msiobj_release Invalid handle!
err:msi:msi_dialog_create_controls no handler for element type L"Billboard"
err:msi:msiobj_release Invalid handle!
err:msi:msiobj_release Invalid handle!
wine-1.7.49-41-g36a39ce
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=37225
Bug ID: 37225
Summary: QQ 6.3: QQApp.exe Crashes after login
Product: Wine
Version: 1.7.25
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: penghao(a)linuxdeepin.com
QQ is a popular IM client in China.
1.Download from http://dldir1.qq.com/qqfile/qq/QQ6.3/12369/QQ6.3.exe
2.use "winetrick wenquanyi fakechinese" to fix the problems on Chinese fonts.
3.Start QQ from C:/Program Files/Tencent/QQ/Bin/QQ.exe, and QQ.exe will start
QQApp.exe at background.
4. An error dialog complains the security component of QQ is broken. close the
dialog
5. login with the folloing testing account:
account: 1469264807
Password: winedebug
6. QQ.exe begin to login, then QQApp.exe will crash.
NOTICE:
QQApp.exe has some kind of communication(may be RPC) with QQ.exe, QQApp.exe
can't be started directly.
Winedbg pop info window may not get backtrace in some environment when
QQApp.exe crashes.
QQApp.exe load lua engine to run scripts.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=39028
Bug ID: 39028
Summary: Built-in iexplore crashes when opening forum/blog
entries on hup.hu (crash in get_frame_by_name("yterr")
Product: Wine
Version: 1.7.48
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source
Severity: normal
Priority: P2
Component: mshtml
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
Distribution: ---
Created attachment 51990
--> https://bugs.winehq.org/attachment.cgi?id=51990
terminal output
HUP (Hungarian Unix Portal) is a Hungarian IT portal (not exclusively for
Unix/Linux).
The main page loads properly but opening the forums "fórumok" or blog pages
"blogok" results in a crash shortly after the page was loaded.You can see the
most recent forum posts on the main page, clicking on any of those links also
triggers the crash.
wine iexplore http://hup.hu/
Native IE (whether it is IE6 or IE7) when installed with winetricks works
around the problem.
wine-1.7.48-100-ge3c6777
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=38153
Bug ID: 38153
Summary: Don't work Radmin viewer 3.5
Product: Wine
Version: 1.7.37
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: 7309397(a)live.ru
Os X Yosemmite 10.10.2
wine-devel @1.7.37_0
the main window the application is started. Attempt will be connected outputs
the login/password and after input the appendix is closed
---Cut---
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:Heap32ListFirst : stub
err:tooltips:TOOLTIPS_WindowProc unknown msg 08d1 wp=00000000 lp=00000000
macdrv: Can't store handle for event queue fd
---Cut---
using the version wine-devel @1.7.30_0 everything works!
--Cut---
err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make
sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the
winbind package of your distribution.
fixme:iphlpapi:NotifyAddrChange (Handle 0xecf540, overlapped 0xecf54c): stub
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:Heap32ListFirst : stub
err:tooltips:TOOLTIPS_WindowProc unknown msg 08d1 wp=00000000 lp=00000000
---Cut---
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=39099
Bug ID: 39099
Summary: Wine's msiexec crashes when invoking Nvidia Physx
maintenance tool via 'wine uninstaller -> Modify...'
Product: Wine
Version: 1.7.48
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: dmitry(a)baikal.ru
Regression SHA1: 268cdbbfb627dd64e527bb8603d9f8d8d788f0ae
Distribution: Fedora
Created attachment 52093
--> https://bugs.winehq.org/attachment.cgi?id=52093
terminal output
Steps to reproduce the problem:
1. create a new prefix, install Nvidia Physx: 'winetricks physx'
2. start 'wine uninstaller', select Nvidia Physx entry and click on the
<Modify...> button below --> msiexec crashes
Expected result: the Nvidia maintenance tool should appear, offering to
repair(reinstall) or remove Physx.
The crash was introduced by
commit 268cdbbfb627dd64e527bb8603d9f8d8d788f0ae
Author: Dmitry Timoshkov <dmitry(a)baikal.ru>
Date: Fri Jul 17 17:23:24 2015 +0800
user32: SystemParametersInfo(SPI_GETNONCLIENTMETRICS) should return real
font names.
Reverting the commit on current git or installing Tahoma fonts via winetricks
makes the crash go away for me.
wine-1.7.49-41-g36a39ce
Fedora 22 32-bit
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=39104
Bug ID: 39104
Summary: [win16] installing application cause "Not Enough Disk
Space" MessageBox
Product: Wine
Version: 1.7.49
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: staal1978(a)gmail.com
Distribution: ---
Created attachment 52101
--> https://bugs.winehq.org/attachment.cgi?id=52101
amipro install bug
Installing AmiPro 3.1 (16-bit application) fails with a message box claiming
"not enough disk space".
Two previously abandoned bugs describing the same thing:
https://bugs.winehq.org/show_bug.cgi?id=29156https://bugs.winehq.org/show_bug.cgi?id=19655
To test, I don't know where to get current legal copies of this program. I got
old legal floppies but do not have a floppy drive so I had to get a copy at the
following location:
http://monkey-hole.co.uk/esa/win16/
WINEDEBUG=+relay WINEARCH=win32 WINEPREFIX=/home/jens/.amipro wine
/home/jens/Devel/Wine/amipro31/INSTALL.EXE 2>&1 | cat >
/home/jens/Devel/Wine/amipro31_install_bug.txt
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12454
Summary: iriver plus 3 doesn't start
Product: Wine
Version: 0.9.58.
Platform: PC
URL: http://www.iriver.com/plus/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hewus.owns(a)gmail.com
iriver plus 3 installs, but does not start. I added mfc42u.dll to get rid of
missing dll messages, but it now ends here (0.9.59):
err:module:attach_process_dlls "iDeviceM.dll" failed to initialize, aborting
err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program
Files\\iriver\\iriver plus 3\\iPlus3.exe" failed, status c0000142
I tried yesterday on 0.9.58 and got this:
err:module:LdrInitializeThunk "iDeviceM.dll" failed to initialize, aborting
err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program
Files\\iriver\\iriver plus 3\\iPlus3.exe" failed, status c0000142
The errors are slightly different, if that helps at all. I am able to provide
more debugging if required.
Free download:
http://www.iriver.com.au/iriver/uploads/software/iplus3_setup_full.zip
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.