vanutsteen.nl => nerds only A blog on rails, php, computing, my bass guitar and stuff

Some Wine and Hardy

on in Linux

Wine still segfaults on me with Hardy Heron! I’m gonna look if this still works:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Does not work (segfaulting):
mkdir ~/src
cd ~/src
sudo -i
apt-get build-dep wine && apt-get source --build wine

This does work:
mkdir ~/src
cd ~/src
sudo -i
apt-get source wine
cd wine-0.9.55
./configure
make depend && make
sudo make install

(for me)

Comments