./configure não faz makefile

-1

Estou tentando instalar o GTKTerm

na minha distribuição 12.04 LTS. Eu li o arquivo INSTALL para instalar o software. Primeiro eu corro ./configure , nenhum erro é mostrado, mas não há o makefile, então quando eu executo make , eu recebo este erro make: *** No targets specified and no makefile found. Stop. Aqui a saída de ./configure

loading cache ./config.cache
checking for a BSD compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking whether make sets ${MAKE}... yes
checking for working aclocal-1.4... missing
checking for working autoconf... missing
checking for working automake-1.4... missing
checking for working autoheader... missing
checking for working makeinfo... missing
checking for strerror in -lcposix... no
checking for gcc... gcc
checking whether the C compiler (gcc  ) works... yes
checking whether the C compiler (gcc  ) is a cross-compiler... no
checking whether we are using GNU C... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for Cygwin environment... no
checking for mingw32 environment... no
checking host system type... x86_64-unknown-linux-gnu
checking build system type... x86_64-unknown-linux-gnu
checking for ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking for a sed that does not truncate output... /bin/sed
checking whether ln -s works... yes
checking how to recognise dependent libraries... pass_all
checking for object suffix... o
checking for executable suffix... no
checking command to parse /usr/bin/nm -B output... ok
checking for dlfcn.h... yes
checking for ranlib... ranlib
checking for strip... strip
checking for objdir... .libs
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.lo... yes
checking if gcc supports -fno-rtti -fno-exceptions... yes
checking whether the linker (/usr/bin/ld) supports shared libraries... yes
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking whether -lc should be explicitly linked in... no
creating libtool
checking for pkg-config... /usr/bin/pkg-config
checking for gtk+-2.0 gdk-2.0... 

Como posso resolver?

    
por linofex 19.12.2015 / 13:08

2 respostas

3

Você pode instalar facilmente o GTKTerm a partir do terminal usando sudo apt-get install gtkterm .

EDITAR

O que você está vendo é um problema de dependência (por exemplo, ver linhas como aclocal-1.4... missing ). Você precisa instalar todas as dependências que são necessárias antes para poder compilar o GTKTerm, para instalar estas dependências, use isto:

sudo apt-get build-dep gtkterm

Depois de ter feito isso, você poderá executar ./configure sem problemas.

    
por Tshilidzi Mudau 19.12.2015 / 13:13
-1

make recebe um makefile como entrada. Makefile geralmente é denominado makefile ou Makefile . O comando configue deve gerar um makefile, para que make possa ser executado por sua vez. Verifique se um makefile foi gerado em seu diretório de trabalho.

    
por orvi 19.12.2015 / 13:59