From 7556908ef3349942cde2cc0f8b2221f71a57e485 Mon Sep 17 00:00:00 2001 From: Koichiro IWAO Date: Mon, 31 Aug 2020 11:30:43 +0900 Subject: [PATCH 1/2] xorgxrdp v0.2.14 requires xrdp v0.9.14 because of neutrinolabs/xrdp#1653. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 9fc1bc04..51aa8f45 100644 --- a/configure.ac +++ b/configure.ac @@ -28,7 +28,7 @@ if test "x${enable_glamor}" = "xyes"; then fi if test "x$XRDP_CFLAGS" = "x"; then - PKG_CHECK_MODULES([XRDP], [xrdp >= 0.9.13]) + PKG_CHECK_MODULES([XRDP], [xrdp >= 0.9.14]) XRDP_CFLAGS=`pkg-config xrdp --cflags` fi From 6c909d179e774d708a4141f216f86982016696b5 Mon Sep 17 00:00:00 2001 From: Koichiro IWAO Date: Mon, 31 Aug 2020 11:32:53 +0900 Subject: [PATCH 2/2] bump version to v0.2.14 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 51aa8f45..7a0d5ce8 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ AC_PREREQ(2.65) # package version must be x.y.z -AC_INIT([xorgxrdp], [0.2.13], [xrdp-devel@googlegroups.com]) +AC_INIT([xorgxrdp], [0.2.14], [xrdp-devel@googlegroups.com]) package_version_major=$(echo ${PACKAGE_VERSION}|cut -d. -f1) package_version_minor=$(echo ${PACKAGE_VERSION}|cut -d. -f2) package_version_patchlevel=$(echo ${PACKAGE_VERSION}|cut -d. -f3)