Skip to content

Commit

Permalink
configure.ac: Explicitly require in RDA >= 0.0.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
sunweaver committed Jan 19, 2019
1 parent 9ec3756 commit 699565f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ X11_REQUIRED_VERSION=1.0
LIBMATE_MENU_REQUIRED_VERSION=1.21.0
MATE_DESKTOP_REQUIRED_VERSION=1.17.0
LIBMATEKBDUI_REQUIRED_VERSION=1.17.0
RDA_REQUIRED_VERSION=0.0.3

AC_CHECK_HEADERS(unistd.h)
AC_CHECK_HEADERS(crypt.h sys/select.h)
Expand Down Expand Up @@ -434,7 +435,7 @@ dnl ---------------------------------------------------------------------------
dnl - Check if Remote Desktop Awareness support is available
dnl ---------------------------------------------------------------------------

PKG_CHECK_MODULES(RDA, rda, have_rda=yes, have_rda=no)
PKG_CHECK_MODULES(RDA, rda >= $RDA_REQUIRED_VERSION, have_rda=yes, have_rda=no)
if test "x$have_rda" = "xyes"; then
AC_DEFINE(HAVE_RDA, 1, [Have the Remote Desktop Awareness library])
fi
Expand Down

0 comments on commit 699565f

Please sign in to comment.