It's been a considerable time since I tried to compile geeqie, and there have obviously been significant organizational changes in the meantime. But it's good to see there is still interest in the project.

I assume that the git repository at geeqie.org is now the location of the latest sources.

Using the --enable-gps option I get compile errors. I don't see any other messages about this, so I assume it's either a problem with my system configuration, or more probably no-one else uses the maps.

Nevertheless, I have attached a patch that gives me an error-free compilation on my system.


Colin Clark..

diff --git a/src/renderer-clutter.c b/src/renderer-clutter.c
index c0f3b10..de91bc5 100644
--- a/src/renderer-clutter.c
+++ b/src/renderer-clutter.c
@@ -234,7 +234,19 @@ static void rc_prepare_post_process_lut(RendererClutter *rc)
 	g_object_unref(tmp_pixbuf);
 
 	DEBUG_0("%s clut upload start", get_exec_time());
-#if CLUTTER_CHECK_VERSION(1,10,0)
+#if COGL_VERSION_CHECK(1,18,2)
+	{
+	CoglContext *ctx = clutter_backend_get_cogl_context(clutter_get_default_backend ());
+
+	tex3d = cogl_texture_3d_new_from_data(ctx,
+					      CLUT_SIZE, CLUT_SIZE, CLUT_SIZE,
+					      COGL_PIXEL_FORMAT_RGB_888,
+					      CLUT_SIZE * 3,
+					      CLUT_SIZE * CLUT_SIZE * 3,
+					      clut,
+					      NULL);
+	}
+#elif COGL_VERSION_CHECK(1,10,4)
 	{
 	CoglContext *ctx = clutter_backend_get_cogl_context(clutter_get_default_backend ());
 
------------------------------------------------------------------------------
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=267308311&iu=/4140
_______________________________________________
Geeqie-devel mailing list
Geeqie-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geeqie-devel

Reply via email to