diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-02 22:46:36 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-02 22:46:36 +0100 |
commit | d2e03f02c4a69d13bd90b5d084990bca95d0b0af (patch) | |
tree | c92b25dfd6a19899e706aa6beb9efaf2434303a9 /src/auto | |
parent | 027387f70c671f62e3e08e0bdd09ec05b0232735 (diff) | |
download | vim-git-d2e03f02c4a69d13bd90b5d084990bca95d0b0af.tar.gz |
patch 7.4.1038v7.4.1038
Problem: Still get a warning for a deprecated function with gdk-pixbuf
2.31.
Solution: Change minimum minor version from 32 to 31.
Diffstat (limited to 'src/auto')
-rwxr-xr-x | src/auto/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/auto/configure b/src/auto/configure index 38e1cb992..a0452795a 100755 --- a/src/auto/configure +++ b/src/auto/configure @@ -8919,7 +8919,7 @@ $as_echo_n "checking version of Gdk-Pixbuf... " >&6; } gdk_pixbuf_version_minor=`echo $gdk_pixbuf_version | \ sed -e 's/[0-9][0-9]*\.\([0-9][0-9]*\)\.[0-9][0-9]*/\1/'` if test "x$gdk_pixbuf_version_minor" != x -a \ - $gdk_pixbuf_version_minor -ge 32 ; then + $gdk_pixbuf_version_minor -ge 31 ; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: OK." >&5 $as_echo "OK." >&6; } # Extract the first word of "glib-compile-resources", so it can be a program name with args. |