[Webkit-unassigned] [Bug 82580] New: configure fails during gstreamer detection

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Mar 29 01:02:11 PDT 2012


https://bugs.webkit.org/show_bug.cgi?id=82580

           Summary: configure fails during gstreamer detection
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Other
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: WebKit Gtk
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: landry at openbsd.org


Assigned to webkitgtk but that should be against 'build  system' ... webkitgtk 1.8.0 fails to pass configure on OpenBSD :

checking for GSTREAMER... no
configure: error: Package requirements (gstreamer-0.10 >= GSTREAMER_0_10_REQUIRED_VERSION
                     gstreamer-app-0.10
                     gstreamer-audio-0.10
                     gstreamer-fft-0.10
                     gstreamer-base-0.10
                     gstreamer-interfaces-0.10
                     gstreamer-pbutils-0.10
                     gstreamer-plugins-base-0.10 >= GSTREAMER_0_10_PLUGINS_BASE_REQUIRED_VERSION
                     gstreamer-video-0.10) were not met:

Package >= was not found in the pkg-config search path
Package GSTREAMER_0_10_REQUIRED_VERSION was not found in the pkg-config search path
Package GSTREAMER_0_10_PLUGINS_BASE_REQUIRED_VERSION was not found in the pkg-config search path

http://trac.webkit.org/changeset/106340 introduces a problem with variable assignation in configure :

+ case "$with_gstreamer" in
+-     0.10) GSTREAMER_REQUIRED_VERSION=GSTREAMER_0_10_REQUIRED_VERSION
+-           GSTREAMER_PLUGINS_BASE_REQUIRED_VERSION=GSTREAMER_0_10_PLUGINS_BASE_REQUIRED_VERSION
++     0.10) GSTREAMER_REQUIRED_VERSION=$GSTREAMER_0_10_REQUIRED_VERSION
++           GSTREAMER_PLUGINS_BASE_REQUIRED_VERSION=$GSTREAMER_0_10_PLUGINS_BASE_REQUIRED_VERSION

That change fixes the issue for me. If it's confirmed and not yet fixed/dupe, i'll make a proper patch against configure.ac fixing the 0.11 codepath too.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list