Search found 11 matches

by zoschfrosch
Fri Dec 05, 2003 8:53 pm
Forum: Beginners Help
Topic: Help: Linux (Suse 9.0) Newbie !!!!!
Replies: 4
Views: 1077

I use Debian Linux with gcc. As graphical development tool, I use KDevelop an KDBG as Debugger. That works fine, except of creating the makefiles with autoconf and automake, which seems to be a little bit buggy.
by zoschfrosch
Sat Nov 29, 2003 8:56 pm
Forum: Beginners Help
Topic: more primitives!
Replies: 6
Views: 1711

Hi stampsm,

I'm very interested in your results. I want to create a space scene, this is very easy if you have sphere nodes with satellite fotos from earth or other planets as textures.
I would be happy if you could notify me when your code works :)
by zoschfrosch
Sat Nov 29, 2003 5:31 pm
Forum: Beginners Help
Topic: Problems with 2 examples on linux
Replies: 10
Views: 2519

I can tell you what I had to do to get it work with debian linux. I hava a nvidia tnt2 card, and unfortunately, there comes no driver for it with debian. So I had to use the original driver from nvidia, recompile the kernel etc. After that, I had to add some things in the XF86Config-File. Then ...
by zoschfrosch
Fri Nov 28, 2003 9:26 pm
Forum: Beginners Help
Topic: Problems with 2 examples on linux
Replies: 10
Views: 2519

"Warning: This driver is not available in Linux. Trying OpenGL."
I guess this only means that there is no DirectX available an that instead OpenGL is used. So it doesn't matter.
"Warning: Could not find texture in Q3 .bsp:textures/common/caulk"
If you look into the Quake-File (it is a zip file, you ...
by zoschfrosch
Fri Nov 28, 2003 2:42 pm
Forum: Beginners Help
Topic: Problems with 2 examples on linux
Replies: 10
Views: 2519

I had the same problem with 0.4. With 0.41, the textures are ok. But now there is another problem: It is very dark in the rooms - not as bright as on the screenshots. And in example 7, I hava some strange light effects. It looks as if a red sun would shine through the wall, and sometime there are ...
by zoschfrosch
Thu Nov 27, 2003 8:34 pm
Forum: Off-topic
Topic: Which is the Linux Distribution you prefer?
Replies: 14
Views: 4271

I use a Debian installation based on Knoppix 3.2. Last year, I started my first Linux installation with Suse 7.1, after that 8.0 and 8.1. Installation was very easy, but I ran into Problems when I made internet updates an later tried to install new programs from the disks.
Then I tried Debian based ...
by zoschfrosch
Tue Nov 25, 2003 8:26 pm
Forum: Beginners Help
Topic: Linux: Problem with Mouse Focus
Replies: 3
Views: 688

Hi Niko,

here is a possible solution:

//! returns if window is active. if not, nothing need to be drawn
bool CIrrDeviceLinux::isWindowActive()
{
Window focus_return;
int revert_to_return;
XGetInputFocus(display, &focus_return, &revert_to_return);
return (focus_return==window);
}

If I use ...
by zoschfrosch
Mon Nov 24, 2003 9:57 pm
Forum: Beginners Help
Topic: SuSE 9.0 + gcc with Irrlicht
Replies: 6
Views: 1264

The link in my last posting doesn't work. Here ist the correct one:
http://gcc.gnu.org/ml/gcc-help/2002-07/msg00186.html
by zoschfrosch
Mon Nov 24, 2003 9:49 pm
Forum: Beginners Help
Topic: SuSE 9.0 + gcc with Irrlicht
Replies: 6
Views: 1264

Let's take the last message. The "__gxx_personality_v0" symbol ist part of the libstdc++.so (see http://gcc.gnu.org/ml/gcc-help/2002-07/msg00186.html). Seems that your Compiler does not find this library in the LIBPATH. Try
"gcc -print-file-name=libstdc++.so"
on the command line to find out if the ...
by zoschfrosch
Mon Nov 24, 2003 1:12 pm
Forum: Beginners Help
Topic: SuSE 9.0 + gcc with Irrlicht
Replies: 6
Views: 1264

Would be interesting to see some concrete error messages. I had a problem with "undefined reference to" under Debian Linux. The solution was to add "-lpthread" in the "gcc..." line of the makefiles.
by zoschfrosch
Sun Nov 23, 2003 12:07 am
Forum: Beginners Help
Topic: Linux: Problem with Mouse Focus
Replies: 3
Views: 688

Linux: Problem with Mouse Focus

Hello,

I read the article in C't, which teased me very much. So I tested the examples with Linux and KDevelop.
When I start the examples, they have the complete control of the mouse movements, even if another program has the focus. This is extremely obstructive when I try to debug the examples ...