GNOME Bugzilla – Bug 723507
jsseek: Add missing HAVE_X check
Last modified: 2014-02-04 12:59:22 UTC
If I configure gst-plugins-base like so: ./configure --disable-x and I try to build it: make -j10 I will end up with an error message: jsseek.c:3000:72: error: ‘embed_xid’ undeclared (first use in this function) g_assert (embed_xid != 0); This is due to the variable embed_xid only being declared if HAVE_X is set. In this situation HAVE_X is not set but the reference to embed_xid is still there. The attached patch fixes this issue.
Created attachment 267905 [details] [review] Proposed patch fixing compilation error.
commit 0f8f852776ab10b13b9a81d9c38b538a8c236579 Author: Sebastian Rasmussen <sebras@hotmail.com> Date: Mon Feb 3 02:35:57 2014 +0100 jsseek: Add missing HAVE_X check Fixes https://bugzilla.gnome.org/show_bug.cgi?id=723507