http://bugs.winehq.org/show_bug.cgi?id=3591
Summary: py2exe does not work properly
Product: Wine
Version: 20050930
Platform: Other
URL: http://www.py2exe.org/
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winehq(a)paniq.org
the py2exe tool does not work properly, because imagehlp is not implemented
completely. i could solve the problem by adding imagehlp as native,bultin and
providing a native dll.
py2exe is critical for creating deployable python applications for win32. being
able to prepare cross-operating-system setups under linux is a high advantage.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3590
Summary: python for win32 can not be installed
Product: Wine
Version: 20050930
Platform: Other
URL: http://www.python.org/ftp/python/2.4.2/python-2.4.2.msi
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winehq(a)paniq.org
using the builtin msiexec service, python can not be installed. i think i
managed to get it to install using /i /q and a native msiexec.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3560
------- Additional Comments From jonathan(a)ernstfamily.ch 2005-15-10 07:39 -------
Hi Spiro,
I reopened the bug and changed it's summary because I think there is indeed a
bug in Wine and that your setup should work (letting LC_ALL empty).
In the meanwhile you can run wine using
LC_ALL=whatever wine winecfg
for example.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1135
jonathan(a)ernstfamily.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From jonathan(a)ernstfamily.ch 2005-15-10 07:35 -------
The menu bug is fixed in current Wine-CVS (menus work fine here in WinISO).
Please open a new bug for the transparent rebar that is still not fixed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3241
jonathan(a)ernstfamily.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |wine-bugs(a)winehq.org
AssignedTo|wine-bugs(a)winehq.org |resqu(a)gmx.ch
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3241
------- Additional Comments From jonathan(a)ernstfamily.ch 2005-15-10 07:29 -------
*** Bug 3562 has been marked as a duplicate of this bug. ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3562
jonathan(a)ernstfamily.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From jonathan(a)ernstfamily.ch 2005-15-10 07:29 -------
Yes the patch fixes the problem. Marking as duplicate of this infamous bug.
*** This bug has been marked as a duplicate of 3241 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3560
------- Additional Comments From I-SAngeli(a)siriush.com 2005-15-10 07:25 -------
Hi Jonathan,
according to what you posted, I have to declare LC_ALL= and otherwhise this
creates theproblems. Is this correct, so far? Did I get it?
Well, my goal is to have the following localization in "Italian and US English".
So, I apply these changes to /etc/env.d/02locale and here is my goal divided
into two sections for better explanation:
ITALIAN SECTION:
-----------------------------
LC_NUMERIC="it_IT.UTF-8"
LC_MONETARY="it_IT.UTF-8"
LC_PAPER="it_IT.UTF-8"
LC_MEASUREMENT="it_IT.UTF-8"
ENGLISH SECTION:
-----------------------------
LC_CTYPE="en_US.UTF-8"
LC_TIME="en_US.UTF-8"
LC_COLLATE="en_US.UTF-8"
LC_MESSAGES="en_US.UTF-8"
LC_NAME="en_US.UTF-8"
LC_ADDRESS="en_US.UTF-8"
LC_TELEPHONE="en_US.UTF-8"
LC_IDENTIFICATION="en_US.UTF-8"
LANG="en_US.UTF-8"
With the above setting, living LC_ALL="" empty here is the result of my current
"locale"
LANG=en_US.UTF-8
LC_CTYPE=en_US.UTF-8
LC_NUMERIC=it_IT.UTF-8
LC_TIME=en_US.UTF-8
LC_COLLATE=en_US.UTF-8
LC_MONETARY=it_IT.UTF-8
LC_MESSAGES=en_US.UTF-8
LC_PAPER=it_IT.UTF-8
LC_NAME=en_US.UTF-8
LC_ADDRESS=en_US.UTF-8
LC_TELEPHONE=en_US.UTF-8
LC_MEASUREMENT=it_IT.UTF-8
LC_IDENTIFICATION=en_US.UTF-8
LC_ALL=
WHICH IS WHAT I AIM TO.
Now, if I rather apply the change to LC_ALL=, according to the "LC_ALL If set to
a non-empty string value, override the values of all the other
internationalization variables.", and make let's say LC_ALL="it_IT.UTF-8" this
is the result of my "new locale":
LANG=en_US.UTF-8
LC_CTYPE="it_IT.UTF-8"
LC_NUMERIC="it_IT.UTF-8"
LC_TIME="it_IT.UTF-8"
LC_COLLATE="it_IT.UTF-8"
LC_MONETARY="it_IT.UTF-8"
LC_MESSAGES="it_IT.UTF-8"
LC_PAPER="it_IT.UTF-8"
LC_NAME="it_IT.UTF-8"
LC_ADDRESS="it_IT.UTF-8"
LC_TELEPHONE="it_IT.UTF-8"
LC_MEASUREMENT="it_IT.UTF-8"
LC_IDENTIFICATION="it_IT.UTF-8"
LC_ALL=it_IT.UTF-8
WHICH IS TOTALLY WRONG.
Now, could you please illustrate what is wrong so far in what I am doing? My
"only" way to make locale behave properly is to let LC_ALL=
If you can achieve what I above intend to set with my goal still with LC_ALL="a
language" please post here so that I learn something new and implement it
immediately.
thank you,
Spiro
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3000
jonathan(a)ernstfamily.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |ASSIGNED
------- Additional Comments From jonathan(a)ernstfamily.ch 2005-15-10 07:18 -------
I sent patches to fix this. I'll close the bug if they are accepted.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3560
jonathan(a)ernstfamily.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Summary|Winecfg interface with GUI |Wine should use LC_LANG
|issues |instead of LC_ALL
| |[Was:Winecfg interface with
| |GUI issues]
------- Additional Comments From jonathan(a)ernstfamily.ch 2005-15-10 07:05 -------
Changing bug summary.
>From man locale:
LANG Provide a default value for the internationalization variables
that are unset or null. (See the Base Definitions volume of
IEEE Std 1003.1-2001, Section 8.2, Internationalization Vari-
ables for the precedence of internationalization variables used
to determine the values of locale categories.)
LC_ALL If set to a non-empty string value, override the values of all
the other internationalization variables.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3560
jonathan(a)ernstfamily.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|INVALID |
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3560
------- Additional Comments From I-SAngeli(a)siriush.com 2005-15-10 06:54 -------
Hi Jonathan,
thank you for your support.
Here is my locale output:
LANG=en_US.UTF-8
LC_CTYPE=en_US.UTF-8
LC_NUMERIC=it_IT.UTF-8
LC_TIME=en_US.UTF-8
LC_COLLATE=en_US.UTF-8
LC_MONETARY=it_IT.UTF-8
LC_MESSAGES=en_US.UTF-8
LC_PAPER=it_IT.UTF-8
LC_NAME=en_US.UTF-8
LC_ADDRESS=en_US.UTF-8
LC_TELEPHONE=en_US.UTF-8
LC_MEASUREMENT=it_IT.UTF-8
LC_IDENTIFICATION=en_US.UTF-8
LC_ALL=
As you can see, my LC_ALL= is empty but it is specifically empty otherwhise it
would defeat the purpose of individual customizations.
This is what I advice/see:
It is wrong to set wine or other applications to refer to LC_ALL. Totally wrong.
Rather it sahould be used: LANG= and only this.
I wish to invite developers to make this change, if possible, so that users can
customize their locale according to their needs and not to apps needs.
Please advice if I am wrong so that I modify my understanding of localization setup.
You can also take a look at my howto for localizations I posted in Gentoo Forum
for UTF-8: http://forums.gentoo.org/viewtopic-t-390888-highlight-.html
Sincerely,
Spiro
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3001
------- Additional Comments From jonathan(a)ernstfamily.ch 2005-15-10 06:29 -------
Please try using current Wine version and if it still crashes set windows
version to nt40 using winecfg.
Thanks.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2170
jonathan(a)ernstfamily.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|REOPENED |RESOLVED
Resolution| |FIXED
------- Additional Comments From jonathan(a)ernstfamily.ch 2005-15-10 06:12 -------
This bug seems fixed. Please open new bug(s) for the other issues (odbc, etc.).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3573
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2005-15-10 06:07 -------
Runs fine here with current cvs as well. If it runs fine on your computer with
previous version (20050830) you might do a regression test
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3560
jonathan(a)ernstfamily.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From jonathan(a)ernstfamily.ch 2005-15-10 06:07 -------
This problem occurs if you don't have LC_ALL set correctly.
Type locale in the console and see if you have a valid LC_ALL setting. If it's
empty or invalid, please refer to the gentoo documentation (for example
http://gentoo-wiki.com/HOWTO_Create_an_UTF-8_enabled_system)
If you think your configuration is valid and there is a bug in Wine, please
reopen with more details (output of locale at least).
Thanks.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2596
jonathan(a)ernstfamily.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.org |lionel.ulmer(a)free.fr
Status|UNCONFIRMED |NEW
Component|wine-binary |wine-directx-ddraw
Ever Confirmed| |1
------- Additional Comments From jonathan(a)ernstfamily.ch 2005-15-10 05:56 -------
Again a setcooperativelevel bug.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2170
------- Additional Comments From hallo(a)michael-kaufmann.ch 2005-15-10 05:56 -------
We should create a bew bug ("odbccp32.dll not implemented") or reopen bug 3268.
This bug is about a crash which doesn't appear anymore (with native and built-in
odbccp32.dll)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3481
------- Additional Comments From wdev(a)foltman.com 2005-15-10 05:44 -------
Looks like it's remedied by setting buffer content to empty string in
CB_GETLBTEXT when item doesn't exist. I will investigate the issue further later.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2989
------- Additional Comments From hurtta+wine2(a)leija.mh.fmi.fi 2005-15-10 05:33 -------
windowing environment is started with
startx -- :1
If it is not correctly setup (for example $DISPLAY do not have set),
then window manager and that terminal emulator where following commands are
typed, can not be started. So please do not start talking that DISPLAY
is not set....
[hurtta@jalmari hurtta]$ cat A
http://bugs.winehq.org/show_bug.cgi?id=2989
[hurtta@jalmari hurtta]$ mozilla http://bugs.winehq.org/show_bug.cgi?id=2989&
[1] 4218
[hurtta@jalmari hurtta]$ rm -rf .wine/
[hurtta@jalmari hurtta]$ wineprefixcreate
Xlib: connection to ":0.0" refused by server
Xlib: No protocol specified
/home/hurtta/.wine updated successfully.
[hurtta@jalmari hurtta]$ echo $DISPLAY
:1.0
[hurtta@jalmari hurtta]$ wine --version
Wine 20050930
[hurtta@jalmari hurtta]$
That comment is written that mozilla what was started on above....
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2989
------- Additional Comments From hurtta+wine2(a)leija.mh.fmi.fi 2005-15-10 04:56 -------
With ssh connection gives same error. I will test that
also with same setup than on original bug report.
[hurtta@jalmari hurtta]$ wineprefixcreate
Xlib: connection to ":0.0" refused by server
Xlib: No protocol specified
libGL error: failed to open DRM: Operation not permitted
libGL error: reverting to (slow) indirect rendering
/home/hurtta/.wine updated successfully.
[hurtta@jalmari hurtta]$ echo $DISPLAY
localhost:10.0
[hurtta@jalmari hurtta]$
Next command definately proves that DISPLAY is exported and it is correct:
[hurtta@jalmari hurtta]$ xdpyinfo
name of display: localhost:10.0
version number: 11.0
vendor string: Mandrake Linux (XFree86 4.2.1, patch level 3mdk)
vendor release number: 40201000
XFree86 version: 4.2.1
maximum request size: 4194300 bytes
motion buffer size: 256
bitmap unit, bit order, padding: 32, LSBFirst, 32
image byte order: LSBFirst
number of supported pixmap formats: 7
supported pixmap formats:
<...>
[hurtta@jalmari hurtta]$ wine --version
Wine 20050930
[hurtta@jalmari hurtta]$
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3587
ivanleo(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.org |ivanleo(a)gmail.com
Status|ASSIGNED |NEW
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2872
------- Additional Comments From marcus(a)jet.franken.de 2005-15-10 02:46 -------
strange, it should really have fixed that :(
i am bit out of ideas
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.