Como compilar o Evolution a partir da fonte

0

Eu tenho tido problemas com o Evolution o cliente de e-mail. Eu tentei remover a reinstalação e quando eu corro do terminal há um erro "core dump".

Então, quero tentar compilar o pacote.

Eu sei o básico do uso do make, mas preciso de dependências e não estou chegando a lugar nenhum porque não consigo localizar os pacotes.

Esta é a saída de ./configure

    checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether UID '1000' is supported by ustar format... yes
checking whether GID '1000' is supported by ustar format... yes
checking how to create a ustar tar archive... gnutar
checking whether make supports nested variables... (cached) yes
checking whether to enable maintainer-specific portions of Makefiles... yes
checking for style of include used by make... GNU
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking dependency style of gcc... gcc3
checking for supported compiler flags...  -Wno-deprecated-declarations -Wno-missing-field-initializers -Wno-sign-compare -Wno-unused-parameter -Wdeclaration-after-statement -Werror-implicit-function-declaration -Wformat -Wformat-security -Winit-self -Wmissing-declarations -Wmissing-include-dirs -Wmissing-noreturn -Wnested-externs -Wpointer-arith -Wredundant-decls -Wundef -Wwrite-strings
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking whether gcc understands -c and -o together... (cached) yes
checking dependency style of gcc... (cached) gcc3
checking for inline... inline
checking how to run the C preprocessor... gcc -E
checking whether ln -s works... yes
checking whether make sets $(MAKE)... (cached) yes
checking for gawk... (cached) gawk
checking for perl... /usr/bin/perl
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.16... yes
Package gio-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing 'gio-2.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gio-2.0' found
configure: error: glib-compile-schemas not found.
    
por userDepth 16.11.2015 / 14:31

2 respostas

1

Você pode obter os requisitos de compilação para a versão do Ubuntu do Evolution com um simples:

sudo apt-get build-dep evolution

Se os requisitos foram alterados desde então, talvez seja necessário preencher manualmente algumas dependências.

    
por Oli 16.11.2015 / 14:40
0

Você tem:

% bl0ck_qu0te%

O pacote gio está incluído em libgio2.0-cil-dev . Instale-o executando:

sudo apt-get install libgio2.0-cil-dev
    
por hg8 16.11.2015 / 14:33