Disabling S3TC support for Wine 1.1.14 How do I patch?
Disabling S3TC support for Wine 1.1.14 How do I patch?
I may be an absolute noob for asking this, but I've been at this for about 3 hours now.
So I've been trying to disable S3TC support so I can play this game without getting scrambled graphics. My search lead me to the code for a patch listed here http://bugs.winehq.org/attachment.cgi?id=19211 My question is, what do I do with all that code? how do I get it into my current version? Do I need to download the source for 1.1.14 and if so, where do I put said code and to what directory should I compile it all (running Ubuntu 8.10)?
So I've been trying to disable S3TC support so I can play this game without getting scrambled graphics. My search lead me to the code for a patch listed here http://bugs.winehq.org/attachment.cgi?id=19211 My question is, what do I do with all that code? how do I get it into my current version? Do I need to download the source for 1.1.14 and if so, where do I put said code and to what directory should I compile it all (running Ubuntu 8.10)?
Re: Disabling S3TC support for Wine 1.1.14 How do I patch?
http://wiki.winehq.org/PatchingSkaboss wrote:I may be an absolute noob for asking this, but I've been at this for about 3 hours now.
So I've been trying to disable S3TC support so I can play this game without getting scrambled graphics. My search lead me to the code for a patch listed here http://bugs.winehq.org/attachment.cgi?id=19211 My question is, what do I do with all that code? how do I get it into my current version? Do I need to download the source for 1.1.14 and if so, where do I put said code and to what directory should I compile it all (running Ubuntu 8.10)?
Info @ http://wiki.winehq.org/UsefulRegistryKeys OpenGL->DisabledExtensions->gl_ext_s3tc
-
- Level 5
- Posts: 336
- Joined: Mon Nov 24, 2008 8:10 am
Disabling S3TC support for Wine 1.1.14 How do I patch?
Thunderbird <[email protected]> wrote:
/* {"GL_EXT_texture_compression_s3tc", EXT_TEXTURE_COMPRESSION_S3TC, 0
Removed to prevent S3TC errors
*/
James McKenzie
Or better, use the same commenting style as the rest of the Wine code:Sent: Feb 17, 2009 12:19 PM
To: [email protected]
Subject: [Wine] Re: Disabling S3TC support for Wine 1.1.14 How do I patch?
Nope that key won't work for direct3d. The easiest way is to just comment the following line in wined3d/directx.c:
{"GL_EXT_texture_compression_s3tc", EXT_TEXTURE_COMPRESSION_S3TC, 0 },
So add "//" in front of it or remove the line.
/* {"GL_EXT_texture_compression_s3tc", EXT_TEXTURE_COMPRESSION_S3TC, 0
Removed to prevent S3TC errors
*/
James McKenzie
Disabling S3TC support for Wine 1.1.14 How do I patch?
On Wed, Feb 18, 2009 at 3:53 PM, Skaboss <[email protected]> wrote:
--
-Austin
http://wiki.winehq.org/GitWinethis is all quite helpful only I can't find my source code. Do I need to download it from elsewhere?
--
-Austin
Disabling S3TC support for Wine 1.1.14 How do I patch?
On Wed, Feb 18, 2009 at 7:26 PM, Skaboss <[email protected]> wrote:
Your distro's repositories probably have it. Try 'yum install git' or
maybe 'yum install git-core'.
After that, use:
$ git clone git://source.winehq.org/git/wine.git
To get the wine source code.
Then use:
$ patch -p1 < /path/to/the/patch/you/want
To patch the source.
Then:
$ ./configure --verbose
To run configure. Make sure there are no errors. Then finally:
$ make depend && make
To build wine.
--
-Austin
You'd have to compile it if you downloaded the source...no real need.Again...I may be a raging noob here, but I went to the git website as well as the link listed in the wiki and I'm unsure as to which of those files I should download...I got all the files listed as 1.6.2 put em all in a folder...now they do nothing.
Your distro's repositories probably have it. Try 'yum install git' or
maybe 'yum install git-core'.
After that, use:
$ git clone git://source.winehq.org/git/wine.git
To get the wine source code.
Then use:
$ patch -p1 < /path/to/the/patch/you/want
To patch the source.
Then:
$ ./configure --verbose
To run configure. Make sure there are no errors. Then finally:
$ make depend && make
To build wine.
--
-Austin
Disabling S3TC support for Wine 1.1.14 How do I patch?
On Thu, Feb 19, 2009 at 12:09 AM, Skaboss <[email protected]> wrote:
--
-Austin
Terminal. (Konsole/xconsole).and into what program do I type this "yum install git"?
--
-Austin
Disabling S3TC support for Wine 1.1.14 How do I patch?
On Thu, Feb 19, 2009 at 6:48 PM, Skaboss <[email protected]> wrote:
--
-Austin
What OS are you on?well, I typed in yum install git which brought up an error saying more or less to try "sudo apt-get yum" so i did. This installed this "yum" program I guess...then I tried "yum install git" ...which did nothing...
--
-Austin
Disabling S3TC support for Wine 1.1.14 How do I patch?
On Thu, Feb 19, 2009 at 10:40 PM, Skaboss <[email protected]> wrote:
Just use:
http://winezeug.googlecode.com/svn/trun ... ne-deps.sh
$ wget http://winezeug.googlecode.com/svn/trun ... ne-deps.sh
$ sudo sh install-wine-deps.sh
--
-Austin
Oh, sorry, thought I saw OpenSuse somewhere.Ubuntu 8.1
Just use:
http://winezeug.googlecode.com/svn/trun ... ne-deps.sh
$ wget http://winezeug.googlecode.com/svn/trun ... ne-deps.sh
$ sudo sh install-wine-deps.sh
--
-Austin
Disabling S3TC support for Wine 1.1.14 How do I patch?
On Sat, Feb 21, 2009 at 1:57 PM, Skaboss <[email protected]> wrote:
git clone git://source.winehq.org/git/wine.git ~/wine-git
--
-Austin
use:ok...did that. And started entering the patching code which just made my terminal unresponsive. So I closed it and now when I try again I get the following error.
jessy@Semra:~$ git clone git://source.winehq.org/git/wine.gitfatal: destination directory 'wine' already exists.<
git clone git://source.winehq.org/git/wine.git ~/wine-git
--
-Austin
Austin sir...you rock my socks. The source code is patched but I'm still having a little trouble compiling it. I entered in (after patching the code of course):
./configure --verbose
which returned
bash: ./configure: No such file or directory
I then tried: /configure && make depend & make
which returned
bash: line 10: /configure: No such file or directory
[1] 15955
make: *** No targets specified and no makefile found. Stop.
[1]+ Exit 127 /configure && make depend
clearly something is amiss
./configure --verbose
which returned
bash: ./configure: No such file or directory
I then tried: /configure && make depend & make
which returned
bash: line 10: /configure: No such file or directory
[1] 15955
make: *** No targets specified and no makefile found. Stop.
[1]+ Exit 127 /configure && make depend
clearly something is amiss
Disabling S3TC support for Wine 1.1.14 How do I patch?
On Sat, Feb 21, 2009 at 4:26 PM, Skaboss <[email protected]> wrote:
You should see something like:
austin@midna:~/wine-git$ ls
a ANNOUNCE b config.log configure
continue.sh daily.sh daily-test.sh documentation hardcore.sh
libs LICENSE.OLD Makefile Make.rules out quick
configure.sh server VERSION
aclocal.m4 AUTHORS build.sh config.status configure.ac
COPYING.LIB daily.sh~ dlls fonts include
LICENSE loader Makefile.in Make.rules.in programs README
tools wine
Ignoring the scripts/other cruft I have...
--
-Austin
What directory are you in? What does 'ls' show?Austin sir...you rock my socks. The source code is patched but I'm still having a little trouble compiling it. I entered in (after patching the code of course):
./configure --verbose
which returned
bash: ./configure: No such file or directory
I then tried: /configure && make depend & make
which returned
bash: line 10: /configure: No such file or directory
[1] 15955
make: *** No targets specified and no makefile found. Stop.
[1]+ Exit 127 /configure && make depend
clearly something is amiss
You should see something like:
austin@midna:~/wine-git$ ls
a ANNOUNCE b config.log configure
continue.sh daily.sh daily-test.sh documentation hardcore.sh
libs LICENSE.OLD Makefile Make.rules out quick
configure.sh server VERSION
aclocal.m4 AUTHORS build.sh config.status configure.ac
COPYING.LIB daily.sh~ dlls fonts include
LICENSE loader Makefile.in Make.rules.in programs README
tools wine
Ignoring the scripts/other cruft I have...
--
-Austin
Disabling S3TC support for Wine 1.1.14 How do I patch?
Skaboss wrote:
$HOME/wine-git when running any of these commands.
James McKenzie
What directory are you trying this from? You should be inAustin sir...you rock my socks. The source code is patched but I'm still having a little trouble compiling it. I entered in (after patching the code of course):
./configure --verbose
which returned
bash: ./configure: No such file or directory
I then tried: /configure && make depend & make
which returned
bash: line 10: /configure: No such file or directory
[1] 15955
make: *** No targets specified and no makefile found. Stop.
[1]+ Exit 127 /configure && make depend
clearly something is amiss
$HOME/wine-git when running any of these commands.
James McKenzie
Disabling S3TC support for Wine 1.1.14 How do I patch?
On Sat, Feb 21, 2009 at 4:50 PM, Skaboss <[email protected]> wrote:
Go to a terminal.
Type:
cd jessy/wine-git
then do:
./configure
If it doesn't show errors, do:
make depend && make
--
-Austin
no...not sure how to do commands "from" a directory in the terminal. I typed in
/home/jessy/wine-git .configure --verbose
and got
bash: /home/jessy/wine-git: is a directory
I got the same response from ~/wine-git $ ls
Go to a terminal.
Type:
cd jessy/wine-git
then do:
./configure
If it doesn't show errors, do:
make depend && make
--
-Austin
Disabling S3TC support for Wine 1.1.14 How do I patch?
On Sat, 21 Feb 2009 13:57:29 -0600
"Skaboss" <[email protected]> wrote:
"Skaboss" <[email protected]> wrote:
git checkoutok...did that. And started entering the patching code which just made my terminal unresponsive. So I closed it and now when I try again I get the following error.
jessy@Semra:~$ git clone git://source.winehq.org/git/wine.gitfatal: destination directory 'wine' already exists.<