From: "Douglas Law" Newsgroups: comp.os.msdos.djgpp References: <5337D585DDD3D111996B0008C728F07DA42A3D AT pa00fsr01 DOT pa DOT atitech DOT com> Subject: Re: c++ & NT Lines: 38 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.00.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Message-ID: Date: Wed, 19 Jul 2000 22:02:44 -0700 NNTP-Posting-Host: 206.169.249.250 X-Complaints-To: news AT wenet DOT net X-Trace: news.wenet.net 964069433 206.169.249.250 (Wed, 19 Jul 2000 22:03:53 PDT) NNTP-Posting-Date: Wed, 19 Jul 2000 22:03:53 PDT X-Received-Date: Wed, 19 Jul 2000 22:29:10 PDT (newsfeed.avtel.net) To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com The problem, as I discovered a couple of months ago, is that Windows Nice Try restricts you to dos style 8+3 file names. You need to unzip using a 16bit package. check the FAQ for recommendations. Doug Law -----Original Message------ "Nick DiToro" wrote in message news:5337D585DDD3D111996B0008C728F07DA42A3D AT pa00fsr01 DOT pa DOT atitech DOT com... Hi, I just installed djgpp on my NT 4.0 system. I tried to compile the following code: #include int main (void) { cout <<"hello\n"; return 0; } The compiler gives me the following message: In file included from h2.cpp:1: lang/cxx/iostream.h:31: streambuf.h: No such file or directory (ENOENT) A dir of d:\djgpp\lang\cxx shows that the streambuf.h file is there, as is iostream.h. I used pkzip 2.5 to unzip. Long filenames were preserved. What up?? Thanks Nick