Compile wine1.4 WOW64 from source (git) on Ubuntu 12.04

Questions about Wine on Linux
Locked
tarasper
Newbie
Newbie
Posts: 3
Joined: Tue Mar 13, 2012 6:45 am

Compile wine1.4 WOW64 from source (git) on Ubuntu 12.04

Post by tarasper »

When I try to compile wine1.4 (http://wiki.winehq.org/Wine64) on configure I get an error:
~/wine32$ ../wine-git/configure --with-wine64=../wine64
configure: error: FreeType 32-bit development files not found. Fonts will not be built.

~/wine32$ sudo apt-get install libfreetype6-dev:i386
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following package was automatically installed and is no longer required:
libexpat1-dev
Use 'apt-get autoremove' to remove them.
The following extra packages will be installed:
libc6-dev:i386 linux-libc-dev:i386 zlib1g-dev:i386
Suggested packages:
glibc-doc:i386 manpages-dev:i386
Recommended packages:
gcc:i386 c-compiler:i386
The following packages will be REMOVED:
build-essential dkms g++ gcc gcc-multilib libfontconfig1-dev libfreetype6-dev virtualbox-dkms
The following NEW packages will be installed:
libc6-dev:i386 libfreetype6-dev:i386 linux-libc-dev:i386 zlib1g-dev:i386
0 upgraded, 4 newly installed, 8 to remove and 0 not upgraded.

How correctly build wine1.4 without breaking the system?
User avatar
dimesio
Moderator
Moderator
Posts: 13207
Joined: Tue Mar 25, 2008 10:30 pm

Post by dimesio »

According to http://wiki.winehq.org/WineOn64bit#head ... c712af07e2
On 12.04, which now has multiarch support, things are trickier:

Code: Select all

sudo apt-get build-dep wine1.4:i386
Doing this may very well remove your ability to build 64-bit programs.
That note was added to the wiki by the Ubuntu package maintainer, so it doesn't look promising.

You might want to ask on the Ubuntu forum.
tarasper
Newbie
Newbie
Posts: 3
Joined: Tue Mar 13, 2012 6:45 am

Post by tarasper »

I've tried it, but it's not works.

taras@taras-WS-1864:~/wine32$ sudo apt-get build-dep wine1.4:i386
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to find a source package for wine1.4:i386


taras@taras-WS-1864:~/wine32$ sudo apt-get build-dep wine:i386
Reading package lists... Done
Building dependency tree
Reading state information... Done
Picking 'wine1.4' as source package instead of 'wine:i386'
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Locked