http://bugs.winehq.org/show_bug.cgi?id=2797
------- Additional Comments From KenJackson(a)ieee.org 2005-16-03 16:48 -------
The version I'm using is free, but it's not a trial version. It's a "Special
Edition" because the code space is less than 4K on the MC68HC908QY2
microcontroller that I'm using.
You can download it if you go to
<http://http://www.metrowerks.com/MW/download/>,
select "CodeWarrior Development Studio for HC08 Microcontrollers",
type in your personal information and they'll email you a download link.
You can reproduce it without even compiling a file, like this:
wine chc08.exe -ViewHidden -h
--
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=1482
------- Additional Comments From titan.costa(a)wanadoo.fr 2005-16-03 16:18 -------
One day, maybe. :-)
I have one or two somewhere.
There was also UltraHLE (the N64 emu).
--
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=1482
------- Additional Comments From fenix(a)club-internet.fr 2005-16-03 15:55 -------
Feel free, christian :)
I know many projects (but closed source) who do that on net.
But i don't have old games (and i don't know games glide only i like)
Regards,
Raphael
--
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=2797
------- Additional Comments From us(a)the-edmeades.demon.co.uk 2005-16-03 15:47 -------
Shame - it would be nice if the stubs could return enough to keep it happy.
I noticed there's a 30 day evaluation period version - is the problem (very)
simple to reproduce if I download it?
--
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=1482
------- Additional Comments From titan.costa(a)wanadoo.fr 2005-16-03 15:45 -------
Some glide wrappers exist layered upon opengl or d3d. Some are good, some less.
glide2x and glide3x could be added to wine using opengl32.dll.
This shouln't be that hard since it's a subset of opengl.
IIRC there are games that only support glide for acceleration. This may be
usefull for those (like me) who like old games. :-)
--
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=2801
------- Additional Comments From winehq(a)drydog.com 2005-16-03 15:40 -------
Apparently this is a problem with either Sun JDS Linux 2 or with the underlying
kernel, Linux 2.4.19. I understand 32-bit UIDs will be fixed in Linux 2.6 (they
are in 2.4, but not completely working yet). Here's a patch for a workaround:
--- libs/wine/config.c.ori 2005-03-16 13:15:41.000000000 -0800
+++ libs/wine/config.c 2005-03-16 13:16:51.000000000 -0800
@@ -105,7 +105,7 @@
static void init_server_dir( dev_t dev, ino_t ino )
{
char *p;
-#ifdef HAVE_GETUID
+#ifdef HAVE_GETUID_DISABLED_BECAUSE_32_BIT_UID_BROKEN_WITH_LINUX_2_4
const unsigned int uid = getuid();
#else
const unsigned int uid = 0;
--- server/request.c.ori 2005-03-04 04:38:37.000000000 -0800
+++ server/request.c 2005-03-16 13:27:45.000000000 -0800
@@ -516,7 +516,6 @@
if (lstat( name, st ) == -1) fatal_perror( "lstat %s", name );
}
if (!S_ISDIR(st->st_mode)) fatal_error( "%s is not a directory\n", name );
- if (st->st_uid != getuid()) fatal_error( "%s is not owned by you\n", name );
if (st->st_mode & 077) fatal_error( "%s must not be accessible by other
users\n", name );
}
--- dlls/ntdll/server.c.ori 2004-10-18 12:34:37.000000000 -0700
+++ dlls/ntdll/server.c 2005-03-16 13:34:24.000000000 -0800
@@ -625,7 +625,6 @@
/* make sure we are at the right place */
if (stat( ".", &st ) == -1) fatal_perror( "stat %s", serverdir );
- if (st.st_uid != getuid()) fatal_error( "'%s' is not owned by you\n",
serverdir );
if (st.st_mode & 077) fatal_error( "'%s' must not be accessible by other
users\n", serverdir );
for (retry = 0; retry < 6; retry++)
@@ -647,8 +646,6 @@
/* make sure the socket is sane (ISFIFO needed for Solaris) */
if (!S_ISSOCK(st.st_mode) && !S_ISFIFO(st.st_mode))
fatal_error( "'%s/%s' is not a socket\n", serverdir, SOCKETNAME );
- if (st.st_uid != getuid())
- fatal_error( "'%s/%s' is not owned by you\n", serverdir, SOCKETNAME );
/* try to connect to it */
addr.sun_family = AF_UNIX;
--
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=2187
fenix(a)club-internet.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
BugsThisDependsOn| |94
Component|wine-binary |wine-directx-ddraw
--
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=2801
winehq(a)drydog.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From winehq(a)drydog.com 2005-16-03 15:21 -------
Apparently this is a problem with either Sun JDS Linux 2 or with the underlying
kernel, Linux 2.4.19. I understand 32-bit UIDs will be fixed in Linux 2.6 (they
are in 2.4, but not completely working yet). Here's a patch for a workaround:
--- libs/wine/config.c.ori 2005-03-16 13:15:41.000000000 -0800
+++ libs/wine/config.c 2005-03-16 13:16:51.000000000 -0800
@@ -105,7 +105,7 @@
static void init_server_dir( dev_t dev, ino_t ino )
{
char *p;
-#ifdef HAVE_GETUID
+#ifdef HAVE_GETUID_DISABLED_BECAUSE_32_BIT_UID_BROKEN_WITH_LINUX_2_4
const unsigned int uid = getuid();
#else
const unsigned int uid = 0;
--
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.