[Bug 103537]

2020-11-30 Thread Focht
Created attachment 68725
Compiled Java test case to demonstrate ChoosePixelFormat PFD_SUPPORT_GDI issue

Hello folks,

I've precompiled the small Java test app and attach it here for
reference.

Copy/pasta source and instructions from my previous comment #13

--- snip ---
// compile:  wine "c:\\jdk1.3.0_03\\bin\\javac.exe" -g GraphicsTest.java
// run:  wine "c:\\jdk1.3.0_03\\bin\\java.exe" GraphicsTest

import java.awt.*;

public class GraphicsTest {

public static void main(String[] args) {

GraphicsEnvironment ge = GraphicsEnvironment.
getLocalGraphicsEnvironment();
GraphicsDevice[] gs = ge.getScreenDevices();
for (int j = 0; j < gs.length; j++) {

System.err.println("Getting config for " + gs[j].getIDstring());
long startTime = System.currentTimeMillis() ;
GraphicsConfiguration[] gc = gs[j].getConfigurations();
System.err.println("Finished in " + (System.currentTimeMillis() - 
startTime) + " milliseconds");
}
}
}
--- snip ---

It should print:

--- snip ---
Unable to create a suitable default GraphicsConfiguration.  Try changing your 
Display Settings.
at sun.awt.Win32GraphicsDevice.getDefaultPixID(Native Method)
at 
sun.awt.Win32GraphicsDevice.getConfigurations(Win32GraphicsDevice.java:73)
at GraphicsTest.main(GraphicsTest.java:17)
--- snip ---

After fixing the problem:

--- snip ---
Getting config for \Display0
Finished in 45 milliseconds
Getting config for \Display1
Finished in 3 milliseconds
--- snip ---

(I have two monitors)

Regards

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/103537

Title:
  rosetta stone won't install via WINE

To manage notifications about this bug go to:
https://bugs.launchpad.net/wine/+bug/103537/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 103537]

2020-11-30 Thread Dan Kegel
I tip my hat to you, sir!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/103537

Title:
  rosetta stone won't install via WINE

To manage notifications about this bug go to:
https://bugs.launchpad.net/wine/+bug/103537/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 103537]

2020-11-30 Thread Focht
n 1 flags 36 type 0 
color 32 8,8,8,8 accum 0 depth 0 stencil 0 aux 0 PFD_DRAW_TO_WINDOW 
PFD_SUPPORT_OPENGL 
java.lang.RuntimeException: 
Unable to create a suitable default GraphicsConfiguration.  Try changing your 
Display Settings.
at sun.awt.Win32GraphicsDevice.getDefaultPixID(Native Method)
at 
sun.awt.Win32GraphicsDevice.getConfigurations(Win32GraphicsDevice.java:73)
at GraphicsTest.main(GraphicsTest.java:13)
Exception in thread "main" 
--- snip --- 

https://source.winehq.org/git/wine.git/blob/cbca9f847f60773b4e7e5408f6a079f4896c5c1e:/include/wingdi.h#l90

--- snip ---
...
  90 #define PFD_DOUBLEBUFFER  0x0001
  91 #define PFD_STEREO0x0002
  92 #define PFD_DRAW_TO_WINDOW0x0004
  93 #define PFD_DRAW_TO_BITMAP0x0008
  94 #define PFD_SUPPORT_GDI   0x0010
  95 #define PFD_SUPPORT_OPENGL0x0020
  96 #define PFD_GENERIC_FORMAT0x0040
...
--- snip ---

To recap from above JDK snippets:

--- snip ---
PIXELFORMATDESCRIPTOR pfd = {
sizeof(PIXELFORMATDESCRIPTOR),
1,   //version
REQUIRED_FLAGS,  //flags
0,   //iPixelType
0,   //cColorBits
0,0,0,0,0,0,0,0, //cRedBits, cRedShift, green, blue, alpha
0,0,0,0,0,   //cAccumBits, cAccumRedBits, green, blue, alpha
0,0,0,0,0,0,0,0  //etc.
};
--- snip --

