Odd gnome-terminal / Sawfish / CTRL-C problem

2003-01-28 Thread Aaron Mahler
Hello! So here's an odd one this is driving me absolutely batcrap: I ran into some issues with Metacity, so rejiggered things to use Sawfish 2.0 as distributed with RH 8. No biggie. To make a long story short, if I launch a gnome-terminal with ANY sawfish defined hotkey, I cannot use CT

Re: C++ problem ... More

2001-01-26 Thread Matthew Saltzman
>> conio.h >> cstring.h > >conio.h is a DOS-thing and doesn't exist under Unix - you will have to >rewrite those parts of your program. If I remember correctly, the >"curses" library provides similar functionality under Unix, however, >you'll hav to dig into the documentation to find out what to

Re: C++ problem ... More

2001-01-26 Thread Thomas Ribbrock
On Thu, Jan 25, 2001 at 03:35:51PM -0500, Jake McHenry wrote: > > conio.h > cstring.h conio.h is a DOS-thing and doesn't exist under Unix - you will have to rewrite those parts of your program. If I remember correctly, the "curses" library provides similar functionality under Unix, however, you'

Re: C++ problem ... More

2001-01-25 Thread linda hanigan
you find somethings Linda Hanigan - Original Message - From: "Jake McHenry" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 25, 2001 2:35 PM Subject: C++ problem ... More > > Ok, the command works, but now I'm getting errors

Re: C++ problem

2001-01-25 Thread Statux
> cpp file.cpp > cpp -lang-c++ file.cpp > gcc file.cpp > cc file.cpp cpp means something like C PreProcessor. It's called to parse the preprocessor directives, I believe. ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailm

Re: C++ problem ... More

2001-01-25 Thread Thornton Prime
On Thu, 25 Jan 2001, Jake McHenry wrote: > > Ok, the command works, but now I'm getting errors out the ying yang. Where can I > get more libraries? Are there any on the cd that don't get installed? Here's the > ones that I'm in need of... > > conio.h > cstring.h > > Thanks, > Jake > > > > ___

Re: C++ problem ... More

2001-01-25 Thread John Aldrich
On Thu, 25 Jan 2001, you wrote: > Ok, the command works, but now I'm getting errors out the ying yang. Where can I > get more libraries? Are there any on the cd that don't get installed? Here's the > ones that I'm in need of... > Try libstdc++-devel and libstd*-devel for one off the install C

C++ problem ... More

2001-01-25 Thread Jake McHenry
Ok, the command works, but now I'm getting errors out the ying yang. Where can I get more libraries? Are there any on the cd that don't get installed? Here's the ones that I'm in need of... conio.h cstring.h Thanks, Jake ___ Redhat-list mailing lis

Re: C++ problem

2001-01-25 Thread chuck
On 25 Jan 2001, Trond Eivind Glomsrød spewed into the bitstream: TEG>[EMAIL PROTECTED] writes: TEG> TEG>> This is not directly related to the poster's query but it's useful TEG>> ancillary info... weren't some of the changes made in RH7 that everybody TEG>> has bitched about... made expressly to

Re: C++ problem

2001-01-25 Thread Trond Eivind Glomsrød
[EMAIL PROTECTED] writes: > This is not directly related to the poster's query but it's useful > ancillary info... weren't some of the changes made in RH7 that everybody > has bitched about... made expressly to improve C++ support? Yes, the compiler in Red Hat Linux 7 is far more compliant to t

Re: C++ problem

2001-01-25 Thread John Aldrich
On Thu, 25 Jan 2001, you wrote: > > .c is the default extension, I think. Just use "cpp filename.c" > > cpp is the preprocessor, the C++ compiler is called c++/g++ > > .c is for C files - C++ files generally use .cpp or .C. > Ahh...Ok. Well, I'm not a programmer, so thanks for catching that.

Re: C++ problem

2001-01-25 Thread chuck
On 25 Jan 2001, Trond Eivind Glomsrød spewed into the bitstream: TEG>John Aldrich <[EMAIL PROTECTED]> writes: TEG> TEG>> On Thu, 25 Jan 2001, you wrote: TEG>> > Is there a c++ compiler in 6.2, and if there is, how do I get it to run? I have TEG>> > RH7 at home, but I haven't tried to upgrade yet.

Re: C++ problem

2001-01-25 Thread Trond Eivind Glomsrød
John Aldrich <[EMAIL PROTECTED]> writes: > On Thu, 25 Jan 2001, you wrote: > > Is there a c++ compiler in 6.2, and if there is, how do I get it to run? I have > > RH7 at home, but I haven't tried to upgrade yet. Is there one in 7? Also, what > > does the file extension have to be so the compiler

Re: C++ problem

2001-01-25 Thread John Aldrich
On Thu, 25 Jan 2001, you wrote: > Is there a c++ compiler in 6.2, and if there is, how do I get it to run? I have > RH7 at home, but I haven't tried to upgrade yet. Is there one in 7? Also, what > does the file extension have to be so the compiler knows it's c++. I know with > C, it is just file.c

Re: C++ problem

2001-01-25 Thread Nitebirdz
On Thu, 25 Jan 2001, Jake McHenry wrote: > > Is there a c++ compiler in 6.2, and if there is, how do I get it to run? Never did any C++ development myself, but I believe the compiler is g++. It seems to be installed on my 6.2 box. Give it a try and let us know if it works. -- --

Re: C++ problem

2001-01-25 Thread Brian Ashe
Hi Jake, Try g++ (man g++ for more info) >From the man page... DESCRIPTION The C and C++ compilers are integrated; g++ is a script to call gcc with options to recognize C++. gcc pro­ cesses input files through one or more of four stages: preprocessing, compilation, assembly

Re: C++ problem

2001-01-25 Thread Dave Reed
> Date: Thu, 25 Jan 2001 14:15:50 -0500 (EST) > From: Jake McHenry <[EMAIL PROTECTED]> > > Is there a c++ compiler in 6.2, and if there is, how do I get it to run? I have > RH7 at home, but I haven't tried to upgrade yet. Is there one in 7? Also, what > does the file extension have to be so the c

C++ problem

2001-01-25 Thread Jake McHenry
Is there a c++ compiler in 6.2, and if there is, how do I get it to run? I have RH7 at home, but I haven't tried to upgrade yet. Is there one in 7? Also, what does the file extension have to be so the compiler knows it's c++. I know with C, it is just file.c, is c++ file.cpp? That is what I have