Instalando o Giggle 0.7 nenhum arquivo make encontrado e instruções de instalação são 'make'

0

Estou tentando seguir as instruções para instalar giggle-0.7 . Do arquivo INSTALL :

The simplest way to compile this package is:

  1. cd' to the directory containing the package's source code and type ./configure' to configure the package for your system.

    Running 'configure' might take a while. While running, it prints some messages telling which features it is checking for.

  2. Type 'make' to compile the package.

Infelizmente, executar make torna óbvio que não há nenhum arquivo de criação no diretório do pacote raiz. Existem Makefile.am e Makefile.in , mas executar make Makefile.am e make Makefile.in também não faz nada.

A fonte é o arquivo tar da página do gnome.org .

Qualquer ajuda é apreciada.

Editar 1 SO

Estou instalando em CentOS 6.5 .

Editar 2 config.log

O primeiro sinal de erro em config.log :

configure:4058: checking for gcc option to accept ISO C99
configure:4207: gcc  -c -g -O2  conftest.c >&5 conftest.c:61: error:
expected ';', ',' or ')' before 'text' conftest.c: In function 'main':
conftest.c:115: error: expected '=', ',', ';', 'asm' or
'__attribute__' before 'newvar' conftest.c:115: error: 'newvar'
undeclared (first use in this function) conftest.c:115: error: (Each
undeclared identifier is reported only once conftest.c:115: error: for
each function it appears in.) conftest.c:125: error: 'for' loop
initial declarations are only allowed in C99 mode conftest.c:125:
note: use option -std=c99 or -std=gnu99 to compile your code
configure:4207: $? = 1 configure: failed program was: | /* confdefs.h
*/ | #define PACKAGE_NAME "Giggle" | #define PACKAGE_TARNAME "giggle" | #define PACKAGE_VERSION "0.7" | #define PACKAGE_STRING "Giggle 0.7"

Atualmente, estou tentando ver se consigo descobrir algo sobre isso. Por favor, deixe-me saber se devo postar mais (ou todos) de config.log .

    
por Gn13l 09.05.2014 / 19:07

2 respostas

1

O trabalho de configurar scripts é criar um Makefile. Se não houver Makefile depois de executar configure , o script configure :

  • Não "correu sem problemas", como você afirma
  • está muito mal escrito

Deve haver um arquivo de log do script de configuração chamado algo como config.log . Veja se você pode encontrar um erro que indique porque a configuração não foi concluída com êxito.

    
por 09.05.2014 / 19:19
0

Em vez de tentar depurar uma compilação com falha, decidi usar um produto diferente.

Eu estava procurando por uma git GUI que era nativa do Linux. Minha primeira escolha foi Giggle , e meu segundo foi gitg . Infelizmente, nenhum deles tinha yum repositórios para CentOS .

Eu fiz um yum search 'git' e achei o QGit. A instalação yum foi muito mais fácil e trabalhada. Eu planejo usar yum search como minha fonte primária com mais frequência no futuro.

    
por 10.05.2014 / 18:48