git.asbjorn.biz
/
swftools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7e5cd63
)
fixed uncompressCmd file location for Win32.
author
kramm
<kramm>
Tue, 15 Jun 2004 20:28:17 +0000
(20:28 +0000)
committer
kramm
<kramm>
Tue, 15 Jun 2004 20:28:17 +0000
(20:28 +0000)
pdf2swf/xpdf/Stream.cc
patch
|
blob
|
history
diff --git
a/pdf2swf/xpdf/Stream.cc
b/pdf2swf/xpdf/Stream.cc
index
6bc1c6e
..
c47c5af
100644
(file)
--- a/
pdf2swf/xpdf/Stream.cc
+++ b/
pdf2swf/xpdf/Stream.cc
@@
-1044,7
+1044,11
@@
void LZWStream::reset() {
fclose(f);
//----- execute uncompress / gzip
+#ifdef WIN32
+ zCmd = new GString("c:\\swftools\\gzip.exe");
+#else
zCmd = new GString(uncompressCmd);
+#endif
zCmd->append(' ');
zCmd->append(zName);
#if defined(MACOS)