How to get the newest Irrlicht Version from SVN?

A forum to store posts deemed exceptionally wise and useful
hybrid
Admin
Posts: 14143
Joined: Wed Apr 19, 2006 9:20 pm
Location: Oldenburg(Oldb), Germany
Contact:

Post by hybrid »

Guess what: The 'ftp' in the URL is just a name. www, ftp, mail, and other such URLs often point to the very same machine! And if I name my next computer 'carrierpigeon.net.com' it would still be accessible electronically :wink:
madoc
Posts: 32
Joined: Fri Feb 11, 2005 10:43 am

SVN

Post by madoc »

are the bins in the SVN kept up to date or should I be rebuilding it
sRc
Posts: 431
Joined: Thu Jul 28, 2005 1:44 am
Location: Salt Lake City, Utah
Contact:

Post by sRc »

there arent any bins in the SVN
The Bard sRc

Blog | Twitter
fra
Posts: 14
Joined: Thu Apr 13, 2006 6:36 pm
Contact:

Post by fra »

hi all,
i've tried to download irrlicht svn but i've got an error when i type the line :

Code: Select all

svn co https://svn.sourceforge.net/svnroot/irrlicht irrlicht
the error is:
PROPFIND of '/svn/irricht irrlicht': could not resolve hostname 'svn.sourceforce.net': Le nom demandé a été trouvé dans la base de données, mais il ne dispose pas des données associées recherchées.
Do you know why this error occurs ? :roll:
KIC : frateamkic.info
(i'm frensh so scuse me for my english ...)
Saturn
Posts: 418
Joined: Mon Sep 25, 2006 5:58 pm

Post by Saturn »

Probably the DDOS attach on sourceforge currently taking place. Should be available again some time later. Just try it again.
fra
Posts: 14
Joined: Thu Apr 13, 2006 6:36 pm
Contact:

Post by fra »

you were right, i've succed to download it this morning :) .
thanks
KIC : frateamkic.info
(i'm frensh so scuse me for my english ...)
kompromis
Posts: 98
Joined: Mon Sep 11, 2006 2:36 pm
Location: sweden/stockholm

Post by kompromis »

can some one explain further i don't understand how i am suppose to make it work.
afecelis
Admin
Posts: 3075
Joined: Sun Feb 22, 2004 10:44 pm
Location: Colombia
Contact:

Post by afecelis »

the second post in this thread literally explains it step by step.
kompromis
Posts: 98
Joined: Mon Sep 11, 2006 2:36 pm
Location: sweden/stockholm

Post by kompromis »

afecelis wrote:the second post in this thread literally explains it step by step.
it doesn't work even if you do as it says
hybrid
Admin
Posts: 14143
Joined: Wed Apr 19, 2006 9:20 pm
Location: Oldenburg(Oldb), Germany
Contact:

Post by hybrid »

It would if you set up your system properly.
kompromis
Posts: 98
Joined: Mon Sep 11, 2006 2:36 pm
Location: sweden/stockholm

Post by kompromis »

should i compile somthing in the svn directory
hybrid
Admin
Posts: 14143
Joined: Wed Apr 19, 2006 9:20 pm
Location: Oldenburg(Oldb), Germany
Contact:

Post by hybrid »

Irrlicht's SVN directory or your tool chains'? You must have some executables for SVN. The command issued (svn co ...) will grab the sources and some media files which you can compile on your own.
Fado
Posts: 5
Joined: Sat Feb 10, 2007 11:10 pm

Post by Fado »

Irrlicht.net.dll and Visual C++ 2005:

The Steps posted from lug in this thread are not up-to-date, here is an update (some text from lug's post):

1. add "msvcmrt.lib" to "Linker->Input->Additional Dependencies" in your project property.

2. perform a search and replace on project for "[Paramflag::Out]" and replace with "[Out]". (14 places total)

3. in Irrlicht.NET.cpp change line 66 from
p.WindowId = reinterpret_cast<irr::s32>((void*)windowHandle);
to:
p.WindowId = (void*)windowHandle;

that's it :)
Obsidian
Posts: 17
Joined: Fri Feb 17, 2006 10:42 pm

Post by Obsidian »

When i try to use the new(er), SVN link (in linux), i'm always returned with this error...

'irrlicht' is already a working copy for a different URL


I literally just made a shell script to get it for me everytime i run it... so i'm not sure what the deal is. I've tried running the command apart from the shell script (and yes, as root), but i keep getting that error. Does anyone have any suggestions?
Legality is a horrible barometer for morality.
afecelis
Admin
Posts: 3075
Joined: Sun Feb 22, 2004 10:44 pm
Location: Colombia
Contact:

Post by afecelis »

Try erasing your Irrlicht folder (backup anything important you got, like projects and so) and do a clean checkout from scratch.
Post Reply