http://bugs.winehq.org/show_bug.cgi?id=19652
Summary: iTunes becomes unresponsive while navigating music
store
Product: Wine
Version: 1.1.27
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pieter.ideler(a)gmail.com
When you navigate to albums and pages on the iTunes Music Store in iTunes,
iTunes becomes unresponsive from time to time. (it is grayed out in Ubuntu)
Later on it becomes responsive again. This happens between almost every page
you navigate to.
--
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=10803
Summary: iTunes 7.3 no longer functions after upgrading Wine to
0.9.51
Product: Wine
Version: 0.9.51.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: linux(a)xstylus.com
In Wine versions 0.9.50 and prior, iTunes 7.3 functions. However, when
upgrading to 0.9.51, iTunes 7.3 will no longer function.
A fresh installation of Wine 0.9.51 was installed on my machine, and then
itunes 7.3 installed. iTunes 7.3 still would not run. Reverting back to 0.9.50
would not solve the problem either.
I was only able to solve the problem by reverting to 0.9.50 AND purging my
.wine folder.
Instructions for installing Wine 7.3 can be found at:
http://wine-review.blogspot.com/2007/10/itunes-73-on-linux-with-wine.html
--
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=24073
Summary: iTunes 9.0.0.70 crashes on first run
Product: Wine
Version: 1.3.1
Platform: x86
URL: http://www.oldapps.com/itunes.php?old_itunes=48?downlo
ad
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rusivi1(a)gmail.com
Created an attachment (id=30267)
--> (http://bugs.winehq.org/attachment.cgi?id=30267)
wine1.3.1: wine C:\\Program\ Files\\iTunes\\iTunes.exe >>log.txt 2&>1
Compiled newest dev wine from source (1.3.1), performed iTunes install with
defaults accepted except:
+ Unclicked "Use iTunes as the default player for audio files"
+ Unclicked "Automatically update iTunes and other Apple software"
+"AutoRun is turned off. iTunes won't be able to recognize when a CD is
inserted or ejected until your computer's AutoRun setting is turned on. Do you
want iTunes to turn on AutoRun for you?" No
Upon seemingly successful install, ran for first time:
+ Unclicked "Add MP3 and AAC files"
+ Choose "Yes, keep my iTunes Media Folder organized"
+ Dialog box noting, "Warning! iTunes was not properly installed. If you wish
to import or burn CDs, you need to reinstall iTunes."
The second the iTunes GUI popped up, I got a dialog box noting how "The program
iTunes.exe has encountered a serious problem and needs to close. We are sorry
for the inconvenience. This can be caused by a program..."
--
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=23609
Summary: iTunes 9.2 GUI bricks when opened with wine-1.2-rc7,
Ubuntu 10.04
Product: Wine
Version: 1.2-rc7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rusivi1(a)gmail.com
Created an attachment (id=29530)
--> (http://bugs.winehq.org/attachment.cgi?id=29530)
iTunes GUI bricked
After installing a plain vanilla wine-1.2-rc7 from source, no winetricks,
downloaded and installed iTunes 9.2 from http://www.apple.com/itunes/download/
The installer ran seemingly successfully.
Open iTunes via desktop GUI icon, iTunes main screen pops up but is bricked,
nothing can be clicked and the window cannot be moved.
--
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=22177
Summary: Standalone version of DivX fails to install
Product: Wine
Version: 1.1.41
Platform: x86
URL: http://download.divx.com/divx/standalone/DivXInstaller
.exe
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=27057)
--> (http://bugs.winehq.org/attachment.cgi?id=27057)
Terminal output on Wine 1.1.41
Steps to reroduce:
1) remove ~/.wine
2) wine DivXInstaller.exe
3) accept licence and press next
4) get Wine error
--
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=12071
Summary: MSI SQL joins on tables with many rows are extremely
slow
Product: Wine
Version: 0.9.57.
Platform: PC
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: msi
AssignedTo: truiken(a)gmail.com
ReportedBy: truiken(a)gmail.com
CC: ead1234(a)hotmail.com
With the current implementation of MSI SQL joins, we perform a Cartesian
product on the tables joined together. In the case where there is no WHERE
clause, this is the correct output, but if there is a WHERE clause, we still
perform the Cartesian product and then filter on the WHERE clause. Though it's
uncommon, there are a few installers (Visual Studio, Nero Express 7) that join
tables with thousands of rows. For example, say we have tables A, B, and C
s.t.
colA colB colC
----- ----- -----
1 1 1
2 2 2
... ... ...
1000 1000 1000
and we have the query
SELECT * FROM A, B, C WHERE `colA`=1 AND `colB`=1 AND `colC`=1
then the current implementation will create a new table with those columns
containing 1000*1000*1000=1 billion rows. Then we check each of the 1 billion
rows for any matches. There are several algorithms for optimizing joins:
http://en.wikipedia.org/wiki/Join_(SQL)#Join_algorithms
The solution I'll be working on is the merge join. This solution parses the
WHERE clause, starting with the two tables that the columns of the clause
belong to (colA -> A, colB -> B, etc) and joins those together, making sure to
eliminate rows based on the WHERE clause. Then the next table in the clause is
merged into the previously created table, eliminating rows. This continues
until there are no tables left. One optimization of this solution is to start
with parts of the WHERE clause that compare against literals. For example, the
query:
SELECT * FROM A, B, C WHERE `colA` = `colB` AND `colB` = 1 AND `colC` = 1
We'd start with "`colB` = 1" since the comparison is against a literal. We
perform 1000 comparisons on the rows of table B (count = 1000). The resulting
table is:
colB
----
1
then we do the same for table C (count = 1000), and the merged table is:
colB colC
---- ----
1 1
next we merge this table with table A:
colA colB colC
---- ---- ----
1 1 1
2 1 1
... ... ...
1000 1 1
and we search through this table for the condition `colA` = `colB` (count =
1000). So we've reduced billions of comparisons to 3000.
Unfortunately, the way our SQL engine is implemented, this will not be an easy
task.
--
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=26010
Summary: NI_Multisim won't install
Product: Wine
Version: 1.3.9
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: business.kid(a)gmail.com
http://www.ni.com/multisim/
I have given this a garbage rating and the page says to file a bug, so here
goes.
You register, and it gives you a downloader. Running the downloader, it slowly
downloads 464mb and writes a file of length 0 bytes :-//. So I used m$, which
is in the house, to download, and tried installing. I have a user set up just
for this, so I can wipe, hack, etc without upsetting anything.
After previous failed attempts I read errors and ran
winetricks gecko corefonts dotnet20sp2 vcrun6sp6 and stuck in dlls as native,
but that didn't help
It seems to want to do these steps
1. Unzip to C:\National Instruments Download - with coaxing it succeeds.
msiexec.exe & setup.exe each consume 49.x% of cpu. msiexec.exe rises to 99% if
keyboard input is wanted. msiexec then took off and grabbed the cpu with no
keyboard input wanted, so I killed it and setup moved on.
2. Next step is to take my name, license number (I used the trial version
option) and setup.exe grabs the cpu until it bombs. It actually works, but I
gather some threads are idle or have crashed, and idle seems to grab full cpu.
It spews msi errors - sampled below
fixme:msi:MsiGetFeatureValidStatesW 1 L"Core.MIFMUI" 0xfce320 stub returning 8
fixme:volume:GetVolumePathNameW (L"C:\\Program Files\\", 0x865818, 19), stub!
fixme:sxs:cache_QueryAssemblyInfo 0x2233470, 0x00000001, L"Microsoft.VC80.CRT,
version=8.0.50727.4053, publicKeyToken=1fc8b3b9a1e18e3b,
processorArchitecture=x86", 0x20fe1d8
fixme:msi:msi_unimplemented_action_stub MsiUnpublishAssemblies -> 10 ignored
L"MsiAssembly" table values
err:msi:ITERATE_Actions Execution halted, action
L"DD_CA_ComregEnterpriseServicesRB_X86.3643236F_FC70_11D3_A536_0090278A1BB8"
returned 1603
fixme:msi:MsiGetMode unimplemented run mode: 0
fixme:advapi:SetNamedSecurityInfoW L"[AAAAAA.LV.NIEF900]\\" 1 4 (nil) (nil)
0x2267efc (nil)
The output onscreen is "Installing .NET 2.0" (already installed) It's step 2 of
6 on the Elvis install, and step 5 of 33 on the full multisim install. After
more msi errors than I considered possible, it craps out executing invalid
instructions on an seh error.
if left running for several hours, it will make C:\National Instruments fill
that with about 500 Megs. It does install a Program\ Filed/blah/blah/Shared
directory with 150 Megs of 8--megs - 1 gig expected.
I have this user here. Tell me what debug trace you'd like and I'll run it.
--
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=10314
Summary: Switched On Schoolhouse 2000 fails to start up
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://www.familychristianacademy.com/SOStest.html
OS/Version: other
Status: NEW
Keywords: download
Severity: enhancement
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
While looking at bug 10313, I went looking for a
freely downloadable version of Switched-on Schoolhouse.
The only thing I found so far was a free downloadable placement test
for a school which seems to have been
made with Switched On Schoolhouse 2000.
When you run it, it locks up your X session, and you have
to do alt-control-backspace to shut down the X server
to regain control.
--
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=25343
Summary: mstsc fails when using rdp 7 client protocol
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rgilland1966(a)gmail.com
mstsc fails when using rdp 7 client protocol
error is critical failure
--
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=15270
Summary: Newest MapSource version (6.14.1) doesn't run anymore
with wine 1.1.4
Product: Wine
Version: 1.1.4
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sbuehne(a)web.de
Created an attachment (id=16066)
--> (http://bugs.winehq.org/attachment.cgi?id=16066)
wine error during startup of mapsource
I could run successfully mapsource version 6.11 inlcuding all functions with
wine version 1.1.4 on openSuse 11.0
After applying an upgrade to the software mapsource, wine crashes during
program start with the error message:
...
wine: Unhandled page fault on write access to 0x003c1000 at address 0x9863ab
(thread 0009), starting debugger...
Unhandled exception: page fault on write access to 0x003c1000 in 32-bit code
(0x009863ab).
Register dump:
CS:0073 SS:007b DS:007b ES:007b FS:0033 GS:003b
EIP:009863ab ESP:0033e0b8 EBP:0033e0c0 EFLAGS:00010202( - 00 - -RI1)
EAX:003c0000 EBX:011d0d70 ECX:01ffffce EDX:00000000
ESI:011d1d70 EDI:003c1000
..
I have created a trace file for this error with the command:
echo quit | WINEDEBUG=+relay wine MapSource.exe >& filename.out;
and tailed the last 1000 lines to the attached log file, inlcuding the error
message.
--
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.