Description: <short summary of the patch>
 TODO: Put a short summary on the line above and replace this paragraph
 with a longer explanation of this change. Complete the meta-information
 with other relevant fields (see below for details). To make it easier, the
 information below has been extracted from the changelog. Adjust it or drop
 it.
 .
 barnowl (1.10-1) unstable; urgency=medium
 .
   * New Upstream version
   * Update standards version
     - Check that build is verbose  by default and support turse
   *  Fix building without . in @INC, Closes: #871726
   * Compat level 11
   * This version does not include facebook support.  If that's still
     useful to anyone, please file a bug and I will work on packaging the
     dependencies.
Author: Sam Hartman <hartmans@debian.org>
Bug-Debian: https://bugs.debian.org/871726

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: 2018-10-16

--- barnowl-1.10.orig/perl/modules/Makefile.in
+++ barnowl-1.10/perl/modules/Makefile.in
@@ -428,6 +428,7 @@ $(MODULES_MAKEFILE): %/Makefile: %/Makef
 	$(AM_V_GEN)test -d $* || mkdir $*
 	$(AM_V_at)test $(srcdir) = . || $(LN_S) $(abs_srcdir)/$*/Makefile.PL $*/Makefile.PL
 	$(AM_V_at)(cd $* && BARNOWL_SRCDIR='$(abs_srcdir)/$*' && export BARNOWL_SRCDIR && $(BARNOWL_PERL) Makefile.PL 'PERL=$(BARNOWL_PERL)')
+
 clean-local: $(MODULES_CLEAN)
 $(MODULES_CLEAN): clean_%:
 	(cd $* && { test ! -f Makefile || $(MAKE) realclean; })
--- barnowl-1.10.orig/runtests.sh
+++ barnowl-1.10/runtests.sh
@@ -1,3 +1,3 @@
 #!/bin/sh
 export G_SLICE=debug-blocks
-exec env HARNESS_PERL=./tester prove --failures "${srcdir:=$(dirname "$0")}/t/"
+exec env HARNESS_PERL=./tester prove -I. --failures "${srcdir:=$(dirname "$0")}/t/"
--- barnowl-1.10.orig/zcrypt.c
+++ barnowl-1.10/zcrypt.c
@@ -24,6 +24,11 @@
 #include <kerberosIV/des.h>
 #else
 #include <openssl/des.h>
+#define des_key_schedule DES_key_schedule
+#define des_cblock DES_cblock
+#define des_string_to_key DES_string_to_key
+#define des_key_sched(k,s) DES_key_sched(k,&(s))
+#define des_ecb_encrypt(in,out,s,f)  DES_ecb_encrypt(in,out,&s,f)
 #endif
 
 #include "filterproc.h"
