http://bugs.winehq.org/show_bug.cgi?id=2469
braun(a)egeen.ee changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |regression, source
Version|20040813 |CVS
--
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=2369
------- Additional Comments From maik.schulz(a)iname.com 2004-19-09 10:03 -------
After creating ~/.wine/config with the below content, iTunesSetup.exe does not
complain about the wrong windows version any more. The definition of the temp
directory was necessary because otherwise wine complained about not being able
to write to my /tmp directory which was linked as a dos device (default setup).
[BEGIN]
WINE REGISTRY Version 2
[version]
"windows"="win2000"
[wine]
"Windows" = "c:\\windows"
"System" = "c:\\windows\\system"
"Temp" = "c:\\temp"
[END]
--
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=2488
puoti(a)inwind.it changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|DUPLICATE |
------- Additional Comments From puoti(a)inwind.it 2004-18-09 15:56 -------
This is not a duplicate of bug 2357 as that bug report is about packaging, this
one is about the wine code itself.
--
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=2346
triso(a)cogeco.ca changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From triso(a)cogeco.ca 2004-18-09 14:29 -------
The problem is gone in version 20040914. Good Job!
--
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=2489
------- Additional Comments From deebakes(a)comcast.net 2004-18-09 13:49 -------
Please help me with the "file" command. What exactly should I type from terminal?
dosdevice: ls -l
total 0
lrwxrwxrwx 1 root root 8 Sep 17 11:06 a:: -> /dev/fd0
lrwxrwxrwx 1 root root 10 Sep 16 15:47 c: -> ../drive_c
lrwxrwxrwx 1 root root 10 Sep 17 11:06 d:: -> /dev/cdrom
lrwxrwxrwx 1 root root 1 Sep 16 15:47 z: -> /
I downloaded from your website. Should I attach the .rpm?
--
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=2490
------- Additional Comments From basic(a)mozdev.org 2004-18-09 13:40 -------
forgot to mention that I'm compiling this under a gcc with the following version
string:
gcc (GCC) 3.3.4 20040623 (Gentoo Hardened Linux 3.3.4-r1, ssp-3.3.2-2, pie-8.7.6)
Copyright (C) 2003 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
--
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=2489
------- Additional Comments From bon(a)elektron.ikp.physik.tu-darmstadt.de 2004-18-09 13:20 -------
:: "Can you get a non-stripped version and try again Also WINEDEBUG=+volume
:: might get some usefull information."
: I'm new to linux so what are the commands to get this information?
The "file" command will tell you. For me it give:
> file /spare/wine/wine/loader/wine-glibc
/spare/wine/wine/loader/wine-glibc: ELF 32-bit LSB executable, Intel 80386,
version 1 (SYSV), for GNU/Linux 2.2.5, dynamically linked (uses shared libs),
not stripped
However the way wine is loaded is quite complicated. So it will take some
knowledge to find out the real wine executable. "wine" itself is only a script.
To find out yourself, you probably have to learn some more Linux basics...
But I guess at the place where you downloaded the wine rpm you should find more
information about what the packager did.
: Here is my ~/.wine/dosdevices file:
You forgot to give the "-l" argument to show to what part of the filesystem the
dos drive letters are connected.
--
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=2490
Summary: preloader.c does not compile with -fpie/-fstack-
protector
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-loader
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: basic(a)mozdev.org
preloader.c does not compile with -fpie/-fstack-protector since a June checkin
with this comment:
"Do direct Linux system calls in the preloader to avoid trouble with
some broken static libcs."
I get the following error:
preloader.c: In function `wld_mmap':
preloader.c:237: error: can't find a register in class `BREG' while reloading `asm'
I suppose the assembly code in that file does not work with pie/stack-protector.
My gcc compiles with stack-protector by default. If I edit the Makefile and add
preloader.o:
$(CC) -c -fno-pic -fno-stack-protector $(ALLCFLAGS) -o $@ preloader.c
it will compile and run correctly.
--
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.