Re: Running C++ application withour recompiling across differentRedh at versions

2003-06-19 Thread Matthew Saltzman
On Thu, 19 Jun 2003, Arjan van de Ven wrote: > On Thu, 2003-06-19 at 07:20, [EMAIL PROTECTED] wrote: > > All, > > > >I have a C++ application. I want to run it > > In AS2.1/7.x/8.x/9.x without recompiling. > > > > Is there a way? > > > > As

Re: Running C++ application withour recompiling across differentRedh at versions

2003-06-19 Thread Arjan van de Ven
On Thu, 2003-06-19 at 07:20, [EMAIL PROTECTED] wrote: > All, > >I have a C++ application. I want to run it > In AS2.1/7.x/8.x/9.x without recompiling. > > Is there a way? > > As of my knowledge If you compile it in 8.x/9.x > It will not run in AS2.1/7.x. If yo

Running C++ application withour recompiling across differentRedh at versions

2003-06-18 Thread Muthu_T
All, I have a C++ application. I want to run it In AS2.1/7.x/8.x/9.x without recompiling. Is there a way? As of my knowledge If you compile it in 8.x/9.x It will not run in AS2.1/7.x. If you compile it in AS2.1/RH7.3, Then it will run in RH8.x/9.x only if you install the compatibility

Older c++ libs ?

2003-04-02 Thread Allan M. Stewart
A developer here is trying to find the correct libs (iostreams) to use to link with headers found in /usr/include/g++-3 . Can someone point me to the right libs or RPM for those libs? Thanks, Allan -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/

Re: C++

2003-02-24 Thread jdow
- Original Message - From: "Thomas Dodd" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Monday, February 24, 2003 8:20 AM Subject: C++ > I had a question for a C++ programmer. Thought I might find one her

Re: C++

2003-02-24 Thread Thomas Dodd
x27;m converting a verilog behaviorial module to C++ using CynLib and Cyn++ (www.ForteDS.com, an open source hardware modeling class library) and possible SystemC later. Cyn++ has some nice, predefined classes and macros to make the job easier. But after the conversion I noticed that it reference

Re: C++

2003-02-24 Thread Matthew Saltzman
On Mon, 24 Feb 2003, Thomas Dodd wrote: > I had a question for a C++ programmer. Thought I might find one here :) > > > I have 2 classes that need to reference each other. > > "headerA.h" class B; // Forward declaration of class B. > class A{ > public: &g

Re: C++

2003-02-24 Thread Tom Ball
On Mon, 2003-02-24 at 09:35, Thomas Dodd wrote: > I check the C++ books I had lying around and couldn't find forward > declaration. > > After the mention here, I was looking at some other code and saw it used. > Now, why didn't I see that in the code before? :( Becau

Re: C++

2003-02-24 Thread Thomas Dodd
Thanks to all who replied. That solved it. Michael Schwendt wrote: Since only pointers to A and B are involved, a forward declaration class A; in front of class B and That's the one that was causing me trouble. I check the C++ books I had lying around and couldn't fi

Re: C++

2003-02-24 Thread Damian Dowling
It has been a while since i was at C++, but try the following: Put both classes into the one h and cpp file, they are used together and should be together. Then predefine the classes as the top of the header file: class A; class B; Note you can only use the above for creating pointers to the

C++

2003-02-24 Thread Thomas Dodd
I had a question for a C++ programmer. Thought I might find one here :) I have 2 classes that need to reference each other. "headerA.h" class A{ public: int x; int y; B *left; B *right; } "headerB.h" class B{ public: int a; int b; A *parent; char foo(); } Give

Re: RedHat 8 Inconsistent C Headers

