Hello: I tried building it on Ubuntu Precise but ended up with a frustrating Vala version check up that kept on failing. I traced it to cmake demanding an exact version of vala compiler. Anyhow, Here is a patch I used to fix it.
>From cf43397d731e7138af361144cd223ee623d25382 Mon Sep 17 00:00:00 2001 From: Anmar Oueja <[email protected]> Date: Mon, 23 Jul 2012 19:26:10 -0400 Subject: [PATCH] fixed the valac exact version requirement --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 57865ed..1b32aa3 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -245,7 +245,7 @@ dbusservice/main.vala # Vala find_package(Vala REQUIRED) include(ValaVersion) -ensure_vala_version("0.17.2" EXACT) +ensure_vala_version("0.17.2" MINIMUM) include(ValaPrecompile) # Packages -- 1.7.9.5 _______________________________________________ Geary mailing list [email protected] http://lists.yorba.org/cgi-bin/mailman/listinfo/geary
