vim: Update to latest patch level
[termux-packages] / packages / ctags / configure.ac.patch
1 diff -u -r ../ctags-ff448e2e2a08325c95f2e162ae50fb899392d99f/configure.ac ./configure.ac
2 --- ../ctags-ff448e2e2a08325c95f2e162ae50fb899392d99f/configure.ac 2016-11-28 06:04:11.000000000 -0500
3 +++ ./configure.ac 2016-11-28 17:57:01.052817678 -0500
4 @@ -7,7 +7,14 @@
5 # Process this file with autoconf to produce a configure script.
6
7 AC_PREREQ([2.59])
8 -AC_INIT([universal-ctags],[0.0.0])
9 +# Avoid identifying as
10 +# Universal Ctags 0.0.0, Copyright (C) 2015 Universal Ctags Team
11 +# Universal Ctags is derived from Exuberant Ctags.
12 +# Exuberant Ctags 5.8, Copyright (C) 1996-2009 Darren Hiebert
13 +# since that causes at least vim-easytags to identify the ctags
14 +# version as 0.0.0, see
15 +# https://github.com/xolox/vim-easytags/blob/master/autoload/xolox/easytags.vim
16 +AC_INIT([universal-ctags],[5.8])
17 AM_INIT_AUTOMAKE([foreign subdir-objects])
18 AM_SILENT_RULES([yes])
19 AC_CONFIG_HEADERS([config.h])
20 @@ -593,7 +600,7 @@
21 [have_libxml=yes
22 AC_DEFINE(HAVE_LIBXML)],
23 [have_libxml=no])
24 -AM_CONDITIONAL(HAVE_LIBXML, test "x$have_libxml" = xyes)
25 +AM_CONDITIONAL(HAVE_LIBXML, test "no" = xyes)
26
27 AH_TEMPLATE([HAVE_JANSSON],
28 [Define this value if jansson is available.])