REQUIRED_FLAGS = PFD_SUPPORT_GDI (16) | PFD_DRAW_TO_WINDOW (4) = 20 =
0x14

https://source.winehq.org/git/wine.git/blob/cbca9f847f60773b4e7e5408f6a079f4896c5c1e:/dlls/opengl32/wgl.c#l448

--- snip ---
 448 /***
 449  *  wglChoosePixelFormat (OPENGL32.@)
 450  */
 451 INT WINAPI wglChoosePixelFormat(HDC hdc, const PIXELFORMATDESCRIPTOR* ppfd)
 452 {
 453 PIXELFORMATDESCRIPTOR format, best;
 454 int i, count, best_format;
 455 int bestDBuffer = -1, bestStereo = -1;
 456 
 457 TRACE_(wgl)( "%p %p: size %u version %u flags %u type %u color %u 
%u,%u,%u,%u "
 458  "accum %u depth %u stencil %u aux %u\n",
 459  hdc, ppfd, ppfd->nSize, ppfd->nVersion, ppfd->dwFlags, 
ppfd->iPixelType,
 460  ppfd->cColorBits, ppfd->cRedBits, ppfd->cGreenBits, 
ppfd->cBlueBits, ppfd->cAlphaBits,
 461  ppfd->cAccumBits, ppfd->cDepthBits, ppfd->cStencilBits, 
ppfd->cAuxBuffers );
 462 
 463 count = wglDescribePixelFormat( hdc, 0, 0, NULL );
 464 if (!count) return 0;
 465 
 466 best_format = 0;
 467 best.dwFlags = 0;
 468 best.cAlphaBits = -1;
 469 best.cColorBits = -1;
 470 best.cDepthBits = -1;
 471 best.cStencilBits = -1;
 472 best.cAuxBuffers = -1;
 473 
 474 for (i = 1; i <= count; i++)
 475 {
 476 if (!wglDescribePixelFormat( hdc, i, sizeof(format), &format )) 
continue;
 477 
 478 if ((ppfd->iPixelType == PFD_TYPE_COLORINDEX) != 
(format.iPixelType == PFD_TYPE_COLORINDEX))
 479 {
 480 TRACE( "pixel type mismatch for iPixelFormat=%d\n", i );
 481 continue;
 482 }
 483 
 484 /* only use bitmap capable for formats for bitmap rendering */
 485 if( (ppfd->dwFlags & PFD_DRAW_TO_BITMAP) != (format.dwFlags & 
PFD_DRAW_TO_BITMAP))
 486 {
 487 TRACE( "PFD_DRAW_TO_BITMAP mismatch for iPixelFormat=%d\n", i 
);
 488 continue;
 489 }
...
 590 if (ppfd->cAuxBuffers)
 591 {
 592 if (((ppfd->cAuxBuffers > best.cAuxBuffers) && 
(format.cAuxBuffers > best.cAuxBuffers)) ||
 593 ((format.cAuxBuffers >= ppfd->cAuxBuffers) && 
(format.cAuxBuffers < best.cAuxBuffers)))
 594 goto found;
 595 
 596 if (best.cAuxBuffers != format.cAuxBuffers)
 597 {
 598 TRACE( "aux mismatch for iPixelFormat=%d\n", i );
 599 continue;
 600 }
 601 }
 602 continue;
 603 
 604 found:
 605 best_format = i;
 606 best = format;
 607 bestDBuffer = format.dwFlags & PFD_DOUBLEBUFFER;
 608 bestStereo = format.dwFlags & PFD_STEREO;
 609 }
 610 
 611 TRACE( "returning %u\n", best_format );
 612 return best_format;
 613 }
--- snip ---

I think if 'PFD_SUPPORT_GDI' flag is passed to 'wglChoosePixelFormat'
and the available pixelformat doesn't support 'PFD_SUPPORT_GDI' it
should skip the format as candidate (no match) -> resulting in Java
pixFmtID == 0 case (uses fallback).

