diff options
author | Heinrich Wendel <lanius@gentoo.org> | 2003-07-16 14:04:14 +0000 |
---|---|---|
committer | Heinrich Wendel <lanius@gentoo.org> | 2003-07-16 14:04:14 +0000 |
commit | cde0e2d0f2f3a133a39142e157c5b26d6c064054 (patch) | |
tree | 1703629dea18a8a8ec544421cc3c8b78e9b8518b /app-text/ghostscript/files | |
parent | many bug fixes (diff) | |
download | gentoo-2-cde0e2d0f2f3a133a39142e157c5b26d6c064054.tar.gz gentoo-2-cde0e2d0f2f3a133a39142e157c5b26d6c064054.tar.bz2 gentoo-2-cde0e2d0f2f3a133a39142e157c5b26d6c064054.zip |
many bug fixes
Diffstat (limited to 'app-text/ghostscript/files')
-rw-r--r-- | app-text/ghostscript/files/digest-ghostscript-7.05.6-r3 | 3 | ||||
-rw-r--r-- | app-text/ghostscript/files/gs7.05.6-random.patch | 11 |
2 files changed, 14 insertions, 0 deletions
diff --git a/app-text/ghostscript/files/digest-ghostscript-7.05.6-r3 b/app-text/ghostscript/files/digest-ghostscript-7.05.6-r3 new file mode 100644 index 000000000000..cc0715bcb271 --- /dev/null +++ b/app-text/ghostscript/files/digest-ghostscript-7.05.6-r3 @@ -0,0 +1,3 @@ +MD5 991cbd7bafc6917a19abf9df3ecad58e espgs-7.05.6-source.tar.bz2 5410541 +MD5 1521fab85ca3e8ce3ce781d4970e6c79 gnu-gs-fonts-std-6.0.tar.gz 1881193 +MD5 33457d3f37de7ef03d2eea05a9e6aa4f gnu-gs-fonts-other-6.0.tar.gz 796086 diff --git a/app-text/ghostscript/files/gs7.05.6-random.patch b/app-text/ghostscript/files/gs7.05.6-random.patch new file mode 100644 index 000000000000..208d883ae9f1 --- /dev/null +++ b/app-text/ghostscript/files/gs7.05.6-random.patch @@ -0,0 +1,11 @@ +--- espgs-7.05.5/src/gdevpdf.c-orig 2003-05-24 14:19:35.000000000 -0400 ++++ espgs-7.05.5/src/gdevpdf.c 2003-05-24 14:19:57.000000000 -0400 +@@ -504,7 +504,7 @@ + * If we're on a system that provides /dev/random, that's the best + * source of good random bits. + */ +- FILE *rfile = fopen("/dev/random", "rb"); ++ FILE *rfile = fopen("/dev/urandom", "rb"); + + if (rfile && fread(&pdev->random_offset, sizeof(pdev->random_offset), + 1, rfile) == sizeof(pdev->random_offset) |