tags 474847 + patch
thanks

Patch attached.


Regards,

-- 
Chris Lamb, UK                                       [EMAIL PROTECTED]
                                                            GPG: 0x634F9A20
diff -urNad nxcomp-3.1.0-6.orig/Alpha.cpp nxcomp-3.1.0-6/Alpha.cpp
--- nxcomp-3.1.0-6.orig/Alpha.cpp       2008-04-09 17:37:33.000000000 +0100
+++ nxcomp-3.1.0-6/Alpha.cpp    2008-04-09 18:57:06.000000000 +0100
@@ -18,6 +18,9 @@
 #include "Misc.h"
 #include "Unpack.h"
 
+#include <iostream>
+using std::cerr;
+
 #define PANIC
 #define WARNING
 #undef  TEST
diff -urNad nxcomp-3.1.0-6.orig/BlockCacheSet.cpp 
nxcomp-3.1.0-6/BlockCacheSet.cpp
--- nxcomp-3.1.0-6.orig/BlockCacheSet.cpp       2008-04-09 17:37:33.000000000 
+0100
+++ nxcomp-3.1.0-6/BlockCacheSet.cpp    2008-04-09 18:56:17.000000000 +0100
@@ -15,7 +15,7 @@
 /*                                                                        */
 /**************************************************************************/
 
-#include <iostream.h>
+#include <iostream>
 #include "BlockCacheSet.h"
 
 
diff -urNad nxcomp-3.1.0-6.orig/Colormap.cpp nxcomp-3.1.0-6/Colormap.cpp
--- nxcomp-3.1.0-6.orig/Colormap.cpp    2008-04-09 17:37:33.000000000 +0100
+++ nxcomp-3.1.0-6/Colormap.cpp 2008-04-09 18:57:24.000000000 +0100
@@ -18,6 +18,9 @@
 #include "Misc.h"
 #include "Unpack.h"
 
+#include <iostream>
+using std::cerr;
+
 #define PANIC
 #define WARNING
 #undef  TEST
diff -urNad nxcomp-3.1.0-6.orig/Loop.cpp nxcomp-3.1.0-6/Loop.cpp
--- nxcomp-3.1.0-6.orig/Loop.cpp        2008-04-09 17:37:33.000000000 +0100
+++ nxcomp-3.1.0-6/Loop.cpp     2008-04-09 17:37:43.000000000 +0100
@@ -29,7 +29,7 @@
 #include <dirent.h>
 #include <pwd.h>
 
-#include <fstream.h>
+#include <fstream>
 #include <fcntl.h>
 
 #include <sys/types.h>
diff -urNad nxcomp-3.1.0-6.orig/Message.cpp nxcomp-3.1.0-6/Message.cpp
--- nxcomp-3.1.0-6.orig/Message.cpp     2008-04-09 17:37:33.000000000 +0100
+++ nxcomp-3.1.0-6/Message.cpp  2008-04-09 18:54:00.000000000 +0100
@@ -16,7 +16,7 @@
 /**************************************************************************/
 
 #include <stdio.h>
-#include <fstream.h>
+#include <fstream>
 #include <unistd.h>
 #include <string.h>
 
diff -urNad nxcomp-3.1.0-6.orig/Misc.cpp nxcomp-3.1.0-6/Misc.cpp
--- nxcomp-3.1.0-6.orig/Misc.cpp        2008-04-09 17:37:33.000000000 +0100
+++ nxcomp-3.1.0-6/Misc.cpp     2008-04-09 18:44:50.000000000 +0100
@@ -15,7 +15,7 @@
 /*                                                                        */
 /**************************************************************************/
 
-#include <iostream.h>
+#include <iostream>
 #include <stdio.h>
 #include <ctype.h>
 #include <stdlib.h>
diff -urNad nxcomp-3.1.0-6.orig/Misc.h nxcomp-3.1.0-6/Misc.h
--- nxcomp-3.1.0-6.orig/Misc.h  2008-04-09 17:37:33.000000000 +0100
+++ nxcomp-3.1.0-6/Misc.h       2008-04-09 17:38:27.000000000 +0100
@@ -18,8 +18,8 @@
 #ifndef Misc_H
 #define Misc_H
 