I've tested this and it made the installer(s) work.

I'm not an expert on this topic though, maybe one Wine x11/opengl dev
has an idea what's the correct way.

This will fix the startup of various installers using Java/AWT.

$ wine --version
wine-5.22

Regards

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/103537

Title:
  rosetta stone won't install via WINE

To manage notifications about this bug go to:
https://bugs.launchpad.net/wine/+bug/103537/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 103537]

2020-08-29 Thread Jeremielapuree
Does the bug still occur with wine-5.15?
Unable to find a download to test by myself.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/103537

Title:
  rosetta stone won't install via WINE

To manage notifications about this bug go to:
https://bugs.launchpad.net/wine/+bug/103537/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 103537]

2018-11-22 Thread Jeremielapuree
Is still a bug in current wine(3.20)?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/103537

Title:
  rosetta stone won't install via WINE

To manage notifications about this bug go to:
https://bugs.launchpad.net/wine/+bug/103537/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 103537] Re: rosetta stone won't install via WINE

2018-05-20 Thread Bug Watch Updater
Launchpad has imported 11 comments from the remote bug at
https://bugs.winehq.org/show_bug.cgi?id=7767.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2007-03-16T17:59:21+00:00 Dan Kegel wrote:

$ wine SRIWS.exe
Invocation of this Java Application has caused an InvocationTargetException.
This application will now exit. (LAX)

Stack Trace:
java.lang.NoClassDefFoundError
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Unknown Source)
at java.awt.Toolkit$2.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.awt.Toolkit.getDefaultToolkit(Unknown Source)
at sun.awt.GlobalCursorManager$CursorEvent.(Unknown Source)
at sun.awt.GlobalCursorManager.(Unknown Source)
at java.awt.Cursor.initIDs(Native Method)
at java.awt.Cursor.(Unknown Source)
at java.awt.Window.(Unknown Source)
at java.awt.Frame.(Unknown Source)
at java.awt.Frame.(Unknown Source)
at com.zerog.ia.installer.Main.c(Unknown Source)
at com.zerog.ia.installer.Main.main(Unknown Source)
at java.lang.reflect.Method.invoke(Native Method)
at com.zerog.lax.LAX.launch(Unknown Source)
at com.zerog.lax.LAX.main(Unknown Source)

Sadly, WINEDEBUG=+relay causes the installer to abort early, 
so I didn't learn anything with that.

Looking at +file, I see the last file opened before the crash was 
C:\\windows\\temp\\i1174067555\\windows\\resource\\jre\\bin\\awt.dll
That JRE seems to be Sun's J2RE Version 1.3.1.

You can use a different JRE, but you have to tell the installer to do it.
I haven't tried this yet, but there is some doc on how to do it here:
http://www.zerog.com/iamanual/usermanual_ia45/user_guides/contents.htm

Reply at:
https://bugs.launchpad.net/ubuntu/+source/wine/+bug/103537/comments/0


On 2008-03-17T20:34:33+00:00 Dan Kegel wrote:

Affected apps:

Reading Counts:
http://www.winehq.org/pipermail/wine-users/2007-March/024687.html
Rosetta Stone 2.1.3A
http://www.winehq.org/pipermail/wine-users/2006-May/021913.html
Encyclopedia britanica "World Religions",
http://groups.google.com/group/comp.emulators.ms-windows.wine/msg/43b22fe017d15b91
Unknown, but maybe anything built with DashO:
http://winehq.org/pipermail/wine-users/2008-March/030280.html

Reply at:
https://bugs.launchpad.net/ubuntu/+source/wine/+bug/103537/comments/7


On 2008-03-17T20:43:39+00:00 Dan Kegel wrote:

Bug 8571 may be a dup of this one.
http://bugs.winehq.org/attachment.cgi?id=6569 shows how to
reproduce the error with a naked jre.
http://appdb.winehq.org/objectManager.php?sClass=version&iId=7390
seems to have a recipe for getting past this for at least one app.


