Bonjour à tous j’essaie depuis des jours d’intaller Wine en verssion 64 mais rien à faire.
[quote]
Installing build prerequisites
Install the needed development packages as described in WineOn64bit. (Hint: run wget winezeug.googlecode.com/svn/trun … ne-deps.sh .)
Please also note GccVersions (you need at least gcc 4.4 to compile Wine for x86-64 because of builtin_ms_va_list support) [/quote]
Déja lorsque je j’exécute le script depuis le terminal cela me dit :
D’accord …
Je vais donc le faire manuellement je vais sur le lien indiqué wiki.winehq.org/WineOn64bit (partit Debian Wheezy) pour installer les prérequis :
[quote]Wheezy
Install the build dependencies:
apt-get build-dep wine
apt-get install libgstreamer-plugins-base0.10-dev libhal-dev liblcms2-dev libosmesa6-dev ocl-icd-opencl-dev
This is all you need to compile a 64-bit Wine (which is most likely not what you want). But to be able to also compile its 32-bit version you will also need to install the following 32-bit development packages:
apt-get install gcc-multilib libasound2-dev:i386 libgsm1-dev:i386 libjpeg8-dev:i386 liblcms2-dev:i386 libldap2-dev:i386 libmpg123-dev:i386 libopenal-dev:i386 libv4l-dev:i386 libx11-dev:i386 libxinerama-dev:i386 libxml2-dev:i386 zlib1g-dev:i386
Furthermore, until the development packages for the following libraries are multiarch compatible you will also have to make do with installing the following 32-bit libraries:
apt-get install libcapi20-dev:i386 libcups2:i386 libdbus-1-3:i386 libfontconfig:i386 libfreetype6:i386 libglu1-mesa:i386 libgnutls26:i386 libgphoto2-2:i386 libncurses5:i386 libosmesa6:i386 libsane:i386 libxcomposite1:i386 libxcursor1:i386 libxi6:i386 libxrandr2:i386 libxslt1.1:i386 ocl-icd-libopencl1:i386
And then manually creating the following symbolic links:
cd /usr/lib/i386-linux-gnu
ln -s libcups.so.2 libcups.so
ln -s libexif.so.12 libexif.so
ln -s libfontconfig.so.1 libfontconfig.so
ln -s libfreetype.so.6 libfreetype.so
ln -s libGL.so.1 libGL.so
ln -s libGLU.so.1 libGLU.so
ln -s libgnutls.so.26 libgnutls.so
ln -s libgphoto2.so.2 libgphoto2.so
ln -s libgphoto2_port.so.0 libgphoto2_port.so
ln -s libOSMesa.so.6 libOSMesa.so
ln -s libsane.so.1 libsane.so
ln -s libtiff.so.4 libtiff.so
ln -s libXcomposite.so.1 libXcomposite.so
ln -s libXcursor.so.1 libXcursor.so
ln -s libXi.so.6 libXi.so
ln -s libXrandr.so.2 libXrandr.so
ln -s libXrender.so.1 libXrender.so
ln -s libxslt.so.1 libxslt.so
ln -s libXxf86vm.so.1 libXxf86vm.so
ln -s /lib/i386-linux-gnu/libdbus-1.so.3 libdbus-1.so
ln -s /lib/i386-linux-gnu/libpng12.so.0 libpng12.so
ln -s /lib/i386-linux-gnu/libtinfo.so.5 libtinfo.so
ln -s libpng12.so libpng.so
echo ‘INPUT(libncurses.so.5 -ltinfo)’ >libncurses.so
Getting GStreamer support is optional and a bit more complex yet. So you may want to skip this part. The difficulty is not only that the GStreamer’s development package does not support multiarch, but also that the 64-bit glibconfig.h header cannot be used to compile 32-bit code. Here are the steps to work around all these issues:
First install the non-development 32-bt package and create symbolic links as usual:
apt-get install libgstreamer-plugins-base0.10-0:i386
cd /usr/lib/i386-linux-gnu
ln -s libgstapp-0.10.so.0 libgstapp-0.10.so
ln -s libgstbase-0.10.so.0 libgstbase-0.10.so
ln -s libgstreamer-0.10.so.0 libgstreamer-0.10.so
ln -s libgobject-2.0.so.0 libgobject-2.0.so
ln -s libgmodule-2.0.so.0 libgmodule-2.0.so
ln -s libgthread-2.0.so.0 libgthread-2.0.so
ln -s /lib/i386-linux-gnu/libglib-2.0.so.0 libglib-2.0.so
Then grab the glibconfig.h.diff patch and apply it as follows:
cd /usr/lib/x86_64-linux-gnu/glib-2.0/include
patch </tmp/glibconfig.h.diff
Note: Adjust the /tmp/glibconfig.h.diff path to match where you saved the glibconfig.h.diff patch.
Finally Wine’s configure script will still be complaining about missing HAL support. That’s because libhal1:i386 conflicts with libhal1:amd64 so that one cannot install the needed 32-bit libraries anyway. Debian developpers also declared that this will not be fixed. However HAL is deprecated on Wheezy anyway so this should not matter much. [/quote]
Mais je ne sais pas exactement si je dois faire tout ce qui est écrit etc …