Installing FreeType
Procedure
- Use PuTTY to log in to the server as the root user.
- Download the FreeType installation package.
wget https://sourceforge.net/projects/freetype/files/freetype2/2.10.0/freetype-2.10.0.tar.gz
- Decompress the FreeType installation package.
tar -zxvf freetype-2.10.0.tar.gz
- Go to the directory generated after the decompression.
cd freetype-2.10.0
- Perform the configuration.
./configure --prefix=/path/to/FREETYPE
- Perform the compilation and installation.
make -j64 make install
Parent topic: Configuring the Compilation Environment