Reply at: https://bugs.launchpad.net/ubuntu/+source/wine/+bug/103537/comments/8


On 2008-03-20T03:19:25+00:00 Jjmckenzie51-v wrote:

Dan:

You are correct in the duplicate, but bug 8571 has a link to a very good
description of why this error occurs and what to do to fix it. Leaving
this for you to mark as a duplicate.

BTW, Java 1.3 is VERY old and I think it is not maintained by Sun
anymore.  However, if we need to support this, development effort should
be expended but not in favor of other higher priority problems/bugs.

James

Reply at:
https://bugs.launchpad.net/ubuntu/+source/wine/+bug/103537/comments/9


On 2008-10-06T05:47:56+00:00 Austin English wrote:

Dupe

*** This bug has been marked as a duplicate of bug 8571 ***

Reply at:
https://bugs.launchpad.net/ubuntu/+source/wine/+bug/103537/comments/15


On 2008-10-06T08:36:38+00:00 Dmitry-baikal wrote:

Closing.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/wine/+bug/103537/comments/16


On 2008-10-06T08:36:51+00:00 Dmitry-baikal wrote:

Closing.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/wine/+bug/103537/comments/17


On 2010-08-19T08:15:01+00:00 Focht wrote:

*** Bug 21126 has been marked as a duplicate of this bug. ***

Reply at:
https://bugs.launchpad.net/ubuntu/+source/wine/+bug/103537/comments/19


On 2014-03-18T08:39:21+00:00 Focht wrote:

Hello folks,

--- quote ---
You are correct in the duplicate, but 

[Bug 103537] Re: rosetta stone won't install via WINE in Feisty

2018-05-19 Thread Rolf Leggewie
** Bug watch added: Wine Bugzilla #7767
   https://bugs.winehq.org/show_bug.cgi?id=7767

** Changed in: wine
   Importance: Medium => Unknown

** Changed in: wine
   Status: Invalid => Unknown

** Changed in: wine
 Remote watch: Wine Bugzilla #8571 => Wine Bugzilla #7767

** Summary changed:

- rosetta stone won't install via WINE in Feisty
+ rosetta stone won't install via WINE

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/103537

Title:
  rosetta stone won't install via WINE

To manage notifications about this bug go to:
https://bugs.launchpad.net/wine/+bug/103537/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 103537]

2014-04-02 Thread Bruno Gonçalves de Jesus
Closing duplicate bugs.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/103537

Title:
  rosetta stone won't install via WINE in Feisty

To manage notifications about this bug go to:
https://bugs.launchpad.net/wine/+bug/103537/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 103537]

2014-04-02 Thread Focht
Hello folks,

this is dupe of bug 7767 which targets all Zero-G (LAX) based
installers, not the other way around...

Regards

*** This bug has been marked as a duplicate of bug 7767 ***

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/103537

Title:
  rosetta stone won't install via WINE in Feisty

To manage notifications about this bug go to:
https://bugs.launchpad.net/wine/+bug/103537/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 103537] Re: rosetta stone won't install via WINE in Feisty

2014-03-21 Thread Bug Watch Updater
** Changed in: wine
   Status: Confirmed => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/103537

Title:
  rosetta stone won't install via WINE in Feisty

To manage notifications about this bug go to:
https://bugs.launchpad.net/wine/+bug/103537/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 103537]

2013-07-01 Thread Butraxz
This ticket has not been updated for over 850 days.

Is this still an issue in wine version 1.6-rc4 or higher or is this to
be closed as abandoned ?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/103537

Title:
  rosetta stone won't install via WINE in Feisty

To manage notifications about this bug go to:
https://bugs.launchpad.net/wine/+bug/103537/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 103537] Re: rosetta stone won't install via WINE in Feisty

2011-02-14 Thread leighman
** Changed in: wine (Ubuntu)
   Status: Invalid => Triaged

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/103537

Title:
  rosetta stone won't install via WINE in Feisty

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 103537]

