Search the web
Sign In
New User? Sign Up
vtp-unix
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 145 - 174 of 821   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
145
Hi Ben and list !!! I've downloaded the release 030429 and installed in Linux. I had one compile issue that I was able to fix: Files vtlib/Building3D.cpp and...
rzanolli11
Offline Send Email
May 1, 2003
12:50 pm
146
... I just used -fpermissive. Thomas...
Thomas
Thomas@...
Send Email
May 1, 2003
10:40 pm
147
Thomas, Before I tried to fix that problem I read the e-mail's you and Ben exchanged. I thought -fpermissive was only for the libMini and I did not had that...
rzanolli11
Offline Send Email
May 2, 2003
12:31 pm
148
Ben, Thomas, Norman and list, Have you be able to run the new release of Enviro in Linux? If select Kealakekua bay scenario it crashes, but if I deselect the ...
rzanolli11
Offline Send Email
May 2, 2003
12:39 pm
149
... I get that as well but I also have to remove saguaro from the PlantModels directory before Enviro will work at all. I'm still using data from the March CD...
Thomas
Thomas@...
Send Email
May 3, 2003
1:51 am
150
... No, you didn't miss anything. At that point I had only used it for libMini. It was only later that I started using it in any situation where gcc3.2 changes...
Thomas
Thomas@...
Send Email
May 3, 2003
1:59 am
151
I've fixed all the gcc issues with the new Felkel code, and checked the fixes into CVS. Everything builds cleanly. However.. I am still getting having a...
Ben Discoe
bdiscoe
Offline Send Email
May 4, 2003
2:07 am
152
... I had a lot of relocation errors when I changed from SuSE 7.3 to RedHat 8.0 - can't get SuSE here ;^( Only solved by re-compiling a whole load of stuff. ...
Thomas
Thomas@...
Send Email
May 4, 2003
2:30 am
153
Hi. I've been incorporating changes necessary to use VTerrain on Mac OSX into the cvs version of the software. However, in a recent update, the function calls...
Pete Willemsen
willey197
Offline Send Email
May 4, 2003
2:57 am
154
Pete, These functions convert between wide character strings and normal strings. To the best of my knowledge, and from what documentation i have, they are part...
Ben Discoe
bdiscoe
Offline Send Email
May 4, 2003
3:09 am
155
Ben, I had the same relocation problem in another software I use and I found later that I had two libraries with the same name and my linker was pointing to...
rzanolli11
Offline Send Email
May 5, 2003
11:36 am
156
Hi all, I tracked the seg fault and it core dumps at the following: Scenario: kealakekua bay file:vtdata/StringArray.cpp line:872 bld->SetRoofType(ROOF_FLAT). ...
rzanolli11
Offline Send Email
May 5, 2003
12:45 pm
157
... It' really strange! To get Kealakekua Bay to work I have to turn off SkyDome as well as buildings. Thomas...
Thomas
Thomas@...
Send Email
May 5, 2003
3:15 pm
158
I only have to turn the buildings off, perhaps because my textures are not working. Do you have your road textures working? My roads are white without any...
rzanolli11
Offline Send Email
May 5, 2003
4:23 pm
159
... My roads were fine. Unfortunately, I rebooted (for unrelated reasons) and now Enviro segfaults as soon as the main window opens. I think I must have set an...
Thomas
Thomas@...
Send Email
May 6, 2003
4:53 am
160
Thanks to Roni's help, i was finally able to solve my .so problems. Turns out there were some old .so in /usr/lib which weren't showing up with 'locate' but...
Ben Discoe
bdiscoe
Offline Send Email
May 6, 2003
7:52 pm
161
I had it working perfectly last week - until I rebooted (can't remember why). Now I'm back to this sort of problem. I would't know what a dynamic cast was if...
Thomas
Thomas@...
Send Email
May 7, 2003
1:38 am
162
Ben and Thomas, I did not have this problem in my Enviro but I'm having other wird things happening in the code since I did the update. I'll try to take a look...
rzanolli11
Offline Send Email
May 7, 2003
3:43 pm
163
I don't know why it would be failing there, but i have put a check in so that it least it won't crash (there :) in the future. -Ben...
Ben Discoe
bdiscoe
Offline Send Email
May 7, 2003
9:50 pm
164
... cout is now redirected to the log file. That's the only way i could find to capture OSG's error/warning messages. To see the program's output, just look...
Ben Discoe
bdiscoe
Offline Send Email
May 7, 2003
10:04 pm
165
... use shell redirection i.e from the command line % Prog 2>&1 | tee myLog.txt This way you can see the messages as they appear and have them in a log file #...
Norman Vine
nhv
Offline Send Email
May 7, 2003
10:37 pm
166
Actually.. the intention is to route OSG's diagnostic messages to the same debug.txt file which captures wxWindows messages, GDAL messages, VTP messages, etc....
Ben Discoe
bdiscoe
Offline Send Email
May 7, 2003
10:56 pm
167
I managed to narrow down the problem. It segfaults when i downcast a pointer _and link my program with the GLU library_. If i remove the -lGLU from the build...
Ben Discoe
bdiscoe
Offline Send Email
May 7, 2003
11:58 pm
168
Solved it. First, a google search on "GLU dynamic_cast" was highly educational. Basically, there are problems if GLU is built with a compiler older than the ...
Ben Discoe
bdiscoe
Offline Send Email
May 8, 2003
1:25 am
169
I think I might have mentioned this before - maybe not ;^) When you go to gcc3.x you really need to get new versions or re-compile **everything** it's not just...
Thomas
Thomas@...
Send Email
May 8, 2003
1:54 am
170
... I had similar problems on my Irix machine when I was trying to compile OpenSceneGraph. It was linking in Mesa's GLU instead of the proper SGI GLU. You...
Eric Sokolowsky
esok127
Offline Send Email
May 8, 2003
12:59 pm
171
I notice that libpng is spitting out warning messages for two of the plant textures, "ohia1_v4_256.png" and "saguaro_8m_256.png". They do load and display...
Ben Discoe
bdiscoe
Offline Send Email
May 8, 2003
5:54 pm
172
Ben and Norman, Thanks for the update in the cout command. Are you having seg fault int the scenario: kealakekua bay if the building is selected ? Roni ... ...
rzanolli11
Offline Send Email
May 8, 2003
7:32 pm
173
I tested it, and indeed, there was a bug in support of very old VTST files, such as the one in Kealakekua. I've checked in a fix. -Ben...
Ben Discoe
bdiscoe
Offline Send Email
May 8, 2003
8:53 pm
174
Took be a while to track this down. I had been working on some other software that required 16 bit colour. I forgot to change back to 24 bit and whoosh... ...
Thomas
Thomas@...
Send Email
May 10, 2003
7:26 am
Messages 145 - 174 of 821   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help