You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-misc/cowsay/files/cowsay-3.04-utf8.patch

17 lines
301 B

--- a/cowsay
+++ b/cowsay
@@ -12,6 +12,13 @@
use Getopt::Std;
use Cwd;
+if (${^UTF8LOCALE}) {
+ binmode STDIN, ':utf8';
+ binmode STDOUT, ':utf8';
+ require Encode;
+ eval { $_ = Encode::decode_utf8($_,1) } for @ARGV;
+}
+
$VERSION = "3.03";
$progname = basename($0);
$eyes = "oo";