Wine 1.4: Not Installing

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
winepunk
Level 2
Level 2
Posts: 29
Joined: Sun Jan 22, 2012 12:40 am

Wine 1.4: Not Installing

Post by winepunk »

Error:

Code: Select all

checking for freetype-config... no
checking for freetype2-config... no
checking for -lfreetype... not found
configure: error: FreeType development files not found. Fonts will not be built.
Use the --without-freetype option if you really want this.
I tried using the option:

Code: Select all

./tools/wineinstall --without-freetype
Same error.
winepunk
Level 2
Level 2
Posts: 29
Joined: Sun Jan 22, 2012 12:40 am

Post by winepunk »

I tried the second install method: ./configure The option worked fine, but I got this output:

Code: Select all

configure: libxcursor development files not found, the Xcursor extension won't be supported.
configure: libXxf86vm development files not found, XFree86 Vidmode won't be supported.
configure: libxinerama development files not found, multi-monitor setups won't be supported.
configure: libxcomposite development files not found, Xcomposite won't be supported.
configure: OpenCL development files not found, OpenCL won't be supported.
configure: libdbus development files not found, no dynamic device support.
configure: libgnutls development files not found, no schannel support.
configure: libsane development files not found, scanners won't be supported.
configure: libv4l development files not found.
configure: libgphoto2 development files not found, digital cameras won't be supported.
configure: liblcms development files not found, Color Management won't be supported.
configure: libz development files not found, data compression won't be supported.
configure: gstreamer-0.10 base plugins development files not found, gstreamer support disabled
configure: OSS sound system found but too old (OSSv4 needed), OSS won't be supported.
configure: libcapi20 development files not found, ISDN won't be supported.
configure: libcups development files not found, CUPS won't be supported.
configure: fontconfig development files not found, fontconfig won't be supported.
configure: libgsm development files not found, gsm 06.10 codec won't be supported.
configure: libtiff development files not found, TIFF won't be supported.
configure: libmpg123 development files not found (or too old), mp3 codec won't be supported.
configure: libopenal development files not found (or too old), OpenAL won't be supported.
configure: libldap (OpenLDAP) development files not found, LDAP won't be supported.

configure: WARNING: prelink not found, base address of core dlls won't be set correctly.

configure: WARNING: OpenGL development headers not found.
OpenGL and Direct3D won't be supported.

configure: WARNING: libxml2 development files not found (or too old), XML won't be supported.

configure: WARNING: libxslt development files not found, xslt won't be supported.

configure: WARNING: OpenSSL development files not found, SSL won't be supported.

configure: WARNING: libjpeg development files not found, JPEG won't be supported.

configure: WARNING: libpng development files not found, PNG won't be supported.

configure: WARNING: No sound system was found. Windows applications will be silent.

configure: Finished.  Do 'make' to compile Wine.
User avatar
dimesio
Moderator
Moderator
Posts: 13367
Joined: Tue Mar 25, 2008 10:30 pm

Post by dimesio »

winepunk wrote:I tried the second install method: ./configure The option worked fine, but I got this output:
Install whatever configure complains about unless you're absolutely sure it's a feature you won't need (e.g., OSS support if you don't use OSS).
winepunk
Level 2
Level 2
Posts: 29
Joined: Sun Jan 22, 2012 12:40 am

Post by winepunk »

I went down the list one by one, but the packages it complains about are not listed by their exact names in the repository. This leaves me to guessing games on which package it assumes I should know, because many have have similar names. Where packages had similar names,I tried to include everything by apt-get package1* package2*, etc., etc. This brought a problem because many will conflict with each other. It's going to be too much trial and error on which packages are the right ones. Is there some dependency finder feature?
User avatar
dimesio
Moderator
Moderator
Posts: 13367
Joined: Tue Mar 25, 2008 10:30 pm

Post by dimesio »

winepunk wrote: Is there some dependency finder feature?
That is a package manager question; ask your distro.
aidfarh
Newbie
Newbie
Posts: 4
Joined: Fri Jan 06, 2012 5:11 am

Post by aidfarh »

winepunk wrote:I went down the list one by one, but the packages it complains about are not listed by their exact names in the repository. This leaves me to guessing games on which package it assumes I should know, because many have have similar names. Where packages had similar names,I tried to include everything by apt-get package1* package2*, etc., etc. This brought a problem because many will conflict with each other. It's going to be too much trial and error on which packages are the right ones. Is there some dependency finder feature?
Since you're using apt-get, you can just do

Code: Select all

apt-get build-dep wine1.3
winepunk
Level 2
Level 2
Posts: 29
Joined: Sun Jan 22, 2012 12:40 am

Post by winepunk »

Thanks. Ill give it another go with that. Im excited to see how this works.
Locked