Hello community, here is the log from the commit of package wpebackend-fdo for openSUSE:Factory checked in at 2020-03-16 10:15:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/wpebackend-fdo (Old) and /work/SRC/openSUSE:Factory/.wpebackend-fdo.new.3160 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "wpebackend-fdo" Mon Mar 16 10:15:50 2020 rev:5 rq:784410 version:1.4.2 Changes: -------- --- /work/SRC/openSUSE:Factory/wpebackend-fdo/wpebackend-fdo.changes 2020-02-26 15:14:32.318327525 +0100 +++ /work/SRC/openSUSE:Factory/.wpebackend-fdo.new.3160/wpebackend-fdo.changes 2020-03-16 10:16:14.191535870 +0100 @@ -1,0 +2,7 @@ +Thu Mar 12 12:44:56 UTC 2020 - Bjørn Lie <[email protected]> + +- Update to version 1.4.2: + + Fix build failures with EGL implementations which do not + provide an EGL/eglmesaext.h header. + +------------------------------------------------------------------- Old: ---- wpebackend-fdo-1.4.1.tar.xz New: ---- wpebackend-fdo-1.4.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ wpebackend-fdo.spec ++++++ --- /var/tmp/diff_new_pack.6WOZxv/_old 2020-03-16 10:16:15.971536595 +0100 +++ /var/tmp/diff_new_pack.6WOZxv/_new 2020-03-16 10:16:15.987536601 +0100 @@ -19,7 +19,7 @@ %define sover 1 Name: wpebackend-fdo -Version: 1.4.1 +Version: 1.4.2 Release: 0 Summary: A WPE backend designed for Linux desktop systems License: BSD-2-Clause ++++++ wpebackend-fdo-1.4.1.tar.xz -> wpebackend-fdo-1.4.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/wpebackend-fdo-1.4.1/CMakeLists.txt new/wpebackend-fdo-1.4.2/CMakeLists.txt --- old/wpebackend-fdo-1.4.1/CMakeLists.txt 2020-02-04 16:44:41.000000000 +0100 +++ new/wpebackend-fdo-1.4.2/CMakeLists.txt 2020-03-04 01:08:06.000000000 +0100 @@ -4,7 +4,7 @@ set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake") include(VersioningUtils) -SET_PROJECT_VERSION(1 4 1) +SET_PROJECT_VERSION(1 4 2) set(WPEBACKEND_FDO_API_VERSION 1.0) # Before making a release, the LT_VERSION string should be modified. @@ -14,7 +14,7 @@ # - If binary compatibility has been broken (eg removed or changed interfaces) # change to C+1:0:0 # - If the interface is the same as the previous version, change to C:R+1:A -CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(LIBWPEBACKEND_FDO 5 2 4) +CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(LIBWPEBACKEND_FDO 5 3 4) project(wpebackend-fdo VERSION "${PROJECT_VERSION}") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/wpebackend-fdo-1.4.1/NEWS new/wpebackend-fdo-1.4.2/NEWS --- old/wpebackend-fdo-1.4.1/NEWS 2020-02-04 16:44:41.000000000 +0100 +++ new/wpebackend-fdo-1.4.2/NEWS 2020-03-04 01:08:06.000000000 +0100 @@ -1,3 +1,10 @@ +===================== +1.4.2 - March 4, 2020 +===================== + +- Fix build failures with EGL implementations which do not provide an + EGL/eglmesaext.h header. + ======================== 1.4.1 - February 4, 2020 ======================== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/wpebackend-fdo-1.4.1/src/ws.cpp new/wpebackend-fdo-1.4.2/src/ws.cpp --- old/wpebackend-fdo-1.4.1/src/ws.cpp 2020-02-04 16:44:41.000000000 +0100 +++ new/wpebackend-fdo-1.4.2/src/ws.cpp 2020-03-04 01:08:06.000000000 +0100 @@ -27,7 +27,6 @@ #include <EGL/egl.h> #include <EGL/eglext.h> -#include <EGL/eglmesaext.h> #include "linux-dmabuf/linux-dmabuf.h" #include "bridge/wpe-bridge-server-protocol.h" #include <cassert> @@ -39,6 +38,7 @@ #ifndef EGL_WL_bind_wayland_display #define EGL_WAYLAND_BUFFER_WL 0x31D5 typedef EGLBoolean (EGLAPIENTRYP PFNEGLBINDWAYLANDDISPLAYWL) (EGLDisplay dpy, struct wl_display *display); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYWAYLANDBUFFERWL) (EGLDisplay dpy, struct wl_resource *buffer, EGLint attribute, EGLint *value); #endif #ifndef EGL_EXT_image_dma_buf_import_modifiers
