Hi there,

gcc 4.3 no longer provides iostream.h it was a compatibility header anyway. 
Following patch is needed now. Should be fine for all other gcc's.

Regards,
ismail

-- 
Never learn by your mistakes, if you do you may never dare to try again.
diff -r 92489cdc94d1 src/share/vm/adlc/filebuff.hpp
--- a/src/share/vm/adlc/filebuff.hpp	Tue Dec 04 16:28:18 2007 -0800
+++ b/src/share/vm/adlc/filebuff.hpp	Wed Dec 12 20:05:28 2007 +0200
@@ -27,7 +27,8 @@
 #if _MSC_VER >= 1300  // Visual C++ 7.0 or later
 #include <iostream>
 #else
-#include <iostream.h>
+#include <iostream>
+using namespace std;
 #endif
 
 // STRUCTURE FOR HANDLING INPUT AND OUTPUT FILES

Reply via email to