http://bugs.winehq.com/show_bug.cgi?id=1464
------- Additional Comments From jbon(a)cfl.rr.com 2003-22-05 20:29 -------
I upgraded my kernel to the one that goes with RedHat 9.0 to match the rest of
my system. (I was holding on to an old kernel until now)
With the new kernel, the wine-20030508 compiled with --with-nptl worked just fine.
I suppose the new RedHat 9 glibc was just broken on the non-nptl kernel.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1468
ed(a)halley.cc changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |WORKSFORME
------- Additional Comments From ed(a)halley.cc 2003-22-05 16:56 -------
The above patches and .spec allow me to build and install and run the 20030508
.src.rpm of Wine on a fresh Red Hat Linux 9 box. There may still be issues but
this is a significant fix ready for other people to try.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1468
------- Additional Comments From ed(a)halley.cc 2003-22-05 16:54 -------
Created an attachment (id=260)
--> (http://bugs.winehq.com/attachment.cgi?id=260&action=view)
New .spec file for RHL9-ready wine-20030508.
This .spec file offers the two attached patches.
It also provides a fixed "Provides:" line for libntdll.dll.so (which the
auto-provides detector doesn't reliably find).
It also build-requires autoconf >= 2.53 (instead of the older name
autoconf253).
It also configures the build --with-nptl, which is required for RHL9's kernels.
It also marks the version as 1rh9winehq instead of 1rh8winehq.
It lastly offers a changelog to this effect.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1468
------- Additional Comments From ed(a)halley.cc 2003-22-05 16:47 -------
Created an attachment (id=259)
--> (http://bugs.winehq.com/attachment.cgi?id=259&action=view)
Forces the src wineserver to run during .src.rpm build
The current .src.rpm must run the regedit.exe program to populate the registry.
However, it does not reliably run the wineserver which was just built. This
may not be discovered on systems which already have an older wine built and
installed. By forcing the launch of the just-built wineserver, and giving a
second for the server to start properly, the .src.rpm becomes more robust.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1468
------- Additional Comments From ed(a)halley.cc 2003-22-05 16:43 -------
Created an attachment (id=258)
--> (http://bugs.winehq.com/attachment.cgi?id=258&action=view)
Specifies no docbook2pdf or docbook2ps steps
The Red Hat Linux 9 docbook-utils does not contain docbook2pdf or the backend
postscript tools. This patch removes that requirement from the makefiles. The
alternative is to add another build-require for docbook-utils-pdf, but it still
may not be complete.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1481
Summary: Can't start wine on linux 2.5.69 kernel with tls glibc
2.3.2 (linuxthreads, not nptl) / problem with wineserver
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: christophe(a)saout.de
Hi!
I really have no idea where this could be coming from.
Wine was working fine until about two or three months ago, I don't know exactly
what change caused this problem.
When trying to run wine I always get something like this:
chtephan:/### > wine ###.exe
wine: chdir to /tmp/.wine-chtephan/server-fe01-5364 : No such file or directory
There is no wineserver running or something, and I the /tmp directory is also clean.
I'm running the linux development kernel 2.5.69 and recently compiled glibc
2.3.2 with tls support (but still using linuxthreads). I didn't change anything
else.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1480
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2003-22-05 08:24 -------
> First, a Windows pop-up appears with this message:
>
> A newer version of DCOM95 or DCOM98 has been installed. To override, you
> must uninstall trhe current version first.
for this one you could try instructing wine to use native version of OLE32.DLL
for dcom-update process, even if this DLL is missing in clean-wine install.
I mean you can add "--dll ole32=n" to command line, as for example:
wine --dll ole32=n filemaker.exe
or you could try adding line "ole32" = "native" to your wine config-file, into
that (possibly new) section:
[AppDefaults\\install.exe\\DllOverrides]
"ole32" = "native"
there is "install.exe" used here because dcom98 updater (could be downloadded
from MS web) I was experimenting with was spawning child processes and needed
this dll-override only for "install.exe". though, dll-override from command line
seems to be more strict.
> Later, the install fails completely, with this message coming from wine:
> fixme:cabinet:FDICreate (pfnalloc == ^0x244f90b0, pfnfree == ^0x244f90be,
> pfnopen == ^0x244f90cc, pfnread == ^0x244f9294, pfnwrite == ^0x244f9401,
> pfnclose == ^0x244f956a, pfnseek == ^0x244f95f4, cpuType == -1, perf ==
> ^0x2453fae8): stub
>
> Please help.
eghm.. I think this one could be solved by such dll-override:
cabinet=n
and I would override cabinet.dll usage globally, for example by putting it to
section:
[DllOverrides]
"cabinet" = "native"
..
BTW, I cannot remember where did cabinet.dll come from. was it DCOM98 update,
or was it MSI package? whatever, good luck with wine :)
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1464
rebus(a)seznam.cz changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|REOPENED |RESOLVED
Resolution| |FIXED
------- Additional Comments From rebus(a)seznam.cz 2003-21-05 19:33 -------
Hello,
I have finally found a machine which works fine with wine. By comparing the
package list I have found the difference which caused all this.
It seems glibc contains nptl stuff only in i686 packages and not in i386.
I upgraded to i686 (despite I have Athlon cpu) and wine works as expected.
May be this information would be worth of mentioning as a requirement for rh9 in
install guide on the same place where the --with-nptl option is mentioned.
Thanks to all of you for support.
Michal Ambroz
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.