diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2023-04-02 16:04:13 +0200 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2023-04-02 16:04:13 +0200 |
| commit | b867488442d4974d226bda602aa10ea3100ba1a3 (patch) | |
| tree | 53027d9341ac686974ef03d6a290394411725557 /configure.ac | |
| parent | 64ac7b47b81549bce8911422209c81b77a9232ba (diff) | |
Fix "recipe for target '../../src/xdg-decoration-protocol.c' failed" (#704)
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index b2de8abd6..893d0aa16 100644 --- a/configure.ac +++ b/configure.ac @@ -1007,14 +1007,14 @@ AS_CASE([$host_os_gui], [cygwin* | mingw*], [ ]) ],[ missing="no" - AS_IF([$PKGCONFIG --exists wayland-client],[],[missing="yes"]) - AS_IF([$PKGCONFIG --exists wayland-protocols],[],[missing="yes"]) + AS_IF([$PKGCONFIG --exists 'wayland-client >= 1.18'],[],[missing="yes"]) + AS_IF([$PKGCONFIG --exists 'wayland-protocols >= 1.15'],[],[missing="yes"]) AS_IF([$PKGCONFIG --exists wayland-cursor],[],[missing="yes"]) AS_IF([$PKGCONFIG --exists xkbcommon],[],[missing="yes"]) AS_IF([$PKGCONFIG --exists dbus-1],[],[missing="yes"]) AS_IF([$PKGCONFIG --exists pangocairo],[],[missing="yes"]) AS_IF([test x$missing = xyes], [ - AC_MSG_WARN([These packages 'wayland-client wayland-protocols wayland-cursor xkbcommon dbus-1 pangocairo' are required to build FLTK for wayland.]) + AC_MSG_WARN([These packages 'wayland-client>=1.18 wayland-protocols>=1.15 wayland-cursor xkbcommon dbus-1 pangocairo' are required to build FLTK for wayland.]) AC_MSG_WARN([At least one of them is missing.]) AS_IF([test x$enable_wayland = xyes], [ AC_MSG_ERROR([Building for Wayland is not possible. Aborting.]) |
