From bccc3571ff4aac6125a39af91905125f7c4a3f17 Mon Sep 17 00:00:00 2001
From: Janne Grunau <janne-libav@jannau.net>
Date: Mon, 24 Feb 2014 20:22:13 +0100
Subject: [PATCH 1/1] texi2pod: always declare the pod as UTF-8 encoded

---
 doc/texi2pod.pl | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/doc/texi2pod.pl b/doc/texi2pod.pl
index fb4f7be..609568e 100755
--- a/doc/texi2pod.pl
+++ b/doc/texi2pod.pl
@@ -324,6 +324,8 @@ $sects{FOOTNOTES} .= "=back\n" if exists $sects{FOOTNOTES};
 
 unshift @sects_sequence, "NAME";
 for $sect (@sects_sequence) {
+    # always use utf8
+    print "=encoding utf8\n";
     if(exists $sects{$sect}) {
         $head = $sect;
         $head =~ s/SEEALSO/SEE ALSO/;
-- 
1.9.0

