Fix GTK version check to work for 2.10.0 and newer.

This commit is contained in:
Josh Elsasser 2006-07-11 20:18:42 +00:00
parent 21bd52f44e
commit c4bd99cbf8
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -173,7 +173,7 @@ gtk_test()
verbose gtk_test
if runcmd pkg-config gtk+-2.0
then
if runcmd expr `pkg-config --modversion gtk+-2.0` '>=' 2.6.0
if runcmd pkg-config --exists gtk+-2.0 '>=' 2.6.0
then
cat > testconf.c << EOF
#include <gtk/gtk.h>