From 225387c1fdec54fe9eb1b65cb3f77bdfaa662ffb Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Mon, 8 Feb 2010 11:32:30 -0500 Subject: [PATCH] build: Update project dependencies. --- README | 7 +++---- configure.ac | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/README b/README index a2d4a21..2967733 100644 --- a/README +++ b/README @@ -7,10 +7,9 @@ subject to frequent changes. Probably not a good idea for it to be used in external programs, yet. Requirements: -- A C99 compiler -- The tools themselves currently require some GNU library features, this should - change in the future. -- The lbximg tool requires libpng-1.2 +- A C99 compiler. +- The lbximg tool requires libpng-1.2 or later. +- The lbxgui tool requires GTK+-2.16 or later. The configure script will attempt to autodetect the presence of the above; if it fails to work for some reason, paths can be specified manually. diff --git a/configure.ac b/configure.ac index a53e22a..c03b931 100644 --- a/configure.ac +++ b/configure.ac @@ -28,7 +28,7 @@ AM_CONDITIONAL([BUILD_LBXIMG], [test x"$have_libpng" = x"yes"]) # A horrible combination of bugs makes this necessary for GTK+ detection. unset POSIXLY_CORRECT -AM_PATH_GTK_2_0([2.12.0], [have_gtk=yes], [have_gtk=no]) +AM_PATH_GTK_2_0([2.16.0], [have_gtk=yes], [have_gtk=no]) AM_CONDITIONAL([BUILD_LBXGUI], [test x"$have_gtk" = x"yes"]) AC_CONFIG_FILES([ -- 2.43.0