From 19d2605ed6514d97d381a14ceae40e1619c4538f Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Tue, 22 Oct 2019 22:21:48 -0400 Subject: [PATCH] configure.ac.in: update library dependencies for gtk-3.x and xfce-4.14. We have four obsolete dependencies that need to be updated to bring xfce-hdaps into the future: * gtk+ * libxfce4ui * libxfce4util * libxfce4panel These are detected by the configure script which then does whatever it needs to do to ensure that they get linked in the right places. Instead of requesting gtk+-2.20.0 and the xfce-4.8.0 versions of the libraries, we now request gtk+-3.0 and the xfce-4.14.0versions. This should immediately break the build and give me a nice long list of tasks that need to be completed to finish the migration. --- configure.ac.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac.in b/configure.ac.in index abdcce1..5db7051 100644 --- a/configure.ac.in +++ b/configure.ac.in @@ -69,10 +69,10 @@ XDT_CHECK_LIBX11_REQUIRE() dnl *********************************** dnl *** Check for required packages *** dnl *********************************** -XDT_CHECK_PACKAGE([GTK], [gtk+-2.0], [2.20.0]) -XDT_CHECK_PACKAGE([LIBXFCE4UI], [libxfce4ui-1], [4.8.0]) -XDT_CHECK_PACKAGE([LIBXFCE4UTIL], [libxfce4util-1.0], [4.8.0]) -XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-1.0], [4.8.0]) +XDT_CHECK_PACKAGE([GTK], [gtk+-3.0], [3.20.0]) +XDT_CHECK_PACKAGE([LIBXFCE4UI], [libxfce4ui-2], [4.14.0]) +XDT_CHECK_PACKAGE([LIBXFCE4UTIL], [libxfce4util-1.0], [4.14.0]) +XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-2.0], [4.14.0]) dnl *********************************** dnl *** Check for debugging support *** -- 2.43.2