-#include <iostream.h>
-#include <fstream.h>
+#include <iostream>
+#include <fstream>
 
 #include <errno.h>
 #include <string.h>
diff -urNad nxcomp-3.1.0-6.orig/Pipe.cpp nxcomp-3.1.0-6/Pipe.cpp
--- nxcomp-3.1.0-6.orig/Pipe.cpp        2008-04-09 17:37:33.000000000 +0100
+++ nxcomp-3.1.0-6/Pipe.cpp     2008-04-09 18:52:39.000000000 +0100
@@ -25,6 +25,9 @@
 #include "Misc.h"
 #include "Fork.h"
 
+#include <iostream>
+using std::cerr;
+
 //
 // Set the verbosity level.
 //
diff -urNad nxcomp-3.1.0-6.orig/Proxy.cpp nxcomp-3.1.0-6/Proxy.cpp
--- nxcomp-3.1.0-6.orig/Proxy.cpp       2008-04-09 17:37:33.000000000 +0100
+++ nxcomp-3.1.0-6/Proxy.cpp    2008-04-09 18:53:07.000000000 +0100
@@ -18,7 +18,7 @@
 #include <stdio.h>
 #include <unistd.h>
 #include <stdlib.h>
-#include <fstream.h>
+#include <fstream>
 #include <sys/types.h>
 #include <sys/stat.h>
 
diff -urNad nxcomp-3.1.0-6.orig/Rgb.cpp nxcomp-3.1.0-6/Rgb.cpp
--- nxcomp-3.1.0-6.orig/Rgb.cpp 2008-04-09 17:37:33.000000000 +0100
+++ nxcomp-3.1.0-6/Rgb.cpp      2008-04-09 18:57:37.000000000 +0100
@@ -18,6 +18,9 @@
 #include "Misc.h"
 #include "Rgb.h"
 
+#include <iostream>
+using std::cerr;
+
 #define PANIC
 #define WARNING
 #undef  TEST
diff -urNad nxcomp-3.1.0-6.orig/Rle.cpp nxcomp-3.1.0-6/Rle.cpp
--- nxcomp-3.1.0-6.orig/Rle.cpp 2008-04-09 17:37:33.000000000 +0100
+++ nxcomp-3.1.0-6/Rle.cpp      2008-04-09 18:57:55.000000000 +0100
@@ -18,6 +18,9 @@
 #include "Misc.h"
 #include "Rle.h"
 
+#include <iostream>
+using std::cerr;
+
 #define PANIC
 #define WARNING
 #undef  TEST
diff -urNad nxcomp-3.1.0-6.orig/Socket.cpp nxcomp-3.1.0-6/Socket.cpp
--- nxcomp-3.1.0-6.orig/Socket.cpp      2008-04-09 17:37:33.000000000 +0100
+++ nxcomp-3.1.0-6/Socket.cpp   2008-04-09 18:52:14.000000000 +0100
@@ -35,6 +35,9 @@
 #include <netdb.h>
 #include <fcntl.h>
 
+#include <iostream>
+using std::cerr;
+
 //
 // System specific defines.
 //
diff -urNad nxcomp-3.1.0-6.orig/Split.cpp nxcomp-3.1.0-6/Split.cpp
--- nxcomp-3.1.0-6.orig/Split.cpp       2008-04-09 17:37:33.000000000 +0100
+++ nxcomp-3.1.0-6/Split.cpp    2008-04-09 18:54:20.000000000 +0100
@@ -15,7 +15,7 @@
 /*                                                                        */
 /**************************************************************************/
 
-#include <fstream.h>
+#include <fstream>
 #include <unistd.h>
 #include <string.h>
 #include <sys/stat.h>
diff -urNad nxcomp-3.1.0-6.orig/Unpack.cpp nxcomp-3.1.0-6/Unpack.cpp
--- nxcomp-3.1.0-6.orig/Unpack.cpp      2008-04-09 17:37:33.000000000 +0100
+++ nxcomp-3.1.0-6/Unpack.cpp   2008-04-09 18:56:45.000000000 +0100
@@ -18,6 +18,9 @@
 #include "Misc.h"
 #include "Unpack.h"
 
+#include <iostream>
+using std::cerr;
+
 #define PANIC
 #define WARNING
 #undef  TEST

Attachment: signature.asc
Description: PGP signature

Reply via email to