------------------------------------------------------------ revno: 425 committer: Steven Sheehy <[email protected]> branch nick: coreupgrade timestamp: Tue 2011-05-03 22:46:13 -0500 message: Require g++ 4.5 to compile core modified: Readme.txt SConstruct
-- lp:~linuxdcpp-team/linuxdcpp/coreupgrade https://code.launchpad.net/~linuxdcpp-team/linuxdcpp/coreupgrade Your team LinuxDC++ Team is subscribed to branch lp:~linuxdcpp-team/linuxdcpp/coreupgrade. To unsubscribe from this branch go to https://code.launchpad.net/~linuxdcpp-team/linuxdcpp/coreupgrade/+edit-subscription
=== modified file 'Readme.txt' --- Readme.txt 2011-02-08 05:56:14 +0000 +++ Readme.txt 2011-05-04 03:46:13 +0000 @@ -19,7 +19,7 @@ ------------- scons >= 0.96 pkg-config -g++ >= 4.1 +g++ >= 4.5 gtk+-2.0 >= 2.12 gthread-2.0 >= 2.4 libglade-2.0 >= 2.4 === modified file 'SConstruct' --- SConstruct 2011-03-28 05:34:08 +0000 +++ SConstruct 2011-05-04 03:46:13 +0000 @@ -185,8 +185,8 @@ if not 'install' in COMMAND_LINE_TARGETS: - if not conf.CheckCXXVersion(env['CXX'], 4, 1): - print 'Compiler version check failed. g++ 4.1 or later is needed' + if not conf.CheckCXXVersion(env['CXX'], 4, 5): + print 'Compiler version check failed. g++ 4.5 or later is needed' Exit(1) if not conf.CheckPKGConfig():
_______________________________________________ Mailing list: https://launchpad.net/~linuxdcpp-team Post to : [email protected] Unsubscribe : https://launchpad.net/~linuxdcpp-team More help : https://help.launchpad.net/ListHelp

