fixed uncompressCmd file location for Win32.
authorkramm <kramm>
Tue, 15 Jun 2004 20:28:17 +0000 (20:28 +0000)
committerkramm <kramm>
Tue, 15 Jun 2004 20:28:17 +0000 (20:28 +0000)
pdf2swf/xpdf/Stream.cc

index 6bc1c6e..c47c5af 100644 (file)
@@ -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)