http://bugs.winehq.org/show_bug.cgi?id=6086
--- Comment #65 from Stefan Dösinger <stefandoesinger(a)gmx.at> 2009-01-20 12:52:37 ---
I disagree on a technical basis that it should be Wine's job to deal with
that(and thus essentially clone the functionality of taskset).
Two points:
1) This is not a Wine-specific problem. There can be Linux apps that are broken
in the same way too. As such Wine is the wrong place to deal with the problem
2) Wine leaves the thread scheduling to the Operating System. It deliberately
doesn't care about where each thread runs, so Windows apps in Wine behave like
normal Linux(MacOS, *BSD, ...) apps.
There's obviously a usability issue now. Wine is the wrong place to fix this,
and distributions usually don't care(because they are Windows apps, and Linux
apps with the same problem are rare, or open source and thus fixable).
--
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=16954
Summary: #defines of LONG_MAX, LONG_MIN and INT_MIN are wrong
Product: Wine
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lkcl(a)lkcl.net
a build of python2.5.2 under msys under wine goes completely tits-up
due to very strange long / int interactions.
the addition of a (long) typecast (around 0xNNNNL!) fixes the problem.
the definitions in the standard wine / mingw32 header files are
completely at odds with standard linux #defines for LONG_MAX and LONG_MIN.
the definition below for INT_MIN matches the standard linux #define,
and has the advantage that it actually works.
+#ifdef __WINE__ /* weird: you have to typecast 0x7fffffffL to long */
+#undef LONG_MAX
+#undef LONG_MIN
+#define LONG_MAX ((long)0x7FFFFFFFL)
+#define LONG_MIN ((long)(-LONG_MAX-1))
+#else
+#ifdef __WINE__
+/* wine's #define of INT_MIN slightly faulty...
+ */
+#undef INT_MIN
+#define INT_MIN (-INT_MAX - 1)
+#endif
+
+
--
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=12728
Summary: Remove CVS/GIT from the list of available Wine versions
Product: WineHQ Bugzilla
Version: unspecified
Platform: Other
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: bugzilla-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dmitry(a)codeweavers.com
With time it becomes very hard to track down to which Wine snapshot the bug
belongs. CVS/GIT tag is confusing, see for instance the bug 12358.
--
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=17043
Summary: Microsoft OneNote 2007 trial doesn't support tablet
because inkobj.dll doesn't implement an interface
Product: Wine
Version: 1.1.13
Platform: Other
URL: http://office.microsoft.com/en-us/onenote
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
When you turn on View / My Pens Toolbar and click on one of the pens, you see
err:ole:create_server class {decbdc16-e824-436e-872d-14e8c7bf7d8b} not
registered
and the dialog
"OneNote requires Microsoft Windows Tablet PC Edition
2005 with Service Pack 2 in order for inking features to work properly."
http://blogs.msdn.com/descapa/archive/2007/02/05/onenote-requires-tablet-pc…
says that this should be provided by inkobj.dll.
--
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=17025
Summary: kDE 4 plasma turns black when I start wine notebook or
wordpad
Product: Wine
Version: 1.1.13
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mcmeijer(a)zonnet.nl
My kde4 plasma widgets turns black when I start wine notebook or wordpad.
When I quit notebook or wordpad the go back to normal again.
--
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=4490
Michael Coupet <compmastermike(a)yahoo.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |compmastermike(a)yahoo.com
--- Comment #18 from Michael Coupet <compmastermike(a)yahoo.com> 2009-01-20 11:25:58 ---
Going one step further, native urlmon allows it to run.
(but doesn't negate the need to ctrl+c
fixme:wtsapi:WTSRegisterSessionNotification Stub 0x10030 0x00000000
err:ntdll:RtlpWaitForCriticalSection section 0x7efec604 "loader.c:
loader_section" wait timed out in thread 0019, blocked by 0009, retrying (60
sec)
)
Unfortunately, after that it doesn't crash and shows the login window, but it
doesn't log in.
fixme:ole:TLB_ReadTypeLib Header type magic 0x00905a4d not supported.
err:ole:TLB_ReadTypeLib Loading of typelib L"C:\\Program Files\\AIM\\AIMAX.dll"
failed with error 0
Native ole32 allows it to log in.
--
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=16969
Summary: utime/stat not accurate enough (truncation to integer
occurring?)
Product: Wine
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lkcl(a)lkcl.net
this is again from the python regression tests, test_os.py.
the result is that os.stat.st_mtime returns 1159195039.00
if get_file_system(test_support.TESTFN) == "NTFS":
def test_1565150(self):
t1 = 1159195039.25
os.utime(self.fname, (t1, t1))
self.assertEquals(os.stat(self.fname).st_mtime, t1)
--
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=16848
Summary: AstroWorld 2004 aborts during program start...
Product: Wine
Version: CVS/GIT
Platform: All
URL: http://www.astroworld.net/ger/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: m.goemmel(a)compulab.de
There is an astrology program available on http://www.astroworld.net/ger (AW
2004 V8.1), which can be downloaded as a trial version for free. Press the
"Download" link and then the first "Download" button to download it. It
installs without any problems but when trying to start a message box with a
(probably program specific) error message occur and the program aborts...
It's not a very specific program interface, it looks more like a normal MFC
application.
Regards
Markus
PS: By the way, this is NOT a duplicate of bug 7735.
--
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=6086
--- Comment #64 from Leslie Houk <lhouk(a)lesliehouk.com> 2009-01-20 10:33:37 ---
(In reply to comment #63)
> There are a few applications which were written for 95/98 that appear broken
> under Wine on SMP systems, indeed one might argue that because Windows 95/98
> never supported SMP that this should be fixed in Wine rather than users having
> to use an external tool to set the affinity, such as schedtool or taskset as a
> workaround. It might not be that difficult to fix (if it is the problem).
I agree, and not just because I was the person who originally submitted this
bug report for MOO2. It appears that the issue is now well defined, and
hopefully not too difficult to remedy. And, as Jeff points out, there are
other applications that are affected by the problem. While I certainly agree
that the lion's share of developer efforts should go toward ensuring the
functionality of newer apps under Wine, I also think that removing any issues
that are well defined and that affect multiple apps is worthwhile, even if the
apps in question are older ones. A user doesn't care that his favorite program
is old; he just knows that his favorite program doesn't run under Wine.
--
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=14491
Summary: window focus error on applications written by Delphi
Product: Wine
Version: unspecified
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comdlg32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: naclx(a)vip.sina.com
When Delphi controls call GetOpenFileName() in comdlg32.dll, the member
"hwndOwner" in the paramter "ofn" is specified to point to the handle of the
window on the toolbar, not the one of the main window as usual.
Therefore, there will be two abnormal phenomena:
1. If choose the "Allow the window manager to control the windows" option in
winecfg, foreground windows in some applications written by Delphi will be
hidden behind the background ones.
2. If not choose the "Allow the window manager to control the windows" option,
no application windows will be shown on the toolbar.
--
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.