2011-02-14 Thread bitinerant
Created an attachment (id=33267)
log of install attempt - Rosetta Stone v2.1.5.3Asms under Wine 1.2.2

(In reply to comment #8)
> Is this still an issue in current (1.2-rc2 or newer) Wine?

Yes, although the symptoms are different.  I tried installing Rosetta
Stone v2.1.5.3Asms under Wine 1.2.2.  Log attached.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/103537

Title:
  rosetta stone won't install via WINE in Feisty

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 103537] Re: rosetta stone won't install via WINE in Feisty

2010-09-15 Thread Bug Watch Updater
Launchpad has imported 9 comments from the remote bug at
http://bugs.winehq.org/show_bug.cgi?id=8571.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2007-06-02T15:45:44+00:00 Dan Kegel wrote:

There is a free demo, but you have to send away for the CD-ROM.
The installer aborts with a java error,
also described here:
http://www.spinics.net/lists/wine/msg24150.html
The installer has an embedded copy of Java, namely
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_11-b02)
The error message helpfully prints out the exact command
used to invoke java, and this actually reproduces
the error if you run it by hand, which makes for a much
shorter log.

This may be a dup of bug 7767, but at least Rosetta Stone
has a free demo, which can't be said of the app in 7767.

Reply at: https://bugs.launchpad.net/wine/+bug/103537/comments/1


On 2007-06-02T15:47:37+00:00 Dan Kegel wrote:

Created an attachment (id=6569)
Script showing how to invoke the failing java command, taken from log file.

Reply at: https://bugs.launchpad.net/wine/+bug/103537/comments/2


On 2007-08-18T09:44:04+00:00 Dan Kegel wrote:

The appdb entry shows how to run the installer with your own JVM,
which gets you to the next problem...

Reply at: https://bugs.launchpad.net/wine/+bug/103537/comments/5


On 2008-03-28T17:43:03+00:00 Dan Kegel wrote:

Still not working today.  Often seems to hang.
Sometimes aborts with a font-y sort of stack dump
which 'winetricks corefonts' might help.  But tracking
this down is frustrating as it usually seems to hang
(right after loading awt?)

Reply at: https://bugs.launchpad.net/wine/+bug/103537/comments/6


On 2008-06-26T19:56:11+00:00 Scott Ritchie wrote:

Does this still fail in 1.0?  It seems like later versions of Rosetta
install according to AppDB.

Reply at: https://bugs.launchpad.net/wine/+bug/103537/comments/7


On 2008-09-04T00:23:45+00:00 Jthorn wrote:

Created an attachment (id=15823)
This is the output from the terminal window

I'm running Ubuntu Hardy Heron and have been updating Wine regularly.
The Rosetta Stone version is 2.1.5.3A.  Alas, I still cannot run Rosetta
Stone and was hoping that if I contributed my error messages as well it
would provide a more knowledgeable person with the information they
needed to solve the problem.  Attached is the terminal window output
after running "wine autorun.exe" off of the installation CD.  Until I
figure out how to put two attachments on a single comment, I will post
another comment with the log file mentioned in the terminal output.

Many thanks,
- Jon

Reply at: https://bugs.launchpad.net/wine/+bug/103537/comments/8


On 2008-09-04T00:27:35+00:00 Jthorn wrote:

Created an attachment (id=15824)
Error log from trying to install Rosetta Stone

And this is the log file I mentioned in the previous Comment.

Many thanks,
- Jon

Reply at: https://bugs.launchpad.net/wine/+bug/103537/comments/9


On 2008-10-06T00:47:56+00:00 austin_is wrote:

*** Bug 7767 has been marked as a duplicate of this bug. ***

Reply at: https://bugs.launchpad.net/wine/+bug/103537/comments/10


On 2010-06-08T17:51:22+00:00 Dimesio wrote:

Is this still an issue in current (1.2-rc2 or newer) Wine?

Reply at: https://bugs.launchpad.net/wine/+bug/103537/comments/11


** Changed in: wine
   Importance: Unknown => Medium

