diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-09-09 20:27:02 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-09-09 20:27:02 +0200 |
commit | 5325b9bbae8a717510ef7248f3ce8b50281bd33f (patch) | |
tree | 73fd8884559ed579187ea0f6519a064795f4365f /src/auto | |
parent | 12969c04fe7bd27dc0cbf37709eb40a86d4a27f9 (diff) | |
download | vim-git-5325b9bbae8a717510ef7248f3ce8b50281bd33f.tar.gz |
patch 7.4.862v7.4.862
Problem: Still problems with pango_shape_full() not available.
Solution: Change AC_TRY_COMPILE to AC_TRY_LINK.
Diffstat (limited to 'src/auto')
-rwxr-xr-x | src/auto/configure | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/auto/configure b/src/auto/configure index 3bd5685f5..f2f34d90c 100755 --- a/src/auto/configure +++ b/src/auto/configure @@ -12199,7 +12199,7 @@ main () return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_link "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; }; $as_echo "#define HAVE_PANGO_SHAPE_FULL 1" >>confdefs.h @@ -12207,7 +12207,8 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" fi |