Como atualizar o Script do Ghost para a versão mais recente?

2

Eu tenho a versão 8.71 padrão do ghostscript instalada no meu Ubuntu Machine. Eu gostaria de atualizá-la para a versão mais recente

Eu baixei o arquivo do link Quando eu executo o comando make, recebo o erro

o -c ./obj/gsromfs1.c
./obj/echogs -w ./obj/ldt.tr -n - gcc  -o ./bin/gs
./obj/echogs -a ./obj/ldt.tr -n -s ./obj/gsromfs1.o ./obj/gs.o -s
cat ./obj/ld.tr >>./obj/ldt.tr
./obj/echogs -a ./obj/ldt.tr -s - -ldl -lm  -rdynamic -ldl  -lpthread -lm
if [ x != x ]; then LD_RUN_PATH=; export LD_RUN_PATH; fi; \
XCFLAGS= XINCLUDE= XLDFLAGS= XLIBDIRS= XLIBS= \
FEATURE_DEVS= DEVICE_DEVS= DEVICE_DEVS1= DEVICE_DEVS2= DEVICE_DEVS3= \
DEVICE_DEVS4= DEVICE_DEVS5= DEVICE_DEVS6= DEVICE_DEVS7= DEVICE_DEVS8= \
DEVICE_DEVS9= DEVICE_DEVS10= DEVICE_DEVS11= DEVICE_DEVS12= \
DEVICE_DEVS13= DEVICE_DEVS14= DEVICE_DEVS15= DEVICE_DEVS16= \
DEVICE_DEVS17= DEVICE_DEVS18= DEVICE_DEVS19= DEVICE_DEVS20= \
DEVICE_DEVS_EXTRA= \
/bin/sh <./obj/ldt.tr
/usr/bin/ld: cannot find -lXext
collect2: ld returned 1 exit status
make: *** [bin/gs] Error 1
    
por Rakesh 12.10.2011 / 16:57

1 resposta

1

O erro aqui é /usr/bin/ld: cannot find -lXext . Preste atenção em -lXext , isso significa que o vinculador tentou vincular os objetos à biblioteca Xext . Para que isso funcione, você precisa ter o pacote libxext-dev instalado.

Em geral, para resolver erros como cannot find -lNAME , instale o pacote libNAME-dev .

    
por Lekensteyn 12.10.2011 / 17:16