-- 
rosetta stone won't install via WINE in Feisty
https://bugs.launchpad.net/bugs/103537
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 103537] Re: rosetta stone won't install via WINE in Feisty

2010-09-13 Thread rusivi1
We are closing this bug report because it lacks the information we need
to investigate the problem, as described in the previous comments.
Please reopen it if you can give us the missing information, and don't
hesitate to submit bug reports in the future. To reopen the bug report
you can click on the current status, under the Status column, and change
the Status back to "New". Thanks again!

** Changed in: wine (Ubuntu)
   Status: Triaged => Invalid

-- 
rosetta stone won't install via WINE in Feisty
https://bugs.launchpad.net/bugs/103537
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 103537] Re: rosetta stone won't install via WINE in Feisty

2010-09-05 Thread leighman
Could you please confirm whether this is still an issue in a recent Ubuntu 
release and with a recent version of wine (preferably 1.2) from 
https://launchpad.net/~ubuntu-wine/+archive/ppa ?
Thanks

-- 
rosetta stone won't install via WINE in Feisty
https://bugs.launchpad.net/bugs/103537
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 103537] Re: rosetta stone won't install via WINE in Feisty

2008-07-26 Thread Scott Ritchie
** Changed in: wine (Ubuntu)
   Importance: Undecided => Low
 Assignee: Ubuntu Wine Team (ubuntu-wine) => (unassigned)
   Status: Confirmed => Triaged

-- 
rosetta stone won't install via WINE in Feisty
https://bugs.launchpad.net/bugs/103537
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 103537] Re: rosetta stone won't install via WINE in Feisty

2008-04-04 Thread Scott Ritchie
** Changed in: wine (Ubuntu)
   Status: New => Confirmed

-- 
rosetta stone won't install via WINE in Feisty
https://bugs.launchpad.net/bugs/103537
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 103537] Re: rosetta stone won't install via WINE in Feisty

2007-06-08 Thread Bug Watch Updater
** Changed in: wine (upstream)
   Status: Unknown => Confirmed

-- 
rosetta stone won't install via WINE in Feisty
https://bugs.launchpad.net/bugs/103537
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 103537] Re: rosetta stone won't install via WINE in Feisty

2007-06-07 Thread dankegel
Bug filed, http://bugs.winehq.org/show_bug.cgi?id=8571
winehq is the place to work on this.

** Bug watch added: Wine Bugzilla #8571
   http://bugs.winehq.org/show_bug.cgi?id=8571

** Also affects: wine (upstream) via
   http://bugs.winehq.org/show_bug.cgi?id=8571
   Importance: Unknown
   Status: Unknown

-- 
rosetta stone won't install via WINE in Feisty
https://bugs.launchpad.net/bugs/103537
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 103537] Re: rosetta stone won't install via WINE in Feisty

2007-06-07 Thread Vijay Kiran Kamuju
could you please post the error log?
And it seems to be a problem with wine.
I hope there should be a antery for this one in wine projects bugzilla

-- 
rosetta stone won't install via WINE in Feisty
https://bugs.launchpad.net/bugs/103537
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 103537] Re: rosetta stone won't install via WINE in Feisty

2007-05-28 Thread Stephan Hermann
** Changed in: wine (Ubuntu)
 Assignee: (unassigned) => Ubuntu Wine Team

-- 
rosetta stone won't install via WINE in Feisty
https://bugs.launchpad.net/bugs/103537
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 103537] rosetta stone won't install via WINE in Feisty

2007-04-05 Thread ddumanis
Public bug reported:

Binary package hint: wine

I get a Java-related error and crash when I try to install Rosetta Stone
for Windows via WINE.

Instances of successful Rosetta Stone/WINE installs are common on the
Web. Not sure if this is a WINE issue, a Feisty issue, or both.

Problem is described in more detail here (by someone else who reproduced it 
exactly):
http://groups.google.com/group/comp7088833dcade07

** Affects: wine (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
rosetta stone won't install via WINE in Feisty
https://bugs.launchpad.net/bugs/103537
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs