mirror of
https://github.com/transmission/transmission
synced 2025-02-02 12:32:54 +00:00
Fix GTK version check to work for 2.10.0 and newer.
This commit is contained in:
parent
21bd52f44e
commit
c4bd99cbf8
1 changed files with 1 additions and 1 deletions
2
configure
vendored
2
configure
vendored
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue