summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorwl <wl>2011-08-14 14:46:19 +0000
committerwl <wl>2011-08-14 14:46:19 +0000
commitdc4fb960059c10030ecf74bd98830bf09ceca553 (patch)
tree3cf930ad3f0c05981d305f767c4313246e875a15 /src
parent28e28e82c4ee479b264fea54f16b450fb423c567 (diff)
downloadgroff-dc4fb960059c10030ecf74bd98830bf09ceca553.tar.gz
[gropdf] More minor fixes.
* font/devpdf/Makefile.sub (MOSTLYCLEANADD): Don't attempt to install 'util/BuildFoundries', only used in 'make'. * src/devices/gropdf/gropdf.pl (<top>, GetType1): Make STDOUT and any font files read to be accessed in binary rather than text mode. Prevents errors when running on systems set up for UTF-8.
Diffstat (limited to 'src')
-rw-r--r--src/devices/gropdf/gropdf.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/devices/gropdf/gropdf.pl b/src/devices/gropdf/gropdf.pl
index e56aa262..31b92d0f 100644
--- a/src/devices/gropdf/gropdf.pl
+++ b/src/devices/gropdf/gropdf.pl
@@ -30,6 +30,7 @@ my %cfg;
$cfg{GROFF_VERSION}='@VERSION@';
$cfg{GROFF_FONT_PATH}='@GROFF_FONT_DIR@';
+binmode(STDOUT);
my @obj; # Array of PDF objects
my $objct=0; # Count of Objects
@@ -1995,6 +1996,7 @@ sub GetType1
OpenFile(\$f,$fontdir,"$file");
Msg(1,"Failed to open '$file'") if !defined($f);
+ binmode($f);
my $l=<$f>;