GNOME Bugzilla – Bug 629896
Error compiling raw1394 (without iec61883)
Last modified: 2010-10-04 20:36:08 UTC
"gsthdv1394src.h:74:3: error: expected specifier-qualifier-list before ‘iec61883_mpeg2_t" If no devel-Packages of iec61883 are installed, it nevertheless tries to build raw1394 anyway. In gsthdv1394src.h it includes iec61883.h sometimes... #ifdef HAVE_LIBIEC61883 #include <libiec61883/iec61883.h> #endif ...but needs it always... Line 74: iec61883_mpeg2_t iec61883mpeg2; ..therefore compile fails if it is not present If it really needs it, it simply should not be built without it.
commit 9481c8a1a00f8eda5654f110c84d36d67ca964d2 Author: Edward Hervey <bilboed@bilboed.com> Date: Mon Oct 4 22:31:32 2010 +0200 raw1394: Don't compile hdv1394src if libiec61883 isn't available Fixes #629896