Freetype development files are not found on old versions

Questions about Wine on Linux
Locked
Sworddragon
Level 2
Level 2
Posts: 19
Joined: Thu Sep 27, 2012 5:32 pm

Freetype development files are not found on old versions

Post by Sworddragon »

I'm currently making a regression test and can successfully compile the master in the git tree but if I want to compile an older version (currently bisected at 1.4) I'm always getting this error:

Code: Select all

configure: error: FreeType 32-bit development files not found. Fonts will not be built.

I have also tried to built for 64 bit but I'm also getting this error (without the 32-bit information). On my current setup I have copied the git tree into a chrooted 32 bit Ubuntu 14.04 dev environment. Freetype is installed and I have also add it manually to the PKG_CONFIG_PATH:

Code: Select all

root@ubuntu:/wine-git# apt-cache policy libfreetype6-dev
libfreetype6-dev:
  Installed: 2.5.2-1ubuntu2
  Candidate: 2.5.2-1ubuntu2
  Version table:
 *** 2.5.2-1ubuntu2 0
        500 http://archive.ubuntu.com/ubuntu/ trusty/main i386 Packages
        100 /var/lib/dpkg/status
root@ubuntu:/wine-git# pkg-config --cflags --libs freetype2
-I/usr/include/freetype2  -lfreetype  

Using older versions like from Ubuntu 13.04 doesn't solve this problem. Has somebody an idea how I can solve this to continue the regression test?
Locked