Description of problem: crash in console Version-Release number of selected component (if applicable): wings-1.2-1.fc14 How reproducible: in console , icons Additional info: the version from sourceforge works excellent !!! is only in the package fedora , rpm and srpm. in the console show this.... Trying OpenGL modes [{buffer_size,32},{depth_size,32},{stencil_size,8},{accum_size,16}] [{buffer_size,24},{depth_size,32},{stencil_size,8},{accum_size,16}] [{buffer_size,24},{depth_size,24},{stencil_size,8},{accum_size,16}] Retrying with multisampling disabled. Trying OpenGL modes [{buffer_size,32},{depth_size,32},{stencil_size,8},{accum_size,16}] =ERROR REPORT==== 15-Nov-2010::22:13:09 === Error in process <0.29.0> with exit value: {{wxe,unknown_port},[{wx,get_env,0},{wxe_util,call,2},{wings_init,'-display_actual_mode/0-lc$^0/1-0-',1},{wings_init,display_actual_mode,0},{wings_init,try_video_mode,2},{wings_init,try_video_modes_1,2},{wings_init... Fatal internal error - log written to /home/neo/wings_crash.dump my video driver is nvidia 260.19.12 video card gforce 7300 gs . any idea guys ?????
Created attachment 460710 [details] wings crash
I'll fix this issue.
wings-1.2-2.fc13 has been submitted as an update for Fedora 13. https://admin.fedoraproject.org/updates/wings-1.2-2.fc13
wings-1.2-2.fc14 has been submitted as an update for Fedora 14. https://admin.fedoraproject.org/updates/wings-1.2-2.fc14
wings-1.2-2.fc12 has been submitted as an update for Fedora 12. https://admin.fedoraproject.org/updates/wings-1.2-2.fc12
thanks Peter works the problem was in the glx depends?
(In reply to comment #6) > thanks Peter > works > > the problem was in the glx depends? Yes. Two packages, erlang-esdl and erlang-wx, exported several functions with the same module:name/arity scheme The erlang runtime system (erts module) loads them from wx instead of esdl which leads to immediate startup failure. So I prepend path to esdl binaries to the list of search paths (thus asking erts to look there first), and everything starts working again.
ok. I supposed from the the beginning that the error was glx o erlang-esdl thanks for answering and Greetings from Argentina !!!
wings-1.2-2.fc13 has been pushed to the Fedora 13 testing repository. If problems still persist, please make note of it in this bug report. If you want to test the update, you can install it with su -c 'yum --enablerepo=updates-testing update wings'. You can provide feedback for this update here: https://admin.fedoraproject.org/updates/wings-1.2-2.fc13
This package has changed ownership in the Fedora Package Database. Reassigning to the new owner of this component.
any problem .
wings-1.2-2.fc12 has been pushed to the Fedora 12 stable repository. If problems still persist, please make note of it in this bug report.
wings-1.2-2.fc13 has been pushed to the Fedora 13 stable repository. If problems still persist, please make note of it in this bug report.
wings-1.2-2.fc14 has been pushed to the Fedora 14 stable repository. If problems still persist, please make note of it in this bug report.
I have version wings-1.2-2.fc13, and fedora 13 with latest updates, but this does not work for me (does not start). It generates erl_crash.dump (I can send it if you wish), but I don't know if it is wings bug or erlang bug. I resolved this by downgrading to older version: wings-0.99.05-4.fc12.i686 which works fine.
Created attachment 465047 [details] Crash of wings-1.2-2.fc13
Can't confirm - I just removed all erlang-related packages and did a fresh install of wings, and it starts at least. Yes, erl_crash.dump would be helpful. Also, please, try starting it from console and post its logs here.
(In reply to comment #16) > Created attachment 465047 [details] > Crash of wings-1.2-2.fc13 Apparently, you're using Erlang R14A while Fedora 13 is shipped with R13B04. Please, try again with erlang from Fedora repository. If the problem still persists when I'll try to fix it. Otherwise it's not my problem.
I just found what could cause this issue. Just change the following line in /usr/bin/wings: exec erl -smp disable -noinput -pa /usr/lib/erlang/lib{64}/esdl-1.0.1/ebin -run wings_start start_halt ${1+"$@"} to this one: exec /usr/bin/erl -smp disable -noinput -pa /usr/lib{64}/erlang/lib/esdl-1.0.1/ebin -run wings_start start_halt ${1+"$@"} Where lib{64} is either lib or lib64 depending on your computer's architecture.
Thank you. I changed /usr/bin/wings according to your recommendation and now it works fine with Erlang R13B04. Thanks.