diff options
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | xbmc/windowing/egl/wayland/XBMCConnection.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 9c05933e03..294e30011e 100644 --- a/configure.in +++ b/configure.in @@ -975,7 +975,7 @@ if test "$use_wayland" = "yes" && test "$host_vendor" != "apple"; then AC_MSG_ERROR($missing_library)) PKG_CHECK_MODULES([WAYLAND_EGL], [wayland-egl], [INCLUDES="$INCLUDES $WAYLAND_EGL_CFLAGS"; - WAYLAND_EGL_LIBRARY_LINE=`LIBRARY=\`${PKG_CONFIG} --libs-only-l wayland-egl\`; echo ${LIBRARY:2}` + WAYLAND_EGL_LIBRARY_LINE=`LIBRARY=\`${PKG_CONFIG} --libs-only-l wayland-egl\`; echo ${LIBRARY:2:11}` XB_FIND_SONAME([WAYLAND_EGL_LIBRARY], ${WAYLAND_EGL_LIBRARY_LINE})], AC_MSG_ERROR($missing_library)) PKG_CHECK_MODULES([XKBCOMMON], [xkbcommon], diff --git a/xbmc/windowing/egl/wayland/XBMCConnection.h b/xbmc/windowing/egl/wayland/XBMCConnection.h index 45c0c29e4a..d488754ae9 100644 --- a/xbmc/windowing/egl/wayland/XBMCConnection.h +++ b/xbmc/windowing/egl/wayland/XBMCConnection.h @@ -31,7 +31,7 @@ struct wl_output; struct wl_shell; struct wl_seat; -typedef struct wl_egl_window * EGLNativeWindowType; +typedef struct wl_display * EGLNativeDisplayType; struct RESOLUTION_INFO; |