diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-02-22 21:07:06 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-02-22 21:07:06 +0100 |
commit | 33c31d5abf122806a4a1b4353e5bdc1dbb9468c0 (patch) | |
tree | 59303a67c9f16e8074c2ce7382ae9e74a71623c8 /src/auto | |
parent | b2bd6a087d0598f6934bba825bed7535f42efc91 (diff) | |
download | vim-git-33c31d5abf122806a4a1b4353e5bdc1dbb9468c0.tar.gz |
patch 7.4.1390v7.4.1390
Problem: When building with GTK and glib-compile-resources cannot be found
building Vim fails. (Michael Gehring)
Solution: Make GLIB_COMPILE_RESOURCES empty instead of leaving it at "no".
(nuko8, closes #655)
Diffstat (limited to 'src/auto')
-rwxr-xr-x | src/auto/configure | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/auto/configure b/src/auto/configure index fea1f2cfa..69aec67c6 100755 --- a/src/auto/configure +++ b/src/auto/configure @@ -9052,7 +9052,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 31 ; 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. @@ -9099,15 +9099,16 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking glib-compile-resources" >&5 $as_echo_n "checking glib-compile-resources... " >&6; } if test "x$GLIB_COMPILE_RESOURCES" = xno ; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: cannot be found in PATH." >&5 + GLIB_COMPILE_RESOURCES="" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: cannot be found in PATH." >&5 $as_echo "cannot be found in PATH." >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: usable." >&5 $as_echo "usable." >&6; } - $as_echo "#define USE_GRESOURCE 1" >>confdefs.h + $as_echo "#define USE_GRESOURCE 1" >>confdefs.h - GRESOURCE_SRC="auto/gui_gtk_gresources.c" - GRESOURCE_OBJ="objects/gui_gtk_gresources.o" + GRESOURCE_SRC="auto/gui_gtk_gresources.c" + GRESOURCE_OBJ="objects/gui_gtk_gresources.o" fi else { $as_echo "$as_me:${as_lineno-$LINENO}: result: not usable." >&5 |