Wine patching on Ubuntu 32bit

Questions about Wine on Linux
Locked
Lakorta
Level 2
Level 2
Posts: 10
Joined: Mon Aug 06, 2012 3:06 pm

Wine patching on Ubuntu 32bit

Post by Lakorta »

Hello guys,
I get an error while compiling wine from source (patched with raw3.patch) on my Ubuntu 12.04.1 LTS. I used theese commands:

Code: Select all

sudo apt-get install git
sudo apt-get build-dep wine
git clone http://source.winehq.org/git/wine.git wine-git
cd wine-git
wget dl.dropbox.com/u/6901628/raw3.patch
patch -p1 < raw3.patch
./configure
Then I tried

Code: Select all

make
and

Code: Select all

make -j4
make install
Both failed at the last command with this message:

Code: Select all

request.o:(.rodata+0x404): undefined reference to `req_get_raw_input_device_list'
request.o:(.rodata+0x408): undefined reference to `req_get_raw_input_device_info'
request.o:(.rodata+0x40c): undefined reference to `req_get_registered_raw_input_devices'
request.o:(.rodata+0x410): undefined reference to `req_register_raw_input_devices'
request.o:(.rodata+0x414): undefined reference to `req_get_raw_input_data'
request.o:(.rodata+0x418): undefined reference to `req_get_raw_input_buffer'
collect2: ld gab 1 als Ende-Status zurück
make[1]: *** [wineserver] Fehler 1
make[1]: Verlasse Verzeichnis '/home/lakorta/wine-git/server'
make: *** [server] Fehler 2
Anyone can help me?
User avatar
dimesio
Moderator
Moderator
Posts: 13367
Joined: Tue Mar 25, 2008 10:30 pm

Re: Wine patching on Ubuntu 32bit

Post by dimesio »

Raw input support was added in 1.5.13; that old patch will not apply to current Wine, and should not be needed. If your game still has mouse/keyboard issues in current, file a bug for the specific problem if one has not already been filed.
Lakorta
Level 2
Level 2
Posts: 10
Joined: Mon Aug 06, 2012 3:06 pm

Re: Wine patching on Ubuntu 32bit

Post by Lakorta »

Thx, didn't know that raw input was added to the native wine. Now it's compiles without problems :D
Locked