The following warnings occurred: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Warning [2] Undefined array key "lockoutexpiry" - Line: 94 - File: global.php PHP 8.1.31 (Linux)
|
svn to git - Printable Version +- Forums (https://www.vdrift.net/Forum) +-- Forum: Community (https://www.vdrift.net/Forum/forumdisplay.php?fid=3) +--- Forum: Help (https://www.vdrift.net/Forum/forumdisplay.php?fid=5) +--- Thread: svn to git (/showthread.php?tid=1519) |
svn to git - skankerror - 07-01-2011 Hi Before I used to svn update vdrift. Now can you tell me right command ? And can I deal with other branches ? Thanks. - NaN - 07-02-2011 Clone into vdrift directory: Code: git clone git://github.com/VDrift/vdrift.git vdrift For more stuff github has got some nice guides: http://help.github.com - skankerror - 07-02-2011 Thanks. - joevenzon - 07-03-2011 I made an attempt at updating the wiki with some instructions: http://vdrift.net/Forum/viewtopic.php?p=12941#12941 - skankerror - 07-06-2011 bullet is no more in source ? Must I install bullet package, or download it from old svn ? - Timo 6 - 07-06-2011 You can download bullet from http://bullet.googlecode.com/svn or grab it from the old svn (which only has the files needed). - antoniovazquez - 07-08-2011 skankerror Wrote:bullet is no more in source ? You can install bullet as a normal lib - skankerror - 07-11-2011 After grabbing it from old svn, here's scons output : Code: Package bullet was not found in the pkg-config search path. - NaN - 07-11-2011 You shouldn't have to compile bullet from source: Code: sudo apt-get install libbullet-dev - skankerror - 07-13-2011 Thanks now it works with libbullet-dev installed and bullet dir from old svn in vdrift dir. - joevenzon - 07-15-2011 I tried looking for bullet in the ubuntu natty package list and couldn't find it. It looks like it's in the "GetDeb games" PPA? Is that where you got it from or are you running a different ubuntu release? http://www.ubuntuupdates.org/packages/show/308334 - skankerror - 07-15-2011 I'm running maverick. I installed one from get-deb repo (it's not really a ppa). But you can find some packages in ppa. When searching I discovered a more recent package in cubit-team's ppa (2.78 ). To find package in ppa jungle Y-PPA-Manager is a good tool (he's in get-deb). - NaN - 07-15-2011 I've been surprised that they(buntu) don't have a official bullet package, am also using 2.77-1~getdeb1 version. - joevenzon - 07-17-2011 OK, so I installed the getdeb bullet package (2.77-1~getdeb1), but SCons is failing when checking for the btCollisionCommon.h header. Here's what my config.log looks like: Code: scons: Configure: Checking for C++ header file bullet/btBulletCollisionCommon.h... It looks to me like /usr/include/bullet needs to be added as an include path. Code: joe@joe02:~/code/VDrift$ pkg-config bullet --libs --cflags In src/SConscript we have a line: Code: local_env.ParseConfig('pkg-config bullet --libs --cflags') The conf.CheckCXXHeader(header) stuff happens in SConstruct with an environment that doesn't have the bullet paths pulled in yet. If I move the ParseConfig into SConstruct just before the check_headers stuff, everything works for me. I'm not sure how well that will work for other systems, in particular Windows msys builds, but it seems like the best way to build on windows these days is with code blocks anyway. I went ahead and pushed that change: https://github.com/VDrift/vdrift/commit/4e3ba9c6ac5368b88f89080b3e62e4cb2ca31d8f My first github commit! Let me know if that breaks stuff for anyone. |