After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 770523 - Build failure: fatal error: gst/gl/gstglconfig.h: No such file or directory
Build failure: fatal error: gst/gl/gstglconfig.h: No such file or directory
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-bad
git master
Other Linux
: Normal blocker
: 1.9.2
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2016-08-28 19:17 UTC by minfrin
Modified: 2016-08-29 10:52 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description minfrin 2016-08-28 19:17:17 UTC
The current master of gst-omx fails to build on Raspbian as follows:

Making install in omx
make[1]: Entering directory '/home/pi/packages/gstreamer-master/gst-omx/omx'
  CC       libgstomx_la-gstomxvideodec.lo
In file included from /usr/local/include/gstreamer-1.0/gst/gl/gstgl_fwd.h:26:0,
                 from /usr/local/include/gstreamer-1.0/gst/gl/gl.h:29,
                 from gstomxvideodec.c:40:
/usr/local/include/gstreamer-1.0/gst/gl/gstglapi.h:24:32: fatal error: gst/gl/gstglconfig.h: No such file or directory
 #include <gst/gl/gstglconfig.h>
                                ^
compilation terminated.
Makefile:703: recipe for target 'libgstomx_la-gstomxvideodec.lo' failed
make[1]: *** [libgstomx_la-gstomxvideodec.lo] Error 1
make[1]: Leaving directory '/home/pi/packages/gstreamer-master/gst-omx/omx'
Makefile:505: recipe for target 'install-recursive' failed
make: *** [install-recursive] Error 1

The primary cause is that gst/gl/gstglconfig.h has moved from the include/ directory to the lib/gstreamer-1.0/include/ directory, and gst-omx does not appear to include this directory from within autoconf.
Comment 1 Tim-Philipp Müller 2016-08-28 19:29:35 UTC
That would be a problem in gst-plugins-bad in the gstreamer-gl-1.0 pkg-config file.
Comment 2 Matthew Waters (ystreet00) 2016-08-29 03:33:55 UTC
And that would be caused by https://cgit.freedesktop.org/gstreamer/gstreamer/commit/?id=714d8aa45118428461f6de8a4d3cafcd53ae884d
Comment 3 Matthew Waters (ystreet00) 2016-08-29 08:06:12 UTC
commit a730842ff1c3872bb367314cbdb8cfaaaffb5d94
Author: Matthew Waters <matthew@centricular.com>
Date:   Mon Aug 29 16:52:44 2016 +1000

    gl/pkgconfig: add the lib include dir to the list of includes
    
    714d8aa in core removed this include dir from it's pkgconfig file.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=770523
Comment 4 Tim-Philipp Müller 2016-08-29 10:52:51 UTC
Oh I see, I didn't see the connection between the core commit and gstglconfig.h :)