Ubuntu14.04 compilar openjdk ERRO : FreeType versão 2.3.0 ou superior é necessária

0

Estou usando o Ubuntu14.04 para compilar o openjdk, quando eu executo o make sanity "encontro dois ERROS. Este problema foi consumido por vários dias, como posso corrigi-los?

ERROR: FreeType version  2.3.0  or higher is required. 
 make[2]: Entering directory '/home/lzw/test/openjdk/jdk/make/tools/freetypecheck'
/bin/mkdir -p /home/lzw/test/btbins
rm -f /home/lzw/test/btbins/freetype_versioncheck
make[2]: Leaving directory '/home/lzw/test/openjdk/jdk/make/tools/freetypecheck'
Failed to build freetypecheck.  

ERROR: You do not have access to valid Cups header files. 
       Please check your access to 
           /usr/include/cups/cups.h 
       and/or check your value of ALT_CUPS_HEADERS_PATH, 
       CUPS is frequently pre-installed on many systems, 
       or may be downloaded from http://www.cups.org 

Exiting because of the above error(s). 
    
por Jayven 12.06.2016 / 04:49

1 resposta

1

Embora eu esteja usando o Fedora, simplesmente instalar o cups-devel resolveu o problema. Tente instalar o equivalente no Ubuntu.

sudo apt-get install libcups2-dev
    
por Time Sheep 22.07.2017 / 21:53