fcmartins wrote: > What are the steps to install a old version of wine with git? Code: cd $HOME git clone git://source.winehq.org/git/wine.git wine-git cd wine-git # Making wine-1.0.1 version git checkout wine-1.0.1 ./configure --prefix=$HOME/wine-1.0.1 make -sj2 depend all install clean # Making wine-1.1.9 version git checkout wine-1.1.9 ./configure --prefix=$HOME/wine-1.1.9 make -sj2 depend all install clean