http://bugs.winehq.org/show_bug.cgi?id=12076
Summary: Database app refused to install unless
system32/drivers/etc/{services,host} exist
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: NEW
Keywords: Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
A user's informix-based app refused to install until
the empty files c:/windows/system32/drivers/etc/{services,host}
were created, see
http://winehq.org/pipermail/wine-users/2008-March/030256.html
I looked around a bit for other system32/drivers/etc files.
http://support.microsoft.com/kb/130024 describes hosts, services, and protocols
http://support.microsoft.com/kb/105997 describes lmhosts
It looks like some apps find that directory by looking at
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\DataBasePath
and MSN Messenger 7.5 f*cks up by changing that variable's type, see
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6343068
Getting this all right would be a lot of work. Just creating
two empty files might be reasonable, though, since it
allows the user's app to install.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=16666
Summary: wine segfaults on launch
Product: Wine
Version: 1.1.11
Platform: PC
OS/Version: OpenBSD
Status: NEW
Keywords: patch, source
Severity: critical
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=18290)
--> (http://bugs.winehq.org/attachment.cgi?id=18290)
core dump
Now for the biggest bug :-)
Wine segfaults on launch of any program. Even 'wine --version' crashes.
I've got this patch in place (from openbsd's port):
diff --git a/loader/pthread.c b/loader/pthread.c
index 4c0c892..e7f6479 100644
--- a/loader/pthread.c
+++ b/loader/pthread.c
@@ -96,6 +96,12 @@ static void init_thread( struct wine_pthread_thread_info
*info )
/* if base is too large assume it's the top of the stack instead */
if ((char *)info->stack_base > &dummy)
info->stack_base = (char *)info->stack_base - info->stack_size;
+#elif defined(__OpenBSD__)
+ stack_t stack;
+ if (pthread_stackseg_np(pthread_self(), &stack) != 0)
+ abort ();
+ info->stack_base = (char *)stack.ss_sp - stack.ss_size;
+ info->stack_size = stack.ss_size;
#else
/* assume that the stack allocation is page aligned */
char dummy;
@@ -163,6 +169,8 @@ static void init_current_teb( struct
wine_pthread_thread_info *info )
info->pid = getpid();
#ifdef __sun
info->tid = pthread_self(); /* this should return the lwp id on solaris
*/
+#elif defined(__OpenBSD__)
+ info->tid = pthread_self();
#elif defined(__APPLE__)
info->tid = mach_thread_self();
#elif defined(__FreeBSD__)
Though, it still segfaults without it.
wine-pthread.core attached
--
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.
http://bugs.winehq.org/show_bug.cgi?id=18175
Summary: AutoCAD 2008: Pop menu in Text Formating doesn't work
correctly
Product: Wine
Version: 1.1.19
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=20643)
--> (http://bugs.winehq.org/attachment.cgi?id=20643)
Image showing popup menu
I'm using wine-1.1.19-271-g0a42190 (compiled using gcc version 4.3.2 20081105
(Red Hat 4.3.2-7) ) on Fedora 10 i386.
The problem is that when i want to go with mouse pointer below first separation
line of popup menu then this popup menu disappears and I cannot choose anything
below this separator.
I can navigate below this separator only with keyboard but when i press left or
right arrow the popup menu again disappears which doesn't happen when i try do
the same with everything above this separator.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=18263
Summary: AutoCAD 2008: Insert Ole Object window doesn't show up
Product: Wine
Version: 1.1.20
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=20787)
--> (http://bugs.winehq.org/attachment.cgi?id=20787)
How should it looks like
I'm using Wine 1.1.20 (compiled from source using gcc version 4.3.2 20081105
(Red Hat 4.3.2-7) ) on Fedora 10 i386. I've got installed corefonts dotnet20
gdiplus gecko msxml3 vcrun2003 through winetricks.
The problem is with "Insert->Ole Object..." which i can choose in popup menu in
AutoCAD 2008. It doesn't show up anything.
In terminal there were:
fixme:ole:OleUIInsertObjectW (0x7bdf094): stub
--
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.
http://bugs.winehq.org/show_bug.cgi?id=10955
Summary: Palm Desktop fixme's and errors in install and execute
Product: Wine
Version: 0.9.49.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gc11772(a)optonline.net
Created an attachment (id=9891)
--> (http://bugs.winehq.org/attachment.cgi?id=9891)
Installing palm desktop
Installing Palm Desktop, get many fixme's and a few errors.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=16766
Summary: Gothic: drawing error on initial window resize to
fullscreen (title bar)
Product: Wine
Version: 1.1.12
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine(a)codemadness.org
Drawing error on initial window resize to fullscreen (title bar)
--
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.
http://bugs.winehq.org/show_bug.cgi?id=14340
Summary: Dungeon Keeper 2 crashes after 10min with unhandled page
fault
Product: Wine
Version: 1.1.0
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hewus.owns(a)gmail.com
Created an attachment (id=14635)
--> (http://bugs.winehq.org/attachment.cgi?id=14635)
Crash log of standard debug output
Dungeon Keeper 2 crashes after working just fine for about 10 minutes. I have
experienced this twice now (out of two attempts at playing a game). I was
playing normally, and noticed no apparent trigger that caused the crash. Both
crashes happened at around 10 minutes into the game (although I didn't
accurately time them).
Using native dinput.dll due to bug 13290. Let me know if additional debug
output is required.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=12060
Summary: Three bugs in MilkDrop Visualization in WinAMP 5.5.2
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://download.nullsoft.com/winamp/client/winamp552_ful
l_en-us.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: t.artem(a)mailcity.com
Created an attachment (id=11432)
--> (http://bugs.winehq.org/attachment.cgi?id=11432)
The way it looks like (red lines are painted intentionally)
1) Direct3D window is not placed withing its parent window
2) Some visualizations cause Direct3D window to be split weirdly (vertically by
two regions, then left region is split into two, and so on).
3) F1 button which has to show a help window within Direct3D window shows
garbage
Screenshot is attached.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=18970
Summary: COM components referencing invalid CLSID's
(appinstall)
Product: Wine
Version: 1.1.21
Platform: PC
URL: http://www.ccleaner.com/download
OS/Version: Linux
Status: NEW
Keywords: download, source
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Found while testing CCleaner for appinstall, wine's got ~10 registry errors.
I've sent patches for a few of them, but I'm not as sure on these...
First one:
The COM component IImgCtx references an invalid CLSID. These are often left
behind after uninstalling software.
Solution: Delete the registry value.
Registry value in question:
ActiveX/COM Issue IImgCtx - {3050F3D6-98B5-11CF-BB82-00AA00BDCE0B}h
HKCR\IImgCtx
Second one:
The COM component CLSID\{5CE34C0D-0DC9-4C1F-897C-DAA1B78CEE7C} references an
invalid CLSID. These are often left behind after uninstalling software.
Solution: Delete the registry value.
Registry entry:
ActiveX/COM Issue InProcServer32\C:\windows\system32\qmgrprxy.dll
HKCR\CLSID\{5CE34C0D-0DC9-4C1F-897C-DAA1B78CEE7C}
--
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.
http://bugs.winehq.org/show_bug.cgi?id=13021
Summary: ConvertXToDVD don't load the templates combobox.
Product: Wine
Version: 0.9.61.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P5
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaysonsantos2003(a)yahoo.com.br
Hello people, I have tried the wine irc but no responses.
In older versions of wine that list works fine, when trie to load a new
template I receive Index of Bounds.
In console the errors messages don't change.
The unique error is in screenshot attached.
Best Regards
Jayson Reis
--
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.