The following warnings occurred:
Warning [2] Undefined array key "lockoutexpiry" - Line: 94 - File: global.php PHP 8.1.31 (Linux)
File Line Function
/global.php 94 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined array key "lockoutexpiry" - Line: 573 - File: global.php PHP 8.1.31 (Linux)
File Line Function
/global.php 573 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined variable $can_access_moderationqueue - Line: 752 - File: global.php PHP 8.1.31 (Linux)
File Line Function
/global.php 752 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined array key "avatartype" - Line: 892 - File: global.php PHP 8.1.31 (Linux)
File Line Function
/global.php 892 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined array key "avatartype" - Line: 892 - File: global.php PHP 8.1.31 (Linux)
File Line Function
/global.php 892 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined variable $awaitingusers - Line: 34 - File: global.php(959) : eval()'d code PHP 8.1.31 (Linux)
File Line Function
/global.php(959) : eval()'d code 34 errorHandler->error
/global.php 959 eval
/printthread.php 16 require_once
Warning [2] Undefined array key "style" - Line: 1024 - File: global.php PHP 8.1.31 (Linux)
File Line Function
/global.php 1024 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined property: MyLanguage::$lang_select_default - Line: 5308 - File: inc/functions.php PHP 8.1.31 (Linux)
File Line Function
/inc/functions.php 5308 errorHandler->error
/global.php 1024 build_theme_select
/printthread.php 16 require_once
Warning [2] Undefined array key 1 - Line: 1474 - File: inc/functions.php PHP 8.1.31 (Linux)
File Line Function
/inc/functions.php 1474 errorHandler->error
/inc/functions.php 1429 fetch_forum_permissions
/printthread.php 76 forum_permissions
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 165 errorHandler->error



Forums
Cygwin compile work - Printable Version

+- Forums (https://www.vdrift.net/Forum)
+-- Forum: Project (https://www.vdrift.net/Forum/forumdisplay.php?fid=4)
+--- Forum: Development (https://www.vdrift.net/Forum/forumdisplay.php?fid=9)
+--- Thread: Cygwin compile work (/showthread.php?tid=835)



Cygwin compile work - bugsyv - 12-16-2007

Hi Joe,
This is really somewhat of a PM,but since I don't actually log in often and there's nothign in here I want to keep secret, I'll post to the forum.

So anyways, I saw you rolled back my "IS_WIN" changes in the scons files. Sorry about breaking the builds Sad. I don't have other systems to test on at the moment. However, I really would like to get this working in the future.

Is it possible that the build on other platforms broke because env['IS_WIN'] was only intialized on windows builds?

perhaps adding env['IS_WIN'] = False on the other platform intialization fixes will also fix things. If this works, then I can try to find a more elegant solution at a more leisurely pace.

Thanks.


- joevenzon - 12-16-2007

Quote:Sorry about breaking the builds

No worries.

Quote:Is it possible that the build on other platforms broke because env['IS_WIN'] was only intialized on windows builds?

Yep, that's what the error message was about.

Quote:perhaps adding env['IS_WIN'] = False on the other platform intialization fixes will also fix things.

It probably would have. I actually tried to fix it another way; replace all of the
Code:
if env['IS_WIN']:
with
Code:
if ( 'win32' == sys.platform or 'cygwin' == sys.platform ):

I tested this fix on my mingw/msys setup on windows and it compiles fine with the changes. Can you see if R1891 works for you?


- bugsyv - 12-17-2007

Yep. That works (except for actually building with cygwin which is a work in progress.. sort of) and is what I had originally. I just tried to come up with a method that requires less typing.. I tend to prefer those Smile. Anyways, no biggie.

Thanks.