summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAxel Beckert <abe@deuxchevaux.org>2017-06-22 03:50:51 +0200
committerAxel Beckert <abe@deuxchevaux.org>2017-06-22 03:53:17 +0200
commitaa55c6bb095dfb9f89c285437f6bfbb23e046cfa (patch)
tree26f8626306d33fd9511ce818723ec040822e725c
parent10794f2526312b3e6410c9fafbdf33a6ec7bf1c8 (diff)
downloadzsh-aa55c6bb095dfb9f89c285437f6bfbb23e046cfa.tar.gz
zsh-aa55c6bb095dfb9f89c285437f6bfbb23e046cfa.zip
Patch configure.ac to add support for yodl 4 to yodl version check
Closes: #865492
-rw-r--r--debian/patches/add_yodl_4_support_to_yodl_version_check.patch15
-rw-r--r--debian/patches/series1
2 files changed, 16 insertions, 0 deletions
diff --git a/debian/patches/add_yodl_4_support_to_yodl_version_check.patch b/debian/patches/add_yodl_4_support_to_yodl_version_check.patch
new file mode 100644
index 000000000..0a3beca7f
--- /dev/null
+++ b/debian/patches/add_yodl_4_support_to_yodl_version_check.patch
@@ -0,0 +1,15 @@
+Description: Add support for yodl 4 to yodl version check
+Author: Axel Beckert <abe@debian.org>
+Bugs-Debian: https://bugs.debian.org/865492
+Forwarded: https://www.zsh.org/cgi-bin/mla/redirect?WORKERNUMBER=41342
+
+--- a/configure.ac
++++ b/configure.ac
+@@ -628,6 +628,7 @@
+ case `yodl --version` in
+ *"version 2."*) YODL_OPTIONS='-k' ;;
+ *"version 3."*) YODL_OPTIONS='-k -L' ;;
++ *"version 4."*) YODL_OPTIONS='-k -L' ;;
+ esac
+ fi
+ AC_SUBST(YODL_OPTIONS)
diff --git a/debian/patches/series b/debian/patches/series
index 21838bb34..291a424cb 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -7,3 +7,4 @@ cherry-pick_8d4c9854_zero_new_space_allocated_in_prompt_buffer.patch
cherry-pick_48cadf48_be_more_careful_with_pattern_allocation_in_history_isearch.patch
cherry-pick_ebd7fdd9_fix_setting_of_parameter_values_in_compvalues.patch
cherry-pick_2e76fb80_turn_off_POSIX_IDENTIFIERS_option_in_completion.patch
+add_yodl_4_support_to_yodl_version_check.patch