2003-02-05 Thread JD
Matthew Saltzman wrote: On Wed, 5 Feb 2003, JD wrote: Because of that, I cannot install vmware 3.2! Does someone out there already find a way to make vmware 'think' that RH8 running kernel and C headers are consistent? I really need to fix this or..., "downgrade" it [fo

Re: RedHat 8 Inconsistent C Headers

2003-02-05 Thread Matthew Saltzman
On Wed, 5 Feb 2003, JD wrote: > Because of that, I cannot install vmware 3.2! > Does someone out there already find a way to make vmware 'think' that > RH8 running kernel and C headers are consistent? > I really need to fix this or..., "downgrade" it [fortunate..

RedHat 8 Inconsistent C Headers

2003-02-05 Thread JD
Because of that, I cannot install vmware 3.2! Does someone out there already find a way to make vmware 'think' that RH8 running kernel and C headers are consistent? I really need to fix this or..., "downgrade" it [fortunate..., in Linux, a real "downgrade" doesn

Re: error: no acceptable cc in $PATH (plus other errors) Help! C++ compiler cannot create...

2002-11-29 Thread Michael Schwendt
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 29 Nov 2002 17:23:14 -0600, Shizznik McRuube wrote: > checking for g++... no Please show that you have the gcc-c++* package installed. Show us the output of: $ rpm -qa 'gcc*' You'll most likely also need the libstdc++* p

Re: error: no acceptable cc in $PATH (plus other errors) Help! C++compiler cannot create...

2002-11-29 Thread Shizznik McRuube
Alright I found some gcc rpms gcc-3.2-7.rpm and others but I'm still getting these messages. # ./configure loading cache ./config.cache checking for a BSD compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking whether make sets ${MAKE}..

configuration problem: C++ compiler cannot create executables.contunation of older thread

2002-11-29 Thread Shizznik McRuube
e can be found. on the cds that is. > > here is the output of the latest try on ./configure > > # ./configure > loading cache ./config.cache > checking for a BSD compatible install... /usr/bin/install -c > checking whether build environment is sane... yes > checking whether

Re: Camera tool with olympus c-2000 z

2002-11-14 Thread John Weber
tkam. It needs to be of the form "serial:/dev/ttyS0". I played with the command line args and it finally spit out that info. I didn't see it in the docs. So the config file ended up looking like this for me... [jweber@ceora jweber]$ cat .gphoto/settings gphoto2=model=Olympus

Re: Camera tool with olympus c-2000 z

2002-11-14 Thread Jack Bowling
On Thu, Nov 14, 2002 at 07:29:53AM -0700, John Weber wrote: > On Wed, 2002-11-13 at 23:07, Jack Bowling wrote: > > ** Reply to message from John Weber <[EMAIL PROTECTED]> on Wed, 13 Nov > > 2002 21:55:38 -0700 > > > > > > > Hi, > > > > > > I'm having trouble connecting to my camera which uses th

Re: Camera tool with olympus c-2000 z

2002-11-14 Thread John Weber
On Wed, 2002-11-13 at 23:07, Jack Bowling wrote: > ** Reply to message from John Weber <[EMAIL PROTECTED]> on Wed, 13 Nov > 2002 21:55:38 -0700 > > > > Hi, > > > > I'm having trouble connecting to my camera which uses the serial port. > > It was working fine under RH7.1 with gphoto through /dev/

Re: Camera tool with olympus c-2000 z

2002-11-13 Thread Jack Bowling
** Reply to message from John Weber <[EMAIL PROTECTED]> on Wed, 13 Nov 2002 21:55:38 -0700 > Hi, > > I'm having trouble connecting to my camera which uses the serial port. > It was working fine under RH7.1 with gphoto through /dev/ttyS0. The new > camera tool, gtkam, doesn't want to let me use t

Camera tool with olympus c-2000 z

2002-11-13 Thread John Weber
Hi, I'm having trouble connecting to my camera which uses the serial port. It was working fine under RH7.1 with gphoto through /dev/ttyS0. The new camera tool, gtkam, doesn't want to let me use the serial port. When I go to Camera->Add Camera I can choose my camera from the list